<?xml version="1.0"?>
<doc>
    <assembly>
        <name>Telerik.Web.UI</name>
    </assembly>
    <members>
        <member name="M:Telerik.Web.UI.FileFilter.GetFilter(System.String[],System.Boolean)">
            <summary>
            Accepts string arraing containing the allowed extensions and produces 
            a filter mask in the form "*.extension;*.extension..."
            </summary>
            <param name="extensions">Array containing allowed extensions</param>
            <param name="indentation">Specifies whether a white space should be put after extension declaration</param>
            <returns>Filter that can be directly passed to Silverrlight/Flash file dialog.</returns>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUpload.IFilterFormatter">
            <summary>
            An interface that provides API for a file filter object that could be passed
            to Silverlight/Flash file dialog.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUpload.FilterFormatter.Format(Telerik.Web.UI.FileFilterCollection)">
            <summary>
            Accepts a FileFilterCollection, updates its desctiption field, if the latter is not set,
            and returns string array containing the allowed extensions
            </summary>
            <param name="filters">FileFilterCollection</param>
            <returns>Array containing all allowed extensions</returns>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUpload.FilterFormatter.Serialize(Telerik.Web.UI.FileFilterCollection,System.Boolean)">
            <summary>
            Serializes a FileFilterCollection in a form that can be directly used with
            the Flash and Silverlight file dialogs.
            </summary>
            <param name="filters">FileFilterCollection</param>
            <param name="format">Boolean value that specifies whether the FileFilterCollection should be formatted first</param>
            <returns>Serialized representation of the FileFilterCollection passed as input.</returns>
        </member>
        <member name="T:Telerik.Web.UI.UploadedFile">
            <summary>
            	<para>Provides a way to access individual files that have been uploaded by a client
                via a <strong>RadUpload</strong> control.</para>
            </summary>
            <remarks>
            	<para>The <strong>UploadedFileCollection</strong> class provides access to all
                files uploaded from a client via single RadUpload instance as a file collection.
                <b>UploadedFile</b> provides properties and methods to get information on an
                individual file and to read and save the file. Files are uploaded in MIME
                multipart/form-data format and are <strong>NOT</strong> buffered in the server
                memory if the <strong>RadUploadModule</strong> is used.</para>
            	<para>The <strong>RadUpload</strong> control must be used to select and upload
                files from a client.</para>
            	<para>You can specify the maximum allowable upload file size in a machine.config or
                Web.config configuration file in the <b>maxRequestLength</b> attribute of the
                &lt;httpRuntime&gt; Element element.</para>
            </remarks>
            <example>
                Set the maximum allowable upload file size to 1000kB
                <code lang="VB">
            &lt;httpRuntime maxRequestLength="1000" /&gt;
                </code>
            	<code lang="CS">
            &lt;httpRuntime maxRequestLength="1000" /&gt;
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.GetName">
            <summary>
            Returns the name and extension of the file on the client's computer.
            </summary>
            <value>
            A string consisting of the characters after the last directory character in file name on the client's computer.
            </value>
            <remarks>
            The separator characters used to determine the start of the 
            file name are DirectorySeparatorChar and AltDirectorySeparatorChar.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.GetNameWithoutExtension">
            <summary>
            Returns the name of the file on the client's computer without the extension.
            </summary>
            <value>
            A string containing the name of the file on the client's computer without the extension.
            </value>
            <remarks>
            A string containing the string returned by GetFileName, minus the last period (.) and all characters following it.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.GetExtension">
            <summary>
            Returns the extension of the file on the client's computer.
            </summary>
            <value>
            A string containing the extension of the file including the ".". If the file name does not have 
            extension information, GetExtension returns string.Empty.
            </value>
            <remarks>
            The extension of the file name is obtained by searching it for a period (.), starting with the last character 
            and continuing toward the start. If a period is found before a DirectorySeparatorChar or AltDirectorySeparatorChar 
            character, the returned string contains the period and the characters after it; otherwise, string.Empty is returned.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.GetFieldValue(System.String)">
            <summary>
            Returns the value of a custom field.
            </summary>
            <value>
            A string containing the value of the custom field with name <strong>fieldName</strong>
            </value>
            <param name="fieldName">The name of the field wich value will be retrieved</param>
            <returns>Check the general help for more information and an example.</returns>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.GetIsFieldChecked(System.String)">
            <summary>
            Returns the checked state of a custom field.
            </summary>
            <value>
            A string containing the checked state of the custom field with name <strong>fieldName</strong>
            </value>
            <param name="fieldName">The name of the field wich checked state will be retrieved</param>
            <returns>Check the general help for more information and an example.</returns>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.SaveAs(System.String)">
            <summary>Saves the contents of an uploaded file.</summary>
            <remarks>
            	<para>The maximum allowed uploaded file size is 4MB by default. Maximum file size
                can be specified in the machine.config or Web.config configuration files in the
                maxRequestLength attribute of the &lt;httpRuntime&gt; element.</para>
            	<para>The ASP.NET process must have proper rights for writing on the folder where
                the files are saved.</para>
            </remarks>
            <example>
                The following example saves all the files uploaded by the client to a folder named
                "C:\TempFiles" on the Web server's local disk. 
                <code lang="VB">
            Dim Loop1 As Integer
            Dim TempFileName As String
            Dim MyFileCollection As UploadedFileCollection = RadUpload1.UploadedFiles
             
            For Loop1 = 0 To MyFileCollection.Count - 1
                ' Create a new file name.
                TempFileName = "C:\TempFiles\File_" &amp; CStr(Loop1)
                ' Save the file.
                MyFileCollection(Loop1).SaveAs(TempFileName)
            Next Loop1
                </code>
            	<code lang="CS">
            String TempFileName;
            UploadedFileCollection MyFileCollection = RadUpload1.UploadedFiles;
             
            for (int Loop1 = 0; Loop1 &lt; MyFileCollection.Count; Loop1++)
            {
                // Create a new file name.
                TempFileName = "C:\\TempFiles\\File_" + Loop1.ToString();
                // Save the file.
                MyFileCollection[Loop1].SaveAs(TempFileName);
            }
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.SaveAs(System.String,System.Boolean)">
            <summary>Saves the contents of an uploaded file.</summary>
            <remarks>
            	<para>The maximum allowed uploaded file size is 4MB by default. Maximum file size
                can be specified in the machine.config or Web.config configuration files in the
                maxRequestLength attribute of the &lt;httpRuntime&gt; element.</para>
            	<para>The ASP.NET process must have proper rights for writing on the folder where
                the files are saved.</para>
            </remarks>
            <example>
                The following example saves all the files uploaded by the client to a folder named
                "C:\TempFiles" on the Web server's local disk. The existing files are overwritten.
                <code lang="VB">
            Dim Loop1 As Integer
            Dim TempFileName As String
            Dim ShouldOverwrite As Boolean = True
            Dim MyFileCollection As UploadedFileCollection = RadUpload1.UploadedFiles
             
            For Loop1 = 0 To MyFileCollection.Count - 1
                ' Create a new file name.
                TempFileName = "C:\TempFiles\File_" &amp; CStr(Loop1)
                ' Save the file.
                MyFileCollection(Loop1).SaveAs(TempFileName, ShouldOverwrite)
            Next Loop1
                </code>
            	<code lang="CS">
            String TempFileName;
            bool ShouldOverwrite = true;
            UploadedFileCollection MyFileCollection = RadUpload1.UploadedFiles;
             
            for (int Loop1 = 0; Loop1 &lt; MyFileCollection.Count; Loop1++)
            {
                // Create a new file name.
                TempFileName = "C:\\TempFiles\\File_" + Loop1.ToString();
                // Save the file.
                MyFileCollection[Loop1].SaveAs(TempFileName, ShouldOverwrite);
            }
                </code>
            </example>
            <param name="fileName">The name of the saved file.</param>
            <param name="overwrite">
            	<strong>true</strong> to allow an existing file to be overwritten; otherwise, <strong>false</strong>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.FromHttpPostedFile(System.String,System.Web.HttpPostedFile)">
            <summary>
            Creates a UploadedFile instance from HttpPostedFile instance.
            </summary>
            <param name="inputFieldName">The value of the name attribute of the file input field
            	(equals the UniqueID of the FileUpload control)</param>
            <param name="file">The HttpPostedFile instance. Usually, you could get this from a 
            ASP:FileUpload control's PostedFile property</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.UploadedFile.FromHttpPostedFile(System.Web.HttpPostedFile)">
            <summary>
            Creates a UploadedFile instance from HttpPostedFile instance.
            </summary>
            <param name="file">The HttpPostedFile instance. Usually, you could get this from a 
            ASP:FileUpload control's PostedFile property</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.UploadedFile.ContentLength">
            <summary>Gets the size in bytes of an uploaded file.</summary>
            <value>The length of the file.</value>
            <example>
                This example validates the file size of an uploaded file. 
                <code lang="CS">
            bool isValid = true;
            if (file.ContentLength &gt; MaxFileSize)
            {
                isValid = false;
            }
                </code>
            	<code lang="VB">
            Dim isValid As Boolean = True;
            If file.ContentLength &gt; MaxFileSize Then
                isValid = False;
            End If
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.UploadedFile.ContentType">
            <summary>Gets the MIME content type of a file sent by a client.</summary>
            <value>The MIME content type of the uploaded file.</value>
            <example>
                The following example loops through all the files in the uploaded files collection
                and takes action when the MIME type of a file is <b>US-ASCII</b> . 
                <code lang="VB" title="1">
            Dim Loop1 As Integer
             Dim MyFileCollection As UploadedFileCollection = RadUpload1.UploadedFiles
             
             For Loop1 = 0 To MyFileCollection.Count - 1
                If MyFileCollection(Loop1).ContentType = "video/mpeg" Then
                   '...
                End If
             Next Loop1
                </code>
            	<code lang="CS" title="2">
            UploadedFileCollection MyFileCollection = RadUpload1.UploadedFiles;
             
             for (int Loop1 = 0; Loop1 &lt; MyFileCollection.Count; Loop1++)
             {
                if (MyFileCollection[Loop1].ContentType == "video/mpeg")
                {
                   //...
                }
             }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.UploadedFile.FileName">
            <summary>
            Gets the fully-qualified name of the file on the client's computer (for example
            "C:\MyFiles\Test.txt").
            </summary>
            <value>A string containing the fully-qualified name of the file on the client's computer.</value>
            <example>
                The following example assigns the name of an uploaded file (the first file in the
                file collection) to a string variable. 
                <code lang="CS">
            UploadedFile MyUploadedFile = RadUpload1.UploadedFiles[0];
            string MyFileName = MyUploadedFile.FileName;
                </code>
            	<code lang="VB">
            Dim MyUploadedFile As UploadedFile = RadUpload1.UploadedFiles(0)
            Dim MyFileName As String = MyUploadedFile.FileName
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.UploadedFile.InputStream">
            <summary>
            Gets a Stream object which points to the uploaded file to prepare for reading the contents of the file.
            </summary>
            <value>
            A Stream pointing to the file.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.AsyncPostedFile.NormalizeWith(System.Collections.Specialized.NameValueCollection)">
            <summary>
            We use this method to normalize the output of the UploadedFile properties
            among the different modules.
            </summary>
            <param name="formValues">The file that was uploaded</param>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUploadConfiguration">
            <summary>
            Default implementation of <see cref="T:Telerik.Web.UI.IAsyncUploadConfiguration">IAsyncUploadConfiguration</see>.
            Base class that can be used to pass custom information from the page to the handler. Inherit this class and 
            add a relevant data.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IAsyncUploadConfiguration">
            <summary>
            An interface that describes basic async upload configuration.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUploadHandler.Process(Telerik.Web.UI.UploadedFile,System.Web.HttpContext,Telerik.Web.UI.IAsyncUploadConfiguration,System.String)">
            <summary>
            Processes the current the HTTP Web Request and saves the file to the temp folder. This method can be overridden.
            </summary>
            <param name="file">The uploaded file</param>
            <param name="context">The HttpContext for the current request.</param>
            <param name="configuration">Object that implements IAsyncUploadConfiguration
            It can be a custom object sent from the page. </param>
            <param name="tempFileName">The temporary name of the uploaded file.</param>
            <returns>Object that implements the<see cref="T:Telerik.Web.UI.IAsyncUploadResult">IAsyncUploadResult</see>interface. 
            It can be a custom defined object and may contain additional information which can then be accessed on the server.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUploadHandler.SaveToTempFolder(Telerik.Web.UI.UploadedFile,Telerik.Web.UI.IAsyncUploadConfiguration,System.Web.HttpContext,System.String)">
            <summary>
            Saves the uploaded file to the temporary folder.
            </summary>
            <param name="file">The uploaded file</param>
            <param name="config">The async upload config</param>
            <param name="context">The HttpContext for the current request.</param>
            <param name="tempFileName">The temporary name of the uploaded fiel.</param>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUploadHandler.CreateDefaultUploadResult``1(Telerik.Web.UI.UploadedFile)">
            <summary>
            Creates an object of type T (that implements <see cref="T:Telerik.Web.UI.IAsyncUploadResult">IAsyncUploadResult</see>)
            and populates all properties specified in the interface. The user is then free to populate any additional properties.
            </summary>
            <typeparam name="T">Type that implements <see cref="T:Telerik.Web.UI.IAsyncUploadResult">IAsyncUploadResult</see></typeparam>
            <param name="file">Contains information about the uploaded file</param>
            <returns>An object of type T populated with all properties specified in IAsyncUploadResult</returns>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUploadHandler.IsFileSizeValid(System.Int32,System.Int32)">
            <summary>
            Indicates whether the currently processed file has valid size. The size is checked against the maximum size specified in the 
            async upload configuration.
            </summary>
            <param name="contentLength">The content length of the current request.</param>
            <param name="maxFileSize">The maximum allowed size for the file.</param>
            <returns>Boolean value indicating whether the file has valid size or not.</returns>
        </member>
        <member name="M:Telerik.Web.UI.AsyncUploadHandler.DecryptFolder(System.String)">
            <summary>
            Decrypts a string encrypted with LOS serializer.
            </summary>
            <returns>The decrypted string</returns>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUploadResult">
            <summary>
            Default implementation of <see cref="T:Telerik.Web.UI.IAsyncUploadResult">IAsyncUploadResult</see>.
            Inherit this class and add additional fields to be returned from the upload handler.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IAsyncUploadResult">
            <summary>
            An interface that describes the basic information about an uploaded file.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUpload.ITempFileAppender">
            <summary>
            An interface that describes file appender object. Appender object
            can append byte stream to already existing file and return the length
            of the bytes appended.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUpload.IRequestData">
            <summary>
            An interface that describes the basic information about the request.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUpload.IResponseWriter">
            <summary>
            An interface that describes the basic information about the request.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadWebControl">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.IControlResolver">
            <summary>
            Describes an object that can be used to resolve references to a control by its ID
            </summary>
        </member>
        <member name="M:Telerik.Web.IControlResolver.ResolveControl(System.String)">
            <summary>
            Resolves a reference to a control by its ID
            </summary>
            <param name="controlId"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.OnPreRender(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.ControlPreRender">
            <summary>
            Code moved into this method from OnPreRender to make sure it executed when the framework skips OnPreRender() for some reason
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RegisterScriptControl">
            <summary>
            Registers the control with the ScriptManager
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RegisterCssReferences">
            <summary>
            Registers the CSS references
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Loads the client state data
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.SaveClientState">
            <summary>
            Saves the client state data
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderClientStateField(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.Render(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderScriptsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderDescriptorsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.DescribeProperty``1(Telerik.Web.UI.IScriptDescriptor,System.String,``0,``0)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.DescribeIDReferenceProperty(Telerik.Web.UI.IScriptDescriptor,System.String,System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.DescribeEvent(Telerik.Web.UI.IScriptDescriptor,System.String,System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.GetEmbeddedSkinNames">
            <summary>
            Returns the names of all embedded skins. Used by Telerik.Web.Examples.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Executed when post data is loaded from the request
            </summary>
            <param name="postDataKey"></param>
            <param name="postCollection"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadWebControl.RaisePostDataChangedEvent">
            <summary>
            Executed when post data changes should invoke a chagned event
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.RegisterWithScriptManager">
            <summary>
            Gets or sets the value, indicating whether to register with the ScriptManager control on the page.
            </summary>
            <remarks>
            <para>
            If RegisterWithScriptManager is set to false the control can be rendered on the page using Web Services or normal callback requests/page methods.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.RuntimeSkin">
            <summary>
            Gets the real skin name for the control user interface. If Skin is not set, returns
            "Default", otherwise returns Skin.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.ClientStateFieldID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.CssClassFormatString">
            <summary>
            The CssClass property will now be used instead of the former Skin 
            and will be modified in AddAttributesToRender()
            </summary>
            <example>
            protected override string CssClassFormatString
            {
            	get
            	{
            		return "RadDock RadDock_{0} rdWTitle rdWFooter";
            	}
            }
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.ClientIDMode">
            <summary>
            This property is overridden in order to support controls which implement INamingContainer.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWebControl.ScriptManager">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadAsyncUpload.CreateDefaultUploadConfiguration``1">
            <summary>
            Creates an object of type T (that implements <see cref="T:Telerik.Web.UI.IAsyncUploadConfiguration">IAsyncUploadConfiguration</see>)
            and populates all properties specified in the interface from this RadAsyncUpload instance.
            The user is then free to populate any additional properties.
            </summary>
            <typeparam name="T">Type that implements <see cref="T:Telerik.Web.UI.IAsyncUploadConfiguration">IAsyncUploadConfiguration</see></typeparam>
            <returns>An object of type T populated with all properties specified in IAsyncUploadConfiguration</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.FileFilters">
            <summary>
            Gets the collection of <see cref="T:Telerik.Web.UI.FileFilter">FileFilters</see> objects
            to be applied to the OpenFileDialog
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.FileFilterCollection">FileFilterCollection</see>
            containing <see cref="T:Telerik.Web.UI.FileFilter">FileFilters</see> object that define
            the filters applied to the OpenFileDialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.AutoAddFileInputs">
            <summary>
            Specifies whether a new File Input should be automatically added upon selecting a file to upload.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.AllowedFileExtensions">
            <summary>
            Gets or sets the allowed file extensions for uploading.
            </summary>
            <remarks>
            	<para>Set this property to empty array of strings in order to prevent the file
                extension checking.</para>
            </remarks>
            <value>
            The default value is empty string array. In order to check for multiple file
            extensions you should set an array of strings containing the allowed file extensions
            for uploading.
            </value>
            <example>
                This example demonstrates how to set multiple allowed file extensions in a
                RadUpload control. 
                <code lang="VB">
            Dim allowedFileExtensions As String() = New String(2) {"zip", "doc", "config"}
            RadAsyuncUpload1.AllowedFileExtensions = allowedFileExtensions
            </code>
            	<code lang="CS">
            string[] allowedFileExtensions = new string[3] {"zip", "doc", "config"};
            RadAsyncUpload1.AllowedFileExtensions = allowedFileExtensions;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.MaxFileSize">MaxFileSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.AllowedMimeTypes">AllowedMimeTypes Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.AllowedMimeTypes">
            <summary>
            Gets or sets the allowed MIME types for uploading.
            </summary>
            <remarks>
            	<para>Set this property to string.Empty in order to prevent the
                mime type checking.</para>
            </remarks>
            <value>
            The default value is empty string array. In order to check for multiple mime
            types you should set an array of strings containing the allowed MIME types 
            for uploading.
            </value>
            <example>
                This example demostrates how to set multiple allowed MIME types to a RadAsyncUpload
                control. 
                <code lang="VB">
            ' For example you can Get these from your web.config file
            Dim commaSeparatedMimeTypes As String = "application/octet-stream,application/msword,video/mpeg"
             
            Dim allowedMimeTypes As String() = commaSeparatedMimeTypes.Split(",")
            RadAsyncUpload1.AllowedMimeTypes = allowedMimeTypes
            </code>
            	<code lang="CS">
            // For example you can get these from your web.config file
            string commaSeparatedMimeTypes = "application/octet-stream,application/msword,video/mpeg";
             
            string[] allowedMimeTypes = commaSeparatedMimeTypes.Split(',');
            RadAsyncUpload1.AllowedMimeTypes = allowedMimeTypes;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.MaxFileSize">MaxFileSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.AllowedFileExtensions">AllowedFileExtensions Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.EnableInlineProgress">
            <summary>
            Specifies whether RadAsyncUpload displays an inline progress next to each file being uploaded.
            </summary>
            <value>
            The default value is <strong>false</strong>
            </value>
            <remarks>
            The InlineProgress is turned on by default. If you have RadProgressArea on the page both the area and the inline progress
            are going to be shown. In order to suppres the InlineProgress, consider setting the property to false.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFilesUploaded">
            <summary>
            Gets or sets the name of the client-side function which will be executed after all 
            selected files have been uploaded
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientAdding">
            <summary>
            Gets or sets the name of the client-side function which will be executed before 
            a new fileinput is added to a RadAsyncUpload instance. This event can be cancelled.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientAdded">
            <summary>
            Gets or sets the name of the client-side function which will be executed after 
            a new fileinput is added to a RadAsyncUpload instance. The event cannot be cancelled
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.MultipleFileSelection">
            <summary>
            Specifies whether RadAsyncUpload allows selecting multiple files in the File Selection dialog.
            </summary>
            <value>The default value is <strong>Disabled</strong></value>
            <remarks>
            Setting the MultipleFileSelection property to <strong>Automatic</strong> means that RadAsyncUpload will check the client's
            browser capabilities and if there is support for multiple file selection he will enable it. If there is no such support, the
            selection type would be still single.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.UploadedFilesRendering">
            <summary>
            Specify where the uploaded files should be positioned, below or above the current file input.
            </summary>
            <value>The default value is <strong>AboveFileInput</strong></value>
            <remarks>
            Setting the UploadedFilesRendering property to <strong>BelowFileInput</strong> means that RadAsyncUpload will render the uploaded files below the 
            current file input. Otherwise the uploaded files will be rendered above the file input.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.UploadConfiguration">
            <summary>
            Sets upload configuration that has additional information. The generic object can be obtained using the CreateUploadConfiguration &lt;T&gt; method, 
            where T is custom class that implements IAsyncUploadConfiguration. The custom class can contain any sort of custom data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler from which the image will be served
            </summary>
            <exception cref="T:System.ArgumentException"></exception>
        </member>
        <member name="E:Telerik.Web.UI.RadAsyncUpload.FileUploaded">
            <summary>
            Occurs once for each uploaded file.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.TemporaryFolder">
            <summary>
            Path to a folder where RadAsyncUpload should save files temporarily until a postback occurs.
            </summary>
            <remarks>
            The ASP.NET process needs to have Write permissions for the specified folder. Also note that in Medium Trust scenarios
            this should point to a subfolder of the Application Path.
            Defaults to App_Data\RadUploadTemp subfolder of the Application Path.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.TemporaryFileExpiration">
            <summary>
            Sets how long temporary files should be kept before automatically deleting them.
            The property accepts TimeSpan values. More information regarding the TimeSpan structure can 
            be found here - http://www.dotnetperls.com/timespan
            </summary>
            <remarks>
            Note that when a postback occurs temporary files are either saved as permanent or removed.
            The expiration time is used only in cases when files are uploaded asynchronously, but a subsequent postback does not occur.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileUploading">
            <summary>
            Gets or sets the name of the client-side function which will be executed when a file upload starts.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientFileUploading(sender, eventArgs)<br/>
                {<br/>
            		var fileName = eventArgs.get_fileName();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadAsyncUpload ID="RadAsyncUpload1"<br/>
                runat="server"<br/>
            		<strong>OnClientFileUploading="onClientFileUploading"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadAsyncUpload&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientFileUploading</strong> client-side event
                is called whenever a file upload commences.
                </para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the asyc upload client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_fileName()</strong>, the name of the file being uploaded.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileUploaded">
            <summary>
            Gets or sets the name of the client-side function which will be executed when a file upload finishes successfully.k
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientFileUploaded(sender, eventArgs)<br/>
                {<br/>
            		var fileName = eventArgs.get_fileName();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadAsyncUpload ID="RadAsyncUpload1"<br/>
                runat="server"<br/>
            		<strong>OnClientFileUploaded="onClientFileUploaded"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadAsyncUpload&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientFileUploaded</strong> client-side event
                is called when file is uploaded successfully.
                </para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the asyc upload client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_fileName()</strong>, the name of the file that was uploaded.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFilesSelected">
            <summary>
            Gets or sets the name of the client-side function which will be executed after files have been selected.
            This event can be cancelled.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileSelected">
            <summary>
            Gets or sets the name of the client-side function which will be executed after a file has been selected.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileUploadFailed">
            <summary>
            Gets or sets the name of the client-side function which will be executed when a file upload ends unsuccessfully.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientFileUploadFailed(sender, eventArgs)<br/>
                {<br/>
            		var message = eventArgs.get_message();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadAsyncUpload ID="RadAsyncUpload1"<br/>
                runat="server"<br/>
            		<strong>OnClientFileUploadFailed="onClientFileUploadFailed"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadAsyncUpload&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientFileUploadFailed</strong> client-side event
                is called when a file fails to upload. One can set the set_handled property to false which
                will forse the async upload to throw an exception the error message to the JavaScript console. 
                </para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the async upload client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_message()</strong>, the error message containing the reason for the failed upload</item>
            				<item><strong>get_handled()</strong>, gets a value indicating whether the developer will handle the error</item>
                		    <item><strong>set_handled()</strong>, sets a value indicating whether the developer will handle the error</item>	
                        </list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientValidationFailed">
            <summary>
            Gets or sets the name of the client-side function which will be executed if the selected file has invalid extension
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientValidationFailed(sender, eventArgs)<br/>
                {<br/>
            		var fileName = eventArgs.get_fileName();<br/>
            		var input = eventArgs.get_fileInputField();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadAsyncUpload ID="RadAsyncUpload1"<br/>
                runat="server"<br/>
            		<strong>OnClientValidationFailed="onClientValidationFailed"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadAsyncUpload&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>onClientValidationFailed</strong> client-side event
                is called when a file has invalid extension or its size exceeds the maximum allowed size
                </para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the async upload client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_fileName()</strong>, the name of the file that failed to upload.</item>
            				<item><strong>get_fileInputField()</strong>, the file input field dom element.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileUploadRemoving">
            <summary>
            Gets or sets the name of the client-side function which will be executed before a file input is deleted
            from a RadAsyncUpload instance. The event can be cancelled.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to implement a confirmation dialog when removing a
                file input item. 
                <code lang="CS">
            &lt;radU:RadAsyncUpload OnClientFileUploadDeleting="myOnClientDeleting" ... /&gt;
            &lt;script language="javascript"&gt;
            function myOnClientDeleting()
            {
                 args.set_cancel(prompt("Are you sure?"));
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB">
            &lt;radU:RadAsyncUpload OnClientFileUploadingDeleting="myOnClientDeleting" ... /&gt;
            &lt;script language="javascript"&gt;
            function myOnClientDeleting()
            {
                args.set_cancel(prompt("Are you sure?"));
            }
            &lt;/script&gt;
                </code>
            </example>
            <remarks>
            If you want to cancel the deleting of the file input return
            <strong>false</strong> in the javascript handler.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.OnClientFileUploadRemoved">
            <summary>
            Gets or sets the name of the client-side function which will be executed after a file input has been deleted
            from a RadAsyncUpload instance. 
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.MaxFileSize">
            <summary>Gets or sets the maximum file size allowed for uploading in bytes.</summary>
            <value>The default value is <strong>0</strong> (unlimited).</value>
            <remarks>Set this property to 0 in order to prevent the file size checking.</remarks>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.AllowedMimeTypes">AllowedMimeTypes Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.AllowedFileExtensions">AllowedFileExtensions Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.PersistConfiguration">
            <summary>Gets or sets whether the upload configuration to be persisted into ControlState(if the upload configuration is different than null).</summary>
            <value>The default value is <strong>fasle</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.PostbackTriggers">
            <summary>Comma separated values - controls' ids. If the property is set the client state is updated in case some of the enumerated controls, triggered a postback.</summary>
            <value>The default value is <strong>string.Empty</strong>.</value>        
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.InitialFileInputsCount">
            <summary>
            Gets or sets the initial count of file input fields, which will appear in RadAsyncUpload.
            </summary>
            <value>
            The file inputs count which will be available at startup. The default value is
            <strong>1.</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.MaxFileInputsCount">
            <summary>
            Gets or sets the maximum file input fields that can be added to the control.
            </summary>
            <value>The default value is <strong>0</strong> (unlimited).</value>
            <remarks>
            Using this property you can limit the maximum number of file inputs which can be
            added to a RadAsyncUpload instance. MaxFileInputs count is only applicable when 
            MultipleFileSelection is set to Disabled
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadAsyncUpload.InitialFileInputsCount">InitialFileInputsCount Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.InputSize">
            <summary>
            Gets or sets the size of the file input field
            </summary>
            <value>The default value is <strong>23</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.UploadedFiles">
            <summary>
            Provides access to the valid files uploaded by the <strong>RadAsyncUpload</strong>
            instance.
            </summary>
            <value>
            	<strong>UploadedFileCollection</strong> containing all valid files uploaded using
            a <strong>RadAsyncUpload</strong> control.
            </value>
            <example>
                This example demonstrates how to save the valid uploaded files with a
                RadAsyncUpload control. 
                <code lang="VB">
            For Each file As Telerik.WebControls.UploadedFile In RadAsyncUpload1.UploadedFiles
                file.SaveAs(Path.Combine("c:\my files\", file.GetName()), True)
            Next
                </code>
            	<code lang="CS">
            foreach (Telerik.Web.UI.UploadedFile file in RadAsyncUpload1.UploadedFiles)
            {
                file.SaveAs(Path.Combine(@"c:\my files\", file.GetName()), true);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.TargetFolder">
            <summary>
            Gets or sets the virtual path of the folder, where RadUpload will automatically save the valid files after the upload completes.
            </summary>
            <value>
            A string containing the virtual path of the folder where RadUpload will automatically save the valid files
            after the upload completes. The default value is <strong>string.Empty</strong>.
            </value>
            <remarks>
            	<para>When set to <strong>string.Empty</strong>, the files must be saved manually to the desired location.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAsyncUpload.EnableFileInputSkinning">
            <summary>
            Gets or sets the value indicating whether the file input fields skinning will be enabled.
            </summary>
            <value>
            	<strong>true</strong> when the file input skinning is enabled; otherwise <strong>false</strong>.
            </value>
            <remarks>
            The &lt;input type=file&gt; DHTML elements are not skinnable by default. If the
            EnableFileInputSkinning is true some browsers can have strange behaviour.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.ButtonClickEventArgs">
            <summary>
            Provides data for the Click event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ButtonClickEventArgs.#ctor(System.Boolean)">
            <summary>
            Initializes a new instance of the ButtonClickEventArgs class with the specified arguments.
            </summary>
            <param name="isSplitButtonClick">Indicates whether the Split Button was clicked.</param>
        </member>
        <member name="M:Telerik.Web.UI.ButtonClickEventArgs.#ctor(Telerik.Web.UI.ButtonClickEventArgs)">
            <summary>
            Initializes a new instance of the ButtonClickEventArgs class with another ButtonClickEventArgs object.
            </summary>
            <param name="e">A ButtonClickEventArgs that contains the event data. </param>
        </member>
        <member name="P:Telerik.Web.UI.ButtonClickEventArgs.IsSplitButtonClick">
            <summary>
            Gets or sets a bool value that indicates whether the click event was initiated by clicking the Split Button
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ButtonPosition">
            <summary>
            Specifies the possible values for the <strong>SplitButtonPosition</strong> property of the RadButton control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonPosition.Right">
            <summary>
            The Split Button is rendered on the right (to the right of the text) of the control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonPosition.Left">
            <summary>
            The Split Button is rendered on the left (to the left of the text) of the control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ButtonCommandEventArgs">
            <summary>
            Provides data for the Command event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ButtonCommandEventArgs.#ctor(System.String,System.Object,System.Boolean)">
            <summary>
            Initializes a new instance of the ButtonCommandEventArgs class with the specified arguments.
            </summary>
            <param name="commandName">The command name of the RadButton control.</param>
            <param name="commandArgument">The command argument of the RadButton control.</param>
            <param name="isSplitButtonClick">Indicates whether the Split button was clicked.</param>
        </member>
        <member name="M:Telerik.Web.UI.ButtonCommandEventArgs.#ctor(Telerik.Web.UI.ButtonCommandEventArgs)">
            <summary>
            Initializes a new instance of the ButtonClickEventArgs class with another ButtonCommandEventArgs object.
            </summary>
            <param name="e">A ButtonCommandEventArgs that contains the event data. </param>
        </member>
        <member name="P:Telerik.Web.UI.ButtonCommandEventArgs.IsSplitButtonClick">
            <summary>
            Gets or sets a bool value that indicates whether the command event was initiated by clicking the Split Button.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ButtonToggleStateChangedEventHandler">
            <summary>
            Represents the method that will handle the ToggleStateChanged event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonToggleStateConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.ExplicitJavaScriptConverter">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadButtonToggleState">
            <summary>
            This class represents a single <see cref="T:Telerik.Web.UI.RadButton">RadButton</see> ToggleState when the RadButton control is used as custom toggle button.
            </summary>
            <summary>
            This class represents a single <see cref="T:Telerik.Web.UI.RadButton"/> ToggleState when the RadButton control is used as custom toggle button.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleState.#ctor">
            <summary>
            Creates a RadButton ToggleState.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleState.#ctor(System.String)">
            <summary>
            Creates a RadButton ToggleState.
            </summary>
            <param name="text">The Text of the ToggleState.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleState.#ctor(System.String,System.String)">
            <summary>
            Creates a RadButton ToggleState.
            </summary>
            <param name="text">The Text of the ToggleState.</param>
            <param name="cssClass">The CssClass of the ToggleState.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleState.#ctor(System.String,System.String,System.String)">
            <summary>
            Creates a RadButton ToggleState.
            </summary>
            <param name="text">The Text of the ToggleState.</param>
            <param name="cssClass">The CssClass of the ToggleState.</param>
            <param name="value">The Value of the ToggleState.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Text">
            <summary>
            Gets or sets the text displayed in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Value">
            <summary>
            Gets or sets optional Value.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Selected">
            <summary>
            Gets or sets a bool value indicating whether the ToggleState is selected or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.CssClass">
            <summary>
            Gets or sets the CSS class applied to the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.HoveredCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadButton control when the mouse pointer is over the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PressedCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadButton control when the control is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Width">
            <summary>
            Gets or sets the width of the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Height">
            <summary>
            Gets or sets the height of the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconCssClass">
            <summary>
            Gets or sets the CSS class applied to the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconUrl">
            <summary>
            Gets or sets the URL to the image used as Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryHoveredIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Primary Icon is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryPressedIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Primary Icon is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconHeight">
            <summary>
            Gets or sets the Height of the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconWidth">
            <summary>
            Gets or sets the Width of the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconTop">
            <summary>
            Gets or sets the top edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconBottom">
            <summary>
            Gets or sets the bottom edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconLeft">
            <summary>
            Gets or sets the left edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PrimaryIconRight">
            <summary>
            Gets or sets the right edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconCssClass">
            <summary>
            Gets or sets the CSS class applied to the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconUrl">
            <summary>
            Gets or sets the URL to the image used as Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryHoveredIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Secondary Icon is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryPressedIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Secondary Icon is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconHeight">
            <summary>
            Gets or sets the Height of the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconWidth">
            <summary>
            Gets or sets the Width of the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconTop">
            <summary>
            Gets or sets the top edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconBottom">
            <summary>
            Gets or sets the bottom edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconLeft">
            <summary>
            Gets or sets the left edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.SecondaryIconRight">
            <summary>
            Gets or sets the right edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.IsBackgroundImage">
            <summary>
            Gets or sets a bool value indicating how the Image is used - i.e. as a background image or as an Image Button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.ImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.HoveredImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control, when the mouse pointer is over the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.PressedImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control, when the control is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonToggleState.Container">
            <summary>
            The RadButton control that contains the ToggleState.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonIconConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonImageConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadButton">
            <summary>
            RadButton control provides the features, that ASP.NET: Button, ImageButton, LinkButton, RadioButton and CheckBox controls have. 
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadButton.originalEnabled">
            <summary>
            The Enabled property is reset in AddAttributesToRender in order
            to avoid setting disabled attribute in the control tag (this is
            the default behavior). This property has the real value of the 
            Enabled property in that moment.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds the attributes of the RadButton control to the output stream for rendering on the client.
            </summary>
            <param name="writer">An HtmlTextWriter that contains the output stream to render on the client.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RenderToggleState(System.Web.UI.HtmlTextWriter,Telerik.Web.UI.RadButtonToggleState,System.Boolean,System.Boolean,System.Boolean,System.String,System.String)">
            <summary>
            Renders a button from a given toggle state
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RenderText(System.Web.UI.HtmlTextWriter,System.String)">
            <summary>
            Renders an element that contains the Text of the RadButton control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RenderText(System.Web.UI.HtmlTextWriter,System.String,System.String)">
            <summary>
            Renders an element that contains the Text of the RadButton control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.AddAttributesBrowserInput(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds attributes to the input when EnableBrowserButtonStyle=true
            </summary>
            <param name="writer">An HtmlTextWriter that contains the output stream to render on the client.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.AddFontStyleAttributes(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds font related style attributes to a given element.
            </summary>
            <param name="writer">An HtmlTextWriter that contains the output stream to render on the client.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RenderIcon(System.Web.UI.HtmlTextWriter,System.String,System.String)">
            <summary>
            Renders the Primary and Secondary icons of the RadButton control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RenderIcon(System.Web.UI.HtmlTextWriter,System.String,System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit,System.Web.UI.WebControls.Unit,System.String,System.String)">
            <summary>
            Renders the Primary and Secondary icons of the RadButton control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.GetPostbackEventReference">
            <summary>
            Creates a PostBackOptions object that represents the RadButton control's postback behavior, and returns the client script 
            generated as a result of the PostBackOptions.
            </summary>
            <returns>The client script that represents the RadButton control's PostBackOptions.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.GetPostBackOptions">
            <summary>
            Creates a PostBackOptions object that represents the RadButton control's postback behavior.
            </summary>
            <returns>A PostBackOptions that represents the RadButton control's postback behavior.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.OnClick(Telerik.Web.UI.ButtonClickEventArgs)">
            <summary>
            Raises the Click event of the RadButton control.
            </summary>
            <param name="e">A ButtonClickEventArgs that contains the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.OnCommand(Telerik.Web.UI.ButtonCommandEventArgs)">
            <summary>
            Raises the Command event of the RadButton control.
            </summary>
            <param name="e">A ButtonCommandEventArgs that contains the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.OnCheckedChanged(System.EventArgs)">
            <summary>
            Raises the CheckedChanged event of the RadButton control.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.OnToggleStateChanged(Telerik.Web.UI.ButtonToggleStateChangedEventArgs)">
            <summary>
            Raises the ToggleStateChaned event of the RadButton control.
            </summary>
            <param name="e"></param> 
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RaisePostBackEvent(System.String)">
            <summary>
            Raises events for the RadButton control when it posts back to the server.
            </summary>
            <param name="eventArgument">The argument for the event.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.RaisePostDataChangedEvent">
            <summary>
            Invokes the OnCheckedChanged and OnToggleStateChanged methods,
            when the Checked and SelectedToggleStateIndex properties of the RadButton control have changed.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButton.ClearSelection">
            <summary>
            Clears out the list selection and sets the <strong>Selected</strong> property of all ToggleState objects to false.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientLoad">
            <summary>
            The name of the javascript function called when the control loads.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientClicking">
            <summary>
            The name of the javascript function called when the RadButton control is clicked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientClicked">
            <summary>
            The name of the javascript function called when the RadButton control is clicked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientMouseOver">
            <summary>
            The name of the javascript function called when the mouse hovers over the control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientMouseOut">
            <summary>
            The name of the javascript function called when the mouse leaves the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientCheckedChanging">
            <summary>
            The name of the javascript function called when the Checked property of the RadButton control is about to be changed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientCheckedChanged">
            <summary>
            The name of the javascript function called after the Checked property of the RadButton control is changed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientToggleStateChanging">
            <summary>
            The name of the javascript function called when the SelectedToggleStateIndex property of the RadButton control is about to be changed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.OnClientToggleStateChanged">
            <summary>
            The name of the javascript function called after the SelectedToggleStateIndex property of the RadButton control is changed.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadButton.Click">
            <summary>
            Adds or removes an event handler method from the Click event.
            The event is fired when the RadButton control is clicked. 
            </summary>		
        </member>
        <member name="E:Telerik.Web.UI.RadButton.Command">
            <summary>
            Adds or removes an event handler method from the Command event.
            The event is fired when the RadButton control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadButton.CheckedChanged">
            <summary>
            Adds or removes an event handler method from the CheckedChanged event.
            The event is fired when the value of the Checked property changes between posts to the server.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadButton.ToggleStateChanged">
            <summary>
            Adds or removes an event handler method from the ToggleStateChanged event.
            The event is fired when the value of the SelectedToggleStateIndex property changes between posts to the server.
            <remarks>
            Valid only when RadButton has ToggleType != None
            </remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when the RadButton control is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event along with the associated CommandName.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.CommandName">
            <summary>
            Gets or sets the command name associated with the RadButton control that is passed to the Command event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.PostBackUrl">
            <summary>
            Gets or sets the URL of the page to post to from the current page when the RadButton control is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ValidationGroup">
            <summary>
            Gets or sets the group of controls for which the RadButton control causes validation when it posts back to the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Icon">
            <summary>
            Gets the object that controls the Primary and Secondary Icon related properties.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Image">
            <summary>
            Gets the object that control the Image properties. A RadButton control can be rendered as an ImageButton, or it can have a BackgroundImage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ToggleStates">
            <summary>
            Gets a collection of <see cref="T:Telerik.Web.UI.RadButtonToggleState">RadButtonToggleState</see> objects that belong to the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ContentTemplate">
            <summary>Gets or sets the template for the button.</summary>
            <value>
            	<para>
            	An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            	(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            	</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.AutoPostBack">
            <summary>
            Gets or sets a bool value indicating whether the RadButton control automatically posts back to the server when clicked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Text">
            <summary>
            Gets or sets the text displayed in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Value">
            <summary>
            Gets or sets optional Value of the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ReadOnly">
            <summary>
            Get or sets a bool value indicating whether the RadButton control is in read-only mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.UseSubmitBehavior">
            <summary>
            Gets or sets a value indicating whether the RadButton control uses the client browser's submit mechanism or the ASP.NET postback mechanism.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.EnableBrowserButtonStyle">
            <summary>
            Gets or sets a bool value indicating whether the client browser's default styling will be applied to the RadButton control.
            When this property is set to true, the control will look like standard HTML input of type="button" or type="submit",
            with the default styles applied by the client browser.
            <remarks>
            Use this property when ButtonType="StandardButton".
            </remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Target">
            <summary>
            Gets or sets the target window or frame in which to display the Web page content linked to when the RadButton control is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.NavigateUrl">
            <summary>
            Gets or sets the URL to link to when the RadButton control is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.HoveredCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadButton control when the mouse pointer is over the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.PressedCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadButton control when the control is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.DisabledButtonCssClass">
            <summary>
            Gets or sets the CSS class applied when the control is disabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.EnableSplitButton">
            <summary>
            Gets or sets a bool value indicating whether an additional button (besides the primary button) will be rendered in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.SplitButtonPosition">
            <summary>
            Gets or sets the position (relative to the RadButton's text) of the split button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.SplitButtonCssClass">
            <summary>
            Gets or sets the CSS class applied to the SplitButton of the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ButtonType">
            <summary>
            Gets or sets the type of the button. RadButtonType:<b>StandardButton</b>(default), and <b>LinkButton</b>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.ToggleType">
            <summary>
            Gets or sets the toggle type of the RadButton when used as a toggle button.
            The Default is ButtonToggleType=None.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.Checked">
            <summary>
            Gets or sets a bool value indicating whether the RadButton control is checked. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.GroupName">
            <summary>
            Gets or sets the name of the group that the RadButton of ToggleType=Radio, belongs to.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.SelectedToggleState">
            <summary>
            Gets the currently selected ToggleState of the RadButton control when used as a custom toggle button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButton.SelectedToggleStateIndex">
            <summary>
            Gets or sets the index of the currently selected ToggleState of the RadButton control, when used as a custom toggle button.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonIcon">
            <summary>
            Manages Primary and Secondary Icons of the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.ShowPrimaryIcon">
            <summary>
            Gets or sets a bool value indicating whether the RadButton will show the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconCssClass">
            <summary>
            Gets or sets the CSS class applied to the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconUrl">
            <summary>
            Gets or sets the URL to the image used as Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryHoveredIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Primary Icon is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryPressedIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Primary Icon is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconHeight">
            <summary>
            Gets or sets the Height of the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconWidth">
            <summary>
            Gets or sets the Width of the Primary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconTop">
            <summary>
            Gets or sets the top edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconBottom">
            <summary>
            Gets or sets the bottom edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconLeft">
            <summary>
            Gets or sets the left edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.PrimaryIconRight">
            <summary>
            Gets or sets the right edge of the Primary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.ShowSecondaryIcon">
            <summary>
            Gets or sets a bool value indicating whether the RadButton will show the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconCssClass">
            <summary>
            Gets or sets the CSS class applied to the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconUrl">
            <summary>
            Gets or sets the URL to the image used as Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryHoveredIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Secondary Icon is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryPressedIconUrl">
            <summary>
            Gets or sets the URL to the image showed when the Secondary Icon is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconHeight">
            <summary>
            Gets or sets the Height of the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconWidth">
            <summary>
            Gets or sets the Width of the Secondary Icon.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconTop">
            <summary>
            Gets or sets the top edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconBottom">
            <summary>
            Gets or sets the bottom edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconLeft">
            <summary>
            Gets or sets the left edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonIcon.SecondaryIconRight">
            <summary>
            Gets or sets the right edge of the Secondary Icon, relative to the RadButton control's wrapper element.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonImage">
            <summary>
            Manages the image shown in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.IsBackgroundImage">
            <summary>
            Gets or sets a bool value indicating how the Image is used - i.e. as a background image or as an Image Button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.ImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.DisabledImageUrl">
            <summary>
            Gets or sets the location of an image to display when the RadButton control is disabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.HoveredImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control, when the mouse pointer is over the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.PressedImageUrl">
            <summary>
            Gets or sets the location of an image to display in the RadButton control, when the control is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadButtonImage.EnableImageButton">
            <summary>
            Gets or sets a bool value indicating whether the RadButton is rendered as Image Button.
            <remarks>
            Use this property if you want to set the image through the CssClass property of the RadButton control.
            In case the ImageUrl property is set this property is automatically set to true.
            </remarks>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ButtonToggleStateChangedEventArgs">
            <summary>
            Provides data for the ToggleStateChanged event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ButtonToggleStateChangedEventArgs.#ctor(System.String,System.Object,System.Int32,Telerik.Web.UI.RadButtonToggleState)">
            <summary>
            Initializes a new instance of the ButtonToggleStateChangedEventArgs class with the specified arguments.
            </summary>
            <param name="commandName">The name of the command.</param>
            <param name="commandArgument">The object containing the arguments for the command.</param>
            <param name="selectedToggleStateIndex">The current ToggleState index of the RadButton control.</param>
            <param name="selectedToggleState">The currently selected ToggleState of the RadButton control.</param>
        </member>
        <member name="M:Telerik.Web.UI.ButtonToggleStateChangedEventArgs.#ctor(Telerik.Web.UI.ButtonToggleStateChangedEventArgs)">
            <summary>
            Initializes a new instance of the ButtonToggleStateChangedEventArgs class with another ButtonToggleStateChangedEventArgs object.
            </summary>
            <param name="e">A ButtonToggleStateChangedEventArgs that contains the event data. </param>
        </member>
        <member name="P:Telerik.Web.UI.ButtonToggleStateChangedEventArgs.SelectedToggleStateIndex">
            <summary>
            Gets or sets the currently selected index of the RadButton control firing the event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ButtonToggleStateChangedEventArgs.SelectedToggleState">
            <summary>
            Gets or sets the currently selected RadButtonToggleState of the RadButton control firing the event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonToggleStateCollection">
            <summary>
            A collection of <see cref="T:Telerik.Web.UI.RadButtonToggleState">RadButtonToggleState</see> objects in a <see cref="T:Telerik.Web.UI.RadButton">RadButton</see>
            control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleStateCollection.#ctor(Telerik.Web.UI.RadButton)">
            <summary>
            Creates an instance of <see cref="T:Telerik.Web.UI.RadButtonToggleStateCollection">RadButtonToggleStateCollection</see> class.
            </summary>
            <param name="container">The RadButton control to which the collection belongs.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleStateCollection.Add(System.String)">
            <summary>
            Creates a new <see cref="T:Telerik.Web.UI.RadButtonToggleState">RadButtonToggleState</see> and adds it to the current ToggleState collection.
            </summary>
            <param name="text">The Text of the ToggleState.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadButtonToggleStateCollection.Remove(Telerik.Web.UI.RadButtonToggleState)">
            <summary>
            Removes an item from the collection.
            </summary>
            <param name="item">The ToggleState to remove.</param>
        </member>
        <member name="T:Telerik.Web.UI.ButtonToggleType">
            <summary>
            Specifies the possible values for the <strong>ToggleType</strong> property of the RadButton control.
            This property is valid when <see cref="P:Telerik.Web.UI.RadButton.ButtonType">ButtonType</see> property is set
            to ToggleButton.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonToggleType.None">
            <summary>
            The toggle button behavior is disabled. RadButton behaves as a standard push button.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonToggleType.CheckBox">
            <summary>
            The RadButton control behaves as a standard ASP.NET CheckBox.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonToggleType.Radio">
            <summary>
            The RadButton control behaves as a standard ASP.NET RadioButton.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ButtonToggleType.CustomToggle">
            <summary>
            The RadButton control behaves as a  custom ToggleButton. 
            Use the ToggleStates collection to set custom states of the RadButton control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadButtonType">
            <summary>
            Specifies the possible values for the <strong>ButtonType</strong> property of the RadButton control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadButtonType.StandardButton">
            <summary>
            A standard <strong>INPUT</strong> element with type=submit or type=button is rendered. UseSubmitBehavior property controls the the type of the INPUT.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadButtonType.LinkButton">
            <summary>
            An ANCHOR element is rendered. Target and NavigateUrl properties are specific for this button type.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadButtonType.ToggleButton">
            <summary>
            Use this ButtonType when you want to use the RadButton as RadioButton or CheckBox.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.RangeSelectionMode">
            <summary>
            Describes the <strong>RadCalendar</strong> range selection modes. None - does not allow range selection. OnKeyHold - allow
             range selection by pressing [Shift] key and clicking on the date. ConsecutiveClicks - allow 
            range selection by clicking consecutively two dates.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RangeSelectionMode.None">
            <summary>
            Does not allow range selection.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RangeSelectionMode.OnKeyHold">
            <summary>
            Allow range selection by pressing [Shift] key and clicking on the date.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RangeSelectionMode.ConsecutiveClicks">
            <summary>
            Allow range selection by clicking consecutively two dates.
            </summary>
            <value>3</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.MonthYearPickerClientEvents">
            <summary>
            Summary description for DatePickerClientEvents.
            </summary>
            
        </member>
        <member name="T:Telerik.Web.UI.ObjectWithState">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.Calendar.MonthYearPickerClientEvents.OnDateSelected">
            <summary>
                Gets or sets the name of the client-side event handler that is executed whenever
                the selected date of the datepicker is changed.
            </summary>
            <example>
            	<pre>
            [ASPX/ASCX]
            </pre>
            	<pre>
            &lt;script type="text/javascript" &gt;<br/>function DatePicker_OnDateSelected(pickerInstance, args)<br/>{<br/>    alert("The picker date has been chanded from " + args.OldDate + " to " + args.NewDate);<br/>}     <br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server" &gt;<br/>    &lt;ClientEvents OnDateSelected="DatePicker_OnDateSelected" /&gt;<br/>&lt;/radCln:RadDatePicker&gt;   
            </pre>
            </example>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.MonthYearPickerClientEvents.OnPopupOpening">
            <summary>
            Gets or sets the name of the client-side event handler that is executed prior to
            opening the calendar popup and its synchronizing with the DateInput value.
            </summary>
            <remarks>
            	<para>There can be some conditions you do want not to open the calendar popup on
                click of the popup button. Then you should cancel the event either by <em>return
                false;</em> or set its argument <em>args.CancelOpen = true;</em></para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Opening(sender, args)<br/>{<br/>    args.CancelOpen = true;<br/>    //or<br/>    return false;<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>    &lt;ClientEvents OnPopupOpening="Opening"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;
                </pre>
            	<para>Set the <em>args.CancelSynchronize = true;</em> to override the default
                DatePicker behavior of synchronizing the date in the DateInput and Calendar
                controls. This is useful for focusing the Calendar control on a date different from
                the DateInput one.</para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Opening(sender, args)<br/>{<br/>    args.CancelCalendarSynchronize = true;<br/>    sender.Calendar.NavigateToDate([2006,12,19]);<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server" &gt;<br/>    &lt;ClientEvents OnPopupOpening="Opening"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;
            </pre>
            </remarks>
            <example>
            	<pre>
            [ASPX/ASCX]        
            </pre>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function OnPopupOpening(datepickerInstance, args)<br/>{<br/>   ......<br/>}<br/>&lt;/script&gt;<br/><br/>&lt;radcln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>   &lt;ClientEvents OnPopupOpening="OnPopupOpening" /&gt;<br/>&lt;/radcln:RadDatePicker&gt;
            </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.MonthYearPickerClientEvents.OnPopupClosing">
            <summary>
            Gets or sets the name of the client-side event handler that is executed prior to
            closing the calendar popup.
            </summary>
            <example>
            	<pre>
            [ASPX/ASCX]        
            </pre>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function OnPopupClosing(datepickerInstance, args)<br/>{<br/>   ......<br/>}<br/>&lt;/script&gt;<br/><br/>&lt;radcln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>   &lt;ClientEvents OnPopupClosing="OnPopupClosing" /&gt;<br/>&lt;/radcln:RadDatePicker&gt;
            </pre>
            </example>
            <remarks>
            	<para>There can be some conditions you do want not to close the calendar popup on
                click over it. Then you should cancel the event either by <em>return false;</em> or
                set its argument <em>args.CancelClose = true;</em></para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Closing(sender, args)<br/>{<br/>    args.CancelClose = true;<br/>    //or<br/>    return false;<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>    &lt;ClientEvents OnPopupClosing="Closing"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;   
            </pre>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.MonthYearNavigationSettings">
            <summary>
            The MonthYearFastNavigationSettings class can be used to configure RadMonthYear's
            client-side navigation popup.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.MonthYearFastNavigationSettings">
            <summary>
            The MonthYearFastNavigationSettings class can be used to configure RadCalendar's
            client-side fast navigation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.TodayButtonCaption">
            <summary>Gets or sets the value of the "Today" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "Today".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.OkButtonCaption">
            <summary>Gets or sets the value of the "OK" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "OK".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.CancelButtonCaption">
            <summary>Gets or sets the value of the "Cancel" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "Cancel".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.DateIsOutOfRangeMessage">
            <summary>Gets or sets the value of the "Date is out of range" error message.</summary>
            <value>
            This property can be used to localize the message the user sees when she tries to navigate to a date outside the allowed range. 
            The default is "Date is out of range.".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.EnableTodayButtonSelection">
            <summary>Gets or sets the value indicating whether the Today button should perform date selection or simple navigation.</summary>
            <value>
            The default value is false (i.e. Today button works as a navigation enhancement only).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.DisableOutOfRangeMonths">
            <summary>
            Gets or sets a value indicating whether the months that are out of range will be disabled.
            </summary>
            <value>
            The default value is <strong>false</strong>.
            </value>
            <remarks>
            Setting this property to true will disable the months that are out of range
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearFastNavigationSettings.EnableScreenBoundaryDetection">
            <summary>Gets or sets whether the screen boundaries should be taken into consideration
            when the Fast Navigation Popup is displayed.</summary>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearNavigationSettings.TodayButtonCaption">
            <summary>Gets or sets the value of the "Today" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "Current month".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearNavigationSettings.OkButtonCaption">
            <summary>Gets or sets the value of the "OK" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "OK".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearNavigationSettings.CancelButtonCaption">
            <summary>Gets or sets the value of the "Cancel" button caption;</summary>
            <value>
            This property can be used to localize the button caption. The default is
            "Cancel".
            </value>
        </member>
        <member name="T:Telerik.Web.UI.MonthYearPopupButton">
            <summary>
            The control that toggles the TimeView popup.  
            You can customize the appearance by setting the object's properties.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CalendarPopupButton">
            <summary>
            The control that toggles the calendar popup.  
            You can customize the appearance by setting the object's properties.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CalendarPopupButton.ImageUrl">
            <summary>
            Gets or sets the popup button image URL.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CalendarPopupButton.HoverImageUrl">
            <summary>
            Gets or sets the popup button hover image URL.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.MonthYearPopupButton.ImageUrl">
            <summary>
            Gets or sets the popup button image URL.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMonthYearPicker">
            <summary>
            RadMonthYearPicker class
            </summary>
                
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Persistence.PropertiesControl">
            <summary>
            Base class based on the PropertyBag implementation, which descends from WebControl class.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.Persistence.PropertiesControl._ObjectProperties">
            <summary>
            Implements the PropertyBag class that is the foundation for building Telerik RadCalendar and
            handles properties values.Used by the ViewState mechanism also.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMonthYearPicker.ConfigureDateInput">
            <summary>
            Override this method to provide any last minute configuration changes.  Make sure you call the base implementation.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMonthYearPicker.Clear">
            <summary>
            Clears the selected date of the RadMonthYearPicker control and displays a blank date.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMonthYearPicker.System#Web#UI#IPostBackDataHandler#LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            IPostBackDataHandler implementation
        </member>
        <member name="E:Telerik.Web.UI.RadMonthYearPicker.ChildrenCreated">
            <summary>
            	Occurs after all child controls of the RadMonthYearPicker control have been created.
            	You can customize the control there, and add additional child controls.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadMonthYearPicker.SelectedDateChanged">
            <summary>
            	Occurs when the selected date of the RadMonthYearPicker changes between posts to the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.MonthYearTableView">
            <summary>
            Gets the MonthYearView instance of the MonthYearPicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.DateInput">
            <summary>
            Gets the RadDateInput instance of the RadMonthYearPicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.DatePopupButton">
            <summary>
            Gets the DatePopupButton instance of the RadMonthYearPicker control.  
            You can use the object to customize the popup button's appearance and behavior.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make RadMonthYearPicker postback to the server 
            on date selection through the MonthYearView or the DateInput components.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.PopupDirection">
            <summary>Gets or sets the direction in which the popup MonthYearView is displayed,
            with relation to the RadMonthYearPicker control.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.ZIndex">
            <summary>Gets or sets the z-index style of the control's popups</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.EnableShadows">
            <summary>Gets or sets whether popup shadows will appear.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.SelectedDate">
            <summary>Gets or sets the date content of RadMonthYearPicker.</summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is <see cref="P:Telerik.Web.UI.RadMonthYearPicker.MinDate">MinDate</see>.
            </value>
            <example>
                The following example demonstrates how to use the <strong>SelectedDate</strong>
                property to set the content of RadMonthYearPicker. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadMonthYearPicker1.SelectedDate = DateTime.Now;
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadMonthYearPicker1.SelectedDate = DateTime.Now
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.ValidationDate">
            <summary>
            This property is used by the RadDateInput's internals only. It is subject to
            change in the future versions. Please do not use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.InvalidTextBoxValue">
            <summary>
            Gets the invalid date string in the control's textbox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.DbSelectedDate">
            <summary>Gets or sets the date content of RadMonthYearPicker in a database friendly way.</summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is null (Nothing in VB).
            </value>
            <example>
                The following example demonstrates how to use the <strong>DbSelectedDate</strong>
                property to set the content of RadMonthYearPicker. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadMonthYearPicker1.DbSelectedDate = tableRow["BirthDate"];
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadMonthYearPicker1.DbSelectedDate = tableRow("BirthDate")
            End Sub
                </code>
            </example>
            <remarks>
            This property behaves exactly like the SelectedDate property. The only difference
            is that it will not throw an exception if the new value is null or DBNull. Setting a
            null value will internally revert the SelectedDate to the null value, i.e. the input value will be empty.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.IsEmpty">
            <summary>
            Used to determine if RadMonthYearPicker is empty.
            </summary>
            <value>
            	<strong>true</strong> if the date is empty; otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.EnableTyping">
            <summary>
            Enables or disables typing in the date input box.
            </summary>
            <value>
            	<strong>true</strong> if the user should be able to select a date by typing in the date input box; otherwise
            <strong>false</strong>. The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.ShowPopupOnFocus">
            <summary>
            Gets or sets whether the popup control is displayed when the DateInput textbox is focused.
            </summary>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.MinDate">
            <summary>
            Gets or sets the minimal range date for selection.
            Selecting a date earlier than that will not be allowed.
            </summary>
            <remarks>
            This property has a default value of <strong>1/1/1980</strong>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.MaxDate">
            <summary>
            Gets or sets the latest valid date for selection.
            Selecting a date later than that will not be allowed.
            </summary>
            <remarks>
            This property has a default value of <strong>12/31/2099</strong>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.Culture">
            <summary>Gets or sets the culture used by RadMonthYearPicker to format the date.</summary>
            <value>
            A <see cref="T:System.Globalization.CultureInfo">CultureInfo</see> object that represents the current culture used. The default value is System.Threading.Thread.CurrentThread.CurrentUICulture.
            </value>
            <example>
                The following example demonstrates how to use the <strong>Culture</strong>
                property. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadMonthYearPicker1.Culture = new CultureInfo("en-US");
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadMonthYearPicker1.Culture = New CultureInfo("en-US")
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.Width">
            <summary>
            Gets or sets the width of the RadMonthYearPicker in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.ImagesPath">
            <summary>Gets or sets default path for the grid images when EnableEmbeddedSkins is set to false.</summary>
            <value>A string containing the path for the grid images. The default is string.Empty.</value>
            <remarks>
            <para>
            
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.IsDesignMode">
            <summary>
            Returns whether RadCalendar is currently in design mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.FastNavigationStyle">
            <summary>Gets the style properties for the Month/Year fast navigation.</summary>
            <value>
            A TableItemStyle that contains the style properties for the the Month/Year fast
            navigation.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMonthYearPicker.RangeMaxDate">
            <summary>
            Gets or sets the maximum date valid for selection by
            Telerik RadMonthYearPicker. Must be interpreted as the Higher bound of the valid
            dates range available for selection. Telerik RadMonthYearPicker will not allow
            navigation or selection past this date.
            </summary>
            <remarks>
            This property has a default value of <font size="1"><strong>12/30/2099</strong>
            (Gregorian calendar date).</font>
            </remarks>
            
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxRenderingMode">
            <summary>
            The Telerik.Web.UI.RadComboBoxRenderingMode enumeration has two values - Full and Simple.
            The default value is Default.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBoxRenderingMode.Full">
            <summary>
            RadComboBox renders in its default HTML structure.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBoxRenderingMode.Simple">
            <summary>
            RadComboBox rendres as a HTML select element with options.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxItem">
            <summary>
            RadComboBoxItem  class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ControlItem.IsChildControl(System.Web.UI.Control)">
            <summary>
            Returns true if the control is rendered by the ControlItem itself;
            false if it was added by the user to the Controls collection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.Enabled">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.Visible">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.ID">
            <summary>
            The ID property is reserved for internal use. Please use the <see cref="P:Telerik.Web.UI.ControlItem.Value">Value</see> property or
            use the <see cref="T:Telerik.Web.UI.Attributes">Attributes</see> collection if you need to assign
            custom data to the item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.Index">
            <summary>
            Gets the zero based index of the item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.AccessKey">
            <summary>
            Gets or sets the access key that allows you to quickly navigate to the Web server control.
            </summary>
            <value>
            The access key for quick navigation to the Web server control.
            The default value is String.Empty, which indicates that this property is not set.
            </value>
            <exception cref="T:System.ArgumentException">
            The specified access key is neither null, String.Empty nor a single character string. 
            </exception>
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.BackColor">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.ForeColor">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ControlItem.BorderColor">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadComboBoxItem"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItem.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadComboBoxItem"/> class. 
            Does not set the Value property of the instance.
            </summary>
            <param name="text">The text of the item.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItem.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadComboBoxItem"/> class.
            </summary>
            <param name="text">The text of the item.</param>
            <param name="value">The value of the item.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItem.CompareTo(System.Object)">
            <summary>
            Compares two instance for equality. 
            <returns>returns 0 if equal, a positive number if the first is greater than the 
            second, and a negative number otherwise.</returns>
            </summary>
            <param name="obj"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.Text">
            <summary>Gets or sets the text caption for the combobox item.</summary>
            <value>The text of the item. The default value is empty string.</value>        
            <remarks>
            Use the <strong>Text</strong> property to specify the text to display for the
            item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.Value">
            <summary>Gets or sets the value  for the combobox item.</summary>
            <value>The value of the item. The default value is empty string.</value>        
            <remarks>
            Use the <strong>Value</strong> property to specify the value 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.Owner">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadComboBox">RadComboBox</see> instance which contains the current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.ComboBoxParent">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadComboBox">RadComboBox</see> instance which contains the current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.Selected">
            <summary>Gets or sets the selected state of the combobox item.</summary>
            <value>The default value is false.</value>        
            <remarks>
            Use the <strong>Selected</strong> property to determine whether the item is selected or not.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.Checked">
            <summary>Gets or sets the checked state of the combobox item.</summary>
            <value>The default value is false.</value>        
            <remarks>
            Use the <strong>Checked</strong> property to determine whether the item is checked or not.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.ToolTip">
            <summary>Gets or sets the tooltip of the combobox item.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.IsSeparator">
            <summary>
            Sets or gets whether the item is separator. It also represents a logical state of
            the item. Might be used in some applications for keyboard navigation to omit processing
            items that are marked as separators.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItem.DisabledImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is disabled.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>DisabledImageUrl</strong> property to specify the image for the item when it is disabled. If
            the <strong>DisabledImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBox">
            <summary>RadComboBox for ASP.NET AJAX is a powerful drop-down list AJAX-based control </summary>
            <remarks>
            	<para>
                   The <b>RadComboBox</b> control supports the following features:
                </para>
            	<list type="bullet">
            		<item>Databinding that allows the control to be populated from various
                    datasources</item>
            		<item>Programmatic access to the <strong>RadComboBox</strong> object model
                    which allows to dynamic creation of comboboxes, populate items, set
                    properties.</item>
            		<item>Customizable appearance through built-in or user-defined skins.</item>
            	</list>
            	<h3>Items</h3>
            	<para>
                    Each item has a <see cref="P:Telerik.Web.UI.RadComboBoxItem.Text">Text</see> and a <see cref="P:Telerik.Web.UI.RadComboBoxItem.Value">Value</see> property. 
            		The value of the <see cref="P:Telerik.Web.UI.RadComboBoxItem.Text">Text</see> property is displayed in the <b>RadComboBox</b> control, 
            		while the <see cref="P:Telerik.Web.UI.RadComboBoxItem.Value">Value</see> property is used to store any additional data about the item, 
            		such as data passed to the postback event associated with the item. 
                </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadDataBoundControl">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.OnPreRender(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.ControlPreRender">
            <summary>
            Code moved into this method from OnPreRender to make sure it executed when the framework skips OnPreRender() for some reason
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RegisterScriptControl">
            <summary>
            Registers the control with the ScriptManager
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RegisterCssReferences">
            <summary>
            Registers the CSS references
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Loads the client state data
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.SaveClientState">
            <summary>
            Saves the client state data
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderClientStateField(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.Render(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderScriptsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderDescriptorsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.DescribeProperty``1(Telerik.Web.UI.IScriptDescriptor,System.String,``0,``0)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.DescribeEvent(Telerik.Web.UI.IScriptDescriptor,System.String,System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.GetEmbeddedSkinNames">
            <summary>
            Returns the names of all embedded skins. Used by Telerik.Web.Examples.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Executed when post data is loaded from the request
            </summary>
            <param name="postDataKey"></param>
            <param name="postCollection"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDataBoundControl.RaisePostDataChangedEvent">
            <summary>
            Executed when post data changes should invoke a chagned event
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.RegisterWithScriptManager">
            <summary>
            Gets or sets the value, indicating whether to register with the ScriptManager control on the page.
            </summary>
            <remarks>
            <para>
            If RegisterWithScriptManager is set to false the control can be rendered on the page using Web Services or normal callback requests/page methods.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.RuntimeSkin">
            <summary>
            Gets the real skin name for the control user interface. If Skin is not set, returns
            "Default", otherwise returns Skin.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.ClientStateFieldID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.CssClassFormatString">
            <summary>
            The CssClass property will now be used instead of the former Skin 
            and will be modified in AddAttributesToRender()
            </summary>
            <example>
            protected override string CssClassFormatString
            {
            	get
            	{
            		return "RadDock RadDock_{0} rdWTitle rdWFooter";
            	}
            }
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.DefaultCssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.ClientIDMode">
            <summary>
            This property is overridden in order to support controls which implement INamingContainer.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataBoundControl.ScriptManager">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.AddProperty(Telerik.Web.UI.IScriptDescriptor,System.String,System.Object,System.Object)">
            <summary>
            Adds the property to the IScriptDescriptor, if it's value is different from the given default.
            </summary>
            <param name="descriptor">The descriptor to add the property to.</param>
            <param name="name">The property name.</param>
            <param name="value">The current value of the property.</param>
            <param name="defaultValue">The default value.</param>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.GetXml">
            <summary>
            	Gets an XML string representing the state of the control. All child items and their properties are serialized in this
            	string.
            </summary>
            <returns>
            	A String representing the state of the control - child items, properties etc.
            </returns>
            <remarks>
            	Use the GetXml method to get the XML state of the control. You can cache it and then restore it using
            	the <see cref="M:Telerik.Web.UI.ControlItemContainer.LoadXml(System.String)">LoadXml</see> method.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.LoadXml(System.String)">
            <summary>
            	Loads the control from an XML string.
            </summary>
            <param name="xml">
            	The string representing the XML from which the control will be populated.
            </param>
            <remarks>
            	Use the LoadXml method to populate the control from an XML string. You can use it along the <see cref="M:Telerik.Web.UI.ControlItemContainer.GetXml">GetXml</see>
            	method to implement caching.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemContainer.ValidationGroup">
            <summary>
            	Gets or sets the name of the validation group to which this validation
                control belongs.
            </summary>
            <value>
            The name of the validation group to which this validation control belongs. The
            default is an empty string (""), which indicates that this property is not set.
            </value>
            <remarks>
                This property works only when <see cref="P:Telerik.Web.UI.ControlItemContainer.CausesValidation">CausesValidation</see>
                is set to true.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemContainer.PostBackUrl">
            <summary>
             <para>Gets or sets the URL of the page to post to from the current page when a tab
                from the tabstrip is clicked.</para>
            </summary>
            <value>
            The URL of the Web page to post to from the current page when a tab from the
            tabstrip control is clicked. The default value is an empty string (""), which causes
            the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemContainer.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when an item within
            the control is selected.
            </summary>
            <value>
            	<strong>true</strong> if validation is performed when an item is selected;
            otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
            <remarks>
            	<para>By default, page validation is performed when an item is selected. Page
                validation determines whether the input controls associated with a validation
                control on the page all pass the validation rules specified by the validation
                control. You can specify or determine whether validation is performed on both the
                client and the server when an item is clicked by using the <b>CausesValidation</b>
                property. To prevent validation from being performed, set the
                <b>CausesValidation</b> property to <b>false</b>.</para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.Helpers.GetRowItems``1(System.Int32,System.Int32,System.Collections.Generic.IList{``0})">
            <summary>
            Generic method for splitting items in rows.
            </summary>
            <example>
            For example:
            	GetRowItems(1, 2, [1,2,3,4,5,6,7]) -> [1,2,3,4]
            	GetRowItems(2, 2, [1,2,3,4,5,6,7]) -> [5,6,7]
            </example>
            <typeparam name="T">Item type</typeparam>
            <param name="rowIndex">Current row index</param>
            <param name="numberOfRows">Total number of rows</param>
            <param name="items">The full IList of items</param>
            <returns>The items belonging to the specified row</returns>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.Helpers.BalanceRows``1(System.Collections.Generic.Queue{``0}[])">
            <summary>
            Given that new items are inserted one at a time at the last row
            this method will arrange them in such manner that the
            number of items in the rows is in descending order.
            </summary>
            <remarks>
            Works by moving the first item from each row (starting from the last)
            to the end of the previous in order to leave any incomplete rows at the end.
            </remarks>
            <example>
            If we have:
            1) A, B
            2) C,
            3) D, E
            
            The result would be:
            1) A, B
            2) C, D
            3) E
            </example>
            <typeparam name="T">Item type</typeparam>
            <param name="rowQueues">The array of Queues representing each row</param>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemContainer.Helpers.GetColumnItems``1(System.Int32,System.Int32,System.Collections.Generic.IList{``0})">
            <summary>
            Generic method for splitting items in columns.
            </summary>
            <remarks>
            For example:
            	GetColumnItems(1, 2, [1,2,3,4,5,6,7]) -> [1,3,5,7]
            	GetColumnItems(2, 2, [1,2,3,4,5,6,7]) -> [2,4,6]
            </remarks>
            <typeparam name="T">Item type</typeparam>
            <param name="columnIndex">Current column index</param>
            <param name="numberOfColumns">Total number of columns</param>
            <param name="items">The full IList of items</param>
            <returns>The items belonging to the specified column</returns>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBox.cachedSelectedIndex">
            <summary><para>Gets or sets the index of the selected item in the ComboBox control.</para></summary>
            <remarks>
            Use the <b>SelectedIndex</b> property to programmatically specify or determine
            the index of the selected item from the <strong>combobox</strong> control
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.RequiresControlState">
            <summary>
            Override in an inheritor and return false in order to skip Loading/Saving ControlState.
            </summary>
            <returns>True</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnItemDataBound(Telerik.Web.UI.RadComboBoxItemEventArgs)">
            <summary>
            Raises the ItemDataBound event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnItemCreated(Telerik.Web.UI.RadComboBoxItemEventArgs)">
            <summary>
            Raises the ItematCreated event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.ClearSelection">
            <summary>
            	<para>Clears out the list selection and sets the <strong>Selected</strong> property
                of all items to false.</para>
            </summary>
            <remarks><para>Use this method to reset the control so that no items are selected.</para></remarks>
            <example>
            	<code lang="VB" title="[New Example]">
            RadComboBox1.ClearSelection()
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBox1.ClearSelection();
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.InternalClearSelection">
            <summary>
            Legacy. Do not modify.
            Use only *in* RadComboBox and RadComboBoxItem classes.
            Uselects all items (item.Selected = false) and sets SelectedValue = null.
            It just works as expected in the places where it is used.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.RaisePostDataChangedEvent">
            <summary>
            Signals the RadComboBox control to notify the ASP.NET application that the state of the control has changed.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnTextChanged(System.EventArgs)">
            <summary>
            Raises the TextChanged event. This allows you to handle the event directly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnSelectedIndexChanged">
            <summary>
            Raises the SelectedIndexChanged event. This allows you to handle the event directly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnItemsRequested(Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs)">
            <summary>
            Raises the ItemRequestEvent event. This allows you to handle the event directly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.CreateDataSourceSelectArguments">
            <summary>
            Creates a <see cref="T:System.Web.UI.DataSourceSelectArguments"/> object
            that is configured for paging if the underlying data source supports it.
            </summary>
            <returns>
            A <see cref="T:System.Web.UI.DataSourceSelectArguments"/> initialized for paging if the underlying data source supports it.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.DataBind">
            <summary>
            Binds a data source to the invoked RadComboBox and all its child controls.
            Does not bind the control if EnableAutomaticLoadOnDemand is true and the page request is not a callback.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.OnItemChecked(Telerik.Web.UI.RadComboBoxItemEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadComboBox.ItemChecked"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadComboBoxItemEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemByText(System.String)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Text</strong> that
            matches the given text value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified text value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByText("New York")
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByText("New York");
                </code>
            </example>
            <param name="text">The string to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemByText(System.String,System.Boolean)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Text</strong> that
            matches the given text value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified text value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByText("New York",true)
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByText("New York",true);
                </code>
            </example>
            <param name="text">The string to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemByValue(System.String)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Value</strong> that
            matches the given value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByValue("1")
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByValue("1");
                </code>
            </example>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemByValue(System.String,System.Boolean)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Value</strong> that
            matches the given value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByValue("1", true)
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByValue("1", true);
                </code>
            </example>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemIndexByText(System.String)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Text</strong> that matches the given text value.
            </summary>
            <param name="text">The string to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemIndexByText(System.String,System.Boolean)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Text</strong> that matches the given text value.
            </summary>
            <param name="text">The string to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemIndexByValue(System.String)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Value</strong> that matches the given value.
            </summary>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItemIndexByValue(System.String,System.Boolean)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Value</strong> that matches the given value.
            </summary>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.FindItem(System.Predicate{Telerik.Web.UI.RadComboBoxItem})">
            <summary>
            Returns  the first <strong>RadComboBoxItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadComboBox1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadComboBoxItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadComboBox1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadComboBoxItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
                </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.LoadContentFile(System.String)">
            <summary>
            Loads combobox items from an XML content file.
            </summary>
            <example>
            	<code lang="VB" title="[New Example]">
            RadComboBox1.LoadContentFile("~/myfile.xml")
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBox1.LoadContentFile("~/myfile.xml");
                </code>
            </example>
            <param name="fileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.SortItems">
            <summary>Sorts the items in the <strong>RadComboBox</strong>.
            </summary>
            <example>
            <code lang="VB" title="[New Example]">
            RadComboBox1.Sort=RadComboBoxSort.Ascending
            RadComboBox1.SortItems()
            </code>
            <code lang="CS" title="[New Example]">
            RadComboBox1.Sort=RadComboBoxSort.Ascending;
            RadComboBox1.SortItems();
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.SortItems(System.Collections.IComparer)">
             <summary>Sorts the items in the <strong>RadComboBox</strong>.</summary>
             <param name="comparer">
             An object from IComparer interface.
             </param>
            
             <example>
             <code lang="VB" title="[New Example]">
             RadComboBox1.Sort=RadComboBoxSort.Ascending
             Dim comparer As MyComparer = New MyComparer()
             RadComboBox1.SortItems(comparer)
             Public Class MyComparer
            Implements IComparer
            
            Public Function Compare(ByVal x As Object, ByVal y As Object) As Integer
            	Dim p1 As New RadComboBoxItem()
            	Dim p2 As New RadComboBoxItem()
            
            	If TypeOf x Is RadComboBoxItem Then
            		p1 = TryCast(x, RadComboBoxItem)
            	Else
            		Throw New ArgumentException("Object is not of type RadComboBoxItem.")
            	End If
            
            	If TypeOf y Is RadComboBoxItem Then
            		p2 = TryCast(y, RadComboBoxItem)
            	Else
            		Throw New ArgumentException("Object is not of type RadComboBoxItem.")
            	End If
            
            	Dim cmp As Integer = 0
            	If p1.ComboBoxParent.Sort = RadComboBoxSort.Ascending Then
            		cmp = [String].Compare(p1.Value, p2.Value, Not p1.ComboBoxParent.SortCaseSensitive)
            	End If
            	If p1.ComboBoxParent.Sort = RadComboBoxSort.Descending Then
            		cmp = [String].Compare(p1.Value, p2.Value, Not p1.ComboBoxParent.SortCaseSensitive) * -1
            	End If
            
            	Return cmp
            End Function
            
            End Class
            
             </code>
             <code lang="CS" title="[New Example]">
             RadComboBox1.Sort=RadComboBoxSort.Ascending;
             MyCoparer comparer = new MyComparer();
             RadComboBox1.SortItems(comparer);
             public class MyComparer : IComparer
            {
            
              public int Compare(object x, object y)
              {
                  RadComboBoxItem p1 = new RadComboBoxItem();
                  RadComboBoxItem p2 = new RadComboBoxItem();
            
                  if (x is RadComboBoxItem)
                     p1 = x as RadComboBoxItem;
                 else
                     throw new ArgumentException("Object is not of type RadComboBoxItem.");
            
                  if (y is RadComboBoxItem)
                    p2 = y as RadComboBoxItem;
                else
                    throw new ArgumentException("Object is not of type RadComboBoxItem.");
            
                 int cmp = 0;
                  if (p1.ComboBoxParent.Sort == RadComboBoxSort.Ascending)
                  {
                      cmp = String.Compare(p1.Value, p2.Value, !p1.ComboBoxParent.SortCaseSensitive);
                  }
                 if (p1.ComboBoxParent.Sort == RadComboBoxSort.Descending)
                 {
                     cmp = String.Compare(p1.Value, p2.Value, !p1.ComboBoxParent.SortCaseSensitive) * -1;
                  }
            
                  return cmp;
             }
            
            }
                 </code>
             </example>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.GetCheckedIndices">
            <summary>
            Gets an array containing the indices of the currently checked items in the RadComboBox control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBox.ClearCheckedItems">
            <summary>
            Clears the checked items. The <see cref="P:Telerik.Web.UI.RadComboBoxItem.Checked"/> property of all items is set to <c>false</c>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding an item, removing an item, changing an item's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<item>adding a new item</item>
            			<item>removing existing item</item>
            			<item>clearing the children of an item or the control itself</item>
            			<item>changing a property of the item</item>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadComboBoxItem&gt; operation in RadToolBar1.ClientChanges)
            		{
            			RadComboBoxItem item = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//An item has been inserted - operation.Item contains the inserted item
            				break;
            				case ClientOperationType.Remove:
            					//An item has been inserted - operation.Item contains the removed item. 
                             //Keep in mind the item has been removed from the combobox.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadComboBoxItem&gt; update = operation as UpdateClientOperation&lt;RadComboBoxItem&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of the combobox have been removed - operation.Item will always be null.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadComboBoxItem) In RadToolBar1.ClientChanges
            				Dim item As RadComboBoxItem = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'An item has been inserted - operation.Item contains the inserted item
            					Exit Select
            					Case ClientOperationType.Remove
            						'An item has been inserted - operation.Item contains the removed item. 
            						'Keep in mind the item has been removed from the combobox.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadComboBoxItem) = TryCast(operation, UpdateClientOperation(Of RadComboBoxItem))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						//All children of the combobox have been removed - operation.Item will always be Nothing.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see> object that contains the items of the current RadComboBox control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see> that contains the items of the current RadComboBox control. By default
            	the collection is empty (RadComboBox has no children).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the child items of RadComboBox
            You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of  items.
                <code lang="CS">
            		RadComboBox1.Items[0].Text = "Example";
            		RadComboBox1.Items[0].Value = "1";
                </code>
            	<code lang="VB">
            		RadComboBox1.Items(0).Text = "Example"
            		RadComboBox1.Items(0).Value = "1"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableItemBindingExpressions">
            <summary>
            Gets or sets a value indicating whether any databinding expressions specified in the ItemTemplate should be evaluated for
            unbound items (items added inline or programmatically).
            </summary>
            <value>true if databinding expressions should be evaluated; otherwise false; The default value is false.
            </value>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.ItemCreated">
            <summary>
            Occurs on the server when an item in the <strong>RadComboBox</strong> control is
            created.
            </summary>
            <remarks>
            	<para>The <b>ItemCreated</b> event is raised every time a new item is
                added.</para>
            	<para>The <b>ItemCreated</b> event is not related to data binding and you
                cannot retrieve the <strong>DataItem</strong> of the item in the event
                handler.</para>
            	<para>The <b>ItemCreated</b> event is often useful in scenarios where you want
                to initialize all items - for example setting the <strong>ToolTip</strong> of each
                <strong>RadComboBoxItem</strong> to be equal to the <strong>Text</strong> property.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.TemplateNeeded">
            <summary>Occurs before template is being applied to the item.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the item, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for items
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property of the items. 
                <code lang="CS">
            		 protected void RadComboBox1_TemplateNeeded(object sender, Telerik.Web.UI.RadComboBoxItemEventArgs e)
            		 {
            		    string value = e.Item.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              textBoxTemplate.InstantiateIn(e.Item);        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadComboBox1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadComboBoxItemEventArgs) Handles RadComboBox1.TemplateNeeded
                         Dim value As String = e.Item.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 textBoxTemplate.InstantiateIn(e.Item)
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.ItemDataBound">
            <summary>
            	<para>Occurs after an item is data bound to the <strong>RadComboBox</strong>
                control.</para>
            </summary>
            <remarks>
            	<para>This event provides you with the last opportunity to access the data item
                before it is displayed on the client. After this event is raised, the data item is
                nulled out and no longer available.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.SelectedIndexChanged">
            <summary>Occurs when the <strong>SelectedIndex</strong> property has changed.</summary>
            <remarks>
            	<para>You can create an event handler for this event to determine when the selected
                index in the <strong>RadComboBox</strong> has been changed. This can be useful when
                you need to display information in other controls based on the current selection in
                the <strong>RadComboBox</strong>. You can use the event handler to load the
                information in the other controls.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically
            occurs when the user changes the <strong>RadComboBox</strong> selection.
            </summary>
            <remarks>
            	<para>Set this property to <b>true</b> if the server needs to capture the selection
                as soon as it is made. For example, other controls on the Web page can be
                automatically filled depending on the user's selection from a list control.</para>
            	<para>This property can be used to allow automatic population of other controls on
                the Web page based on a user's selection from a list.</para>
            	<para>The value of this property is stored in view state.</para>
            	<para>
                    The server-side event that is fired is
                    <see cref="E:Telerik.Web.UI.RadComboBox.SelectedIndexChanged">SelectedIndexChanged</see>.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ItemsPerRequest">
            <summary>
            Gets or sets the number of Items the <strong>RadComboBox</strong> will load per Item request.
            </summary>
            <remarks>
            Set this property to -1 to load all Items when EnableAutomaticLoadOnDemand is set to true 
            and disable Virtual Scrolling/Show More Results. The default is -1.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.ItemsRequested">
            <summary>
            Occurs when <strong>RadComboBox</strong> initiates an AJAX callback to the
            server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.IsEmpty">
            <summary>
            Gets a value indicating whether the current instance of the combobox has child
            items.
            </summary>
            <example>
            	<code lang="VB" title="[New Example]">
            If RadComboBox1.IsEmpty
              '
              '
              '
            End If
                </code>
            	<code lang="CS" title="[New Example]">
            if (RadComboBox1.IsEmpty)
            {
              //
              //
              //
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.RadComboBoxImagePosition">
            <summary>Sets or gets the position (left or right) of the arrow image dropdown.</summary>
            <example>
            	<code lang="CS" title="[New Example]">
            RadComboBox1.RadComboBoxImagePosition = RadComboBoxImagePosition.Left;
                </code>
            	<code lang="VB" title="[New Example]">
            RadComboBox1.RadComboBoxImagePosition = RadComboBoxImagePosition.Right
                </code>
            </example>
            <remarks>
            By default the image is shown on the right. Left can be used in RTL
            (right-to-left) language scenarios.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Text">
            <summary>
            	<para>Gets or sets the text content of the <strong>RadComboBox</strong>
                control.</para>
            </summary>
            <remarks>
            In standard mode, the currently selected text can be accessed using both the
            <strong>Text</strong> property or <strong>RadCombobox.SelectedItem.Text</strong>. In
            AJAX callback modes, only the <strong>Text</strong> property can be used because
            end-users can type or paste text that does not match the text of any item and
            <strong>SelectedItem</strong> can be null.
            </remarks>
            <example>
            	<code lang="CS" title="[New Example]">
            string comboText = RadComboBox1.Text
                </code>
            	<code lang="VB" title="[New Example]">
            Dim comboText As String = RadComboBox1.Text
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.LoadingMessage">
            <summary>
            The value of the message that is shown in <strong>RadComboBox</strong> while AJAX
            callback call is in effect.
            </summary>
            <remarks>
            This property can be used for customizing and localizing the text of the loading
            message.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items.
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadComboBox.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public RadComboBoxItemData[] WebServiceMethodName(object context)
            			{
            				// We cannot use a dictionary as a parameter, because it is only supported by script services.
            				// The context object should be cast to a dictionary at runtime.
            				IDictionary&lt;string, object&gt; contextDictionary = (IDictionary&lt;string, object&gt;) context;
            				
            				//...
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ItemRequestTimeout">
            <summary>
            Specifies the timeout after each keypress before <strong>RadComboBox</strong>
            fires an AJAX callback to the <strong>ItemsRequested</strong> server-side event.
            </summary>
            <remarks>
            In miliseconds. <strong>ItemRequestTimeout = 500</strong> is equal to half a
            second delay.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ZIndex">
            <summary>The HTML Z-index of the items dropdown of <strong>RadComboBox.Its default value is 6000</strong>.</summary>
            <remarks>
            Can be used when the dropdown is to be shown over content with a specified
            Z-index. If the combobox items dropdown is displayed below the content, set the
            <strong>ZIndex</strong> property to a value higher than the value of the HTML content
            below.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OpenDropDownOnLoad">
            <summary>
            Gets or sets a value that indicates whether the dropdown of the combobox should
            be opened by default on loadnig the page.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.IsCaseSensitive">
            <summary>
            Gets or sets a value that indicates whether the combobox autocompletion logic is
            case-sensitive or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ShowMoreResultsBox">
            <summary>
            Gets or sets a value indicating whether the combobox should display the box for
            requesting additional items
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.MarkFirstMatch">
            <summary>
            Gets or sets a value indicating whether the combobox should automatically
            autocomplete and highlight the currently typed text to the closest item text
            match.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Filter">
            <summary>
            Gets or sets a value indicating whether the combobox should automatically
            autocomplete and highlight the currently typed text to the all items text
            match.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableLoadOnDemand">
            <summary>
            Gets or sets a value indicating whether the combobox should issue a callback to
            the server whenever end-users change the text of the combo (keypress, paste,
            etc).
            </summary>
            <remarks>
                In Load On Demand mode, the combobox starts a callback after a specified amount of
                time (see <see cref="P:Telerik.Web.UI.RadComboBox.ItemRequestTimeout">ItemRequestTimeout</see>) and calls the
                server-side <see cref="E:Telerik.Web.UI.RadComboBox.ItemsRequested">ItemsRequested</see> event. Depending on the
                value of the event arguments, you can add new items to the combobox object and the
                items will be propagated to the browser after the request.
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableAutomaticLoadOnDemand">
            <summary>
            Gets or sets a value indicating whether the combobox should handle the
            items request automatically on the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableItemCaching">
            <summary>
            Gets or sets a value indicating whether the combobox should cache items loaded on demand or via webservice
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableVirtualScrolling">
            <summary>
            Gets or sets a value indicating whether the combobox should load items on demand (via callback) 
            during scrolling-down the drop-down area.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableTextSelection">
            <summary>
            Gets or sets a value indicating whether the text of combobox should be selected
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ShowToggleImage">
            <summary>
            Gets or sets a value indicating whether the dropdown image next to the combobox
            text area should be displayed.
            </summary>
            <remarks>
            The dropdown image is located in the <em>Skins</em> folder of the combo - by
            default <em>~/RadControls/ComboBox/Skins/{SkinName}/DropArrow.gif</em>. You can
            custmoize or modify the image and place it in the respective folder of the skin you are
            using.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.NoWrap">
            <summary>
            	<para>Gets or sets a value indicating whether the text in a combobox item
                automatically continues on the next line when it reaches the end of the
                dropdown.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CloseDropDownOnBlur">
            <summary><para>Determines whether drop down should be closed on blur</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.AllowCustomText">
            <summary><para>Determines whether custom text can be entered into the input field of RadComboBox.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ChangeTextOnKeyBoardNavigation">
            <summary><para>Determines whether the text can be entered into the input field of RadComboBox during keyboard navigation</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ErrorMessage">
            <summary><para>Determines the custom error message to be shown after the <strong>Load On Demand Callback</strong> error appears.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ShowDropDownOnTextboxClick">
            <summary><para>Determines whether the dropdown shows when the user clicks in the input field.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableScreenBoundaryDetection">
            <summary><para>Determines whether the Screen Boundaries Detection is enabled or not.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ExpandDirection">
            <summary>
                Gets or sets a value indicating the opening direction of RadComboBox dropdown.
                If this property is not set - by default dropdown opens downwards.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.HighlightTemplatedItems">
            <summary>
                Gets or sets a value indicating whether items defined in the
                <see cref="P:Telerik.Web.UI.RadComboBox.ItemTemplate">ItemTemplate</see> template should be automatically
                highlighted on mouse hover or keyboard navigation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.AutoCompleteSeparator">
            <summary>
            Gets or sets a list of separators: autocomplete logic is reset afer a separator
            is entered and users can autocomplete multiple items.
            </summary>
            <remarks>You can use several separators at once.</remarks>
            <example>
            	<code lang="CS" title="[New Example]">
            RadComboBox1.AutoCompleteSeparator = ";,";
                </code>
            	<code lang="VB" title="[New Example]">
            RadComboBox1.AutoCompleteSeparator = ";,"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.AccessibilityMode">
            <summary><para>Determines whether the noscript tag containing select element to be rendered.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.SelectedItem">
            <summary><para>Gets the currently selected item in the combobox.</para></summary>
            <example>
            	<code lang="CS" title="[New Example]">
            &lt;telerik:radcombobox id="RadComboBox1" Runat="server" &gt;&lt;/telerik:radcombobox&gt;
                                
            private void RadComboBox1_SelectedIndexChanged(object o, Telerik.WebControls.RadComboBoxSelectedIndexChangedEventArgs e)
            {
                Label1.Text = RadComboBox1.SelectedItem.Text;   
            }
                </code>
            	<code lang="VB" title="[New Example]">
            &lt;telerik:radcombobox id="RadComboBox1" Runat="server" &gt;&lt;/telerik:radcombobox&gt;
                                
            Private Sub RadComboBox1_SelectedIndexChanged(ByVal o As Object, ByVal e As Telerik.WebControls.RadComboBoxSelectedIndexChangedEventArgs) Handles RadComboBox1.SelectedIndexChanged
                Label1.Text = RadComboBox1.SelectedItem.Text    
            End Sub
                </code>
            </example>
            <remarks>
            	<strong>SelectedItem</strong> can be <strong>null</strong> in load-on-demand or
                <see cref="P:Telerik.Web.UI.RadComboBox.AllowCustomText">AllowCustomText</see> modes. End-users can type any
                text.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.SelectedIndex">
            <summary><para>Gets the index of the currently selected item in the combobox.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OffsetX">
            <summary>
            Gets or sets a value indicating the horizontal offset of the combobox dropdown        
            </summary>
            <value>
            An integer specifying the horizontal offset of the combobox dropdown (measured in
            pixels). The default value is 0 (no offset).
            </value>
            <remarks>
            	<para>Use the <strong>OffsetX</strong> property to change the position of the combobox dropdown</para>
            	<para>
                    To customize the vertical offset use the <see cref="P:Telerik.Web.UI.RadComboBox.OffsetY">OffsetY</see>
                    property.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OffsetY">
            <summary>
            Gets or sets a value indicating the vertical offset of the combobox dropdown.
            </summary>
            <value>
            An integer specifying the vertical offset of the combobox dropdown(measured in
            pixels). The default value is 0 (no offset).
            </value>
            <remarks>
            	<para>Use the <strong>OffsetY</strong> property to change the position where the combobox dropdown
                will appear.</para>
            	<para>
                    To customize the horizontal offset use the <see cref="P:Telerik.Web.UI.RadComboBox.OffsetX">OffsetX</see>
                    property.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.DropDownWidth">
            <summary>
            Gets or sets the width of the dropdown in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.DropDownCssClass">
            <summary>
            Gets or sets an additional Cascading Style Sheet (CSS) class applied to the Drop Down.
            </summary>
            <remarks>
            By default the visual appearance of the Drop Down is defined in the skin CSS
            file. You can use the <strong>DropDownCssClass</strong> property to specify a CSS class
            to be applied in addition to the default CSS class.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.InputCssClass">
            <summary>
            Gets or sets an additional Cascading Style Sheet (CSS) class applied to the Input.
            </summary>
            <remarks>
            By default the visual appearance of the Input is defined in the skin CSS
            file. You can use the <strong>InputCssClass</strong> property to specify a CSS class
            to be applied in addition to the default CSS class.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.MaxHeight">
            <summary>
            Gets or sets the max height of the dropdown in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.SelectedValue">
            <summary><para>Gets the value of the currently selected item in the combobox.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.HeaderTemplate">
            <summary>
            Gets or sets the template for displaying header in
            <strong>RadcomboBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.FooterTemplate">
            <summary>
            Gets or sets the template for displaying footer in
            <strong>RadcomboBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Header">
            <summary>
            Get a header of 
            <strong>RadcomboBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Footer">
            <summary>
            Get a footer of 
            <strong>RadcomboBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ItemTemplate">
            <summary>
            Gets or sets the template for displaying the items in
            <strong>RadcomboBox</strong>.
            </summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying combo items. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>The <strong>ItemTemplate</strong> property sets a template that will be used
                for all combo items.</para>
            </value>
            <example>
            	<para>The following example demonstrates how to use the
                <strong>ItemTemplate</strong> property to add a CheckBox for each item.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadComboBox runat="server" ID="RadComboBox1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;ItemTemplate&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;asp:CheckBox runat="server"
                        ID="CheckBox"&gt;&lt;/asp:CheckBox&gt;<br/>
                        &lt;asp:Label runat="server" ID="Label1"</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>Text='&lt;%# DataBinder.Eval(Container, "Text") %&gt;'</para>
            				<para>&gt;&lt;/asp:Label&gt;</para>
            			</blockquote>
            		</blockquote>
            		<para>&lt;/ItemTemplate&gt;</para>
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadComboBoxItem Text="News" /&gt;</para>
            			<para>&lt;telerik:RadComboBoxItem Text="Sports" /&gt;</para>
            			<para>&lt;telerik:RadComboBoxItem Text="Games" /&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadComboBox&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.MaxLength">
            <summary>Gets or sets the maximum number of characters allowed in the combobox.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ShowWhileLoading">
            <summary>
            Indicates whether the combobox will be visible while loading.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ExpandAnimation">
            <summary>Gets the settings for the animation played when the dropdown opens.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                expand animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>ExpandAnimation</strong> property to customize the expand
                    animation of <strong>RadComboBox</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see>,
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> and the
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the collapse animation you can use the
                    <see cref="P:Telerik.Web.UI.RadComboBox.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>ExpandAnimation</strong>
                of RadComboBox. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadComboBox ID="RadComboBox1" runat="server"&gt;</para>
            		<para><strong>&lt;ExpandAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadComboBoxItem Text="News" &gt;</para>
            		<para>&lt;/telerik:RadComboBoxItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadComboBox&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadComboBox1.ExpandAnimation.Type = AnimationType.Linear;
               RadComboBox1.ExpandAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadComboBox1.ExpandAnimation.Type = AnimationType.Linear
                RadComboBox1.ExpandAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.ExpandDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a dropdown starts to
            open.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            100 milliseconds.
            </value>
            <remarks>
            	<para>Use the <strong>ExpandDelay</strong> property to delay dropdown opening.</para>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadComboBox.CollapseDelay">CollapseDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify a half second (500
                milliseconds) timeout prior to dropdown opening:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1" runat="server"
                <strong>ExpandDelay="500"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CollapseAnimation">
            <summary>Gets the settings for the animation played when an item closes.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                collapse animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>CollapseAnimation</strong> property to customize the collapse
                    animation of <strong>RadComboBox</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see>,
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> and the
                    items are collapsed.<br/>
                    To disable collapse animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>. To customize the expand animation you can
                    use the <see cref="P:Telerik.Web.UI.RadComboBox.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the
                <strong>CollapseAnimation</strong> of RadComboBox. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadComboBox ID="RadComboBox1" runat="server"&gt;</para>
            		<para><strong>&lt;CollapseAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadComboBoxItem Text="News" &gt;</para>
            		<para>&lt;/telerik:RadComboBoxItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadComboBox&gt;</para>
            		<code lang="CS">
            		</code>
            		<code lang="VB">
            		</code>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadComboBox1.CollapseAnimation.Type = AnimationType.Linear;
                RadComboBox1.CollapseAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadComboBox1.CollapseAnimation.Type = AnimationType.Linear
                RadComboBox1.CollapseAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CollapseDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a dropdown starts to
            close.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            500 (half a second).
            </value>
            <remarks>
            	<para>Use the <strong>CollapseDelay</strong> property to delay dropdown closing. To
                cause immediate item closing set this property to 0 (zero).</para>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadComboBox.ExpandDelay">ExpandDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify one second (1000
                milliseconds) timeout prior to dropdown closing:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1" runat="server"
                <strong>ClosingDelay="1000"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.Sort">
            <summary>
            Automatically sorts items alphabetically (based on the <strong>Text</strong>
            property) in ascending or descending order.
            </summary>
            <example>
            	<code lang="CS" title="[New Example]">
            RadComboBox1.Sort = RadComboBoxSort.Ascending;
             RadComboBox1.Sort = RadComboBoxSort.Descending;
             RadComboBox1.Sort = RadComboBoxSort.None;
                </code>
            	<code lang="VB" title="[New Example]">
            RadComboBox1.Sort = RadComboBoxSort.Ascending
             RadComboBox1.Sort = RadComboBoxSort.Descending
             RadComboBox1.Sort = RadComboBoxSort.None
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.SortCaseSensitive">
             <summary>
             Gets/sets whether the sorting will be case-sensitive or not.
            By default is set to true.
             </summary>
             <example>
             	<code lang="CS" title="[New Example]">
             RadComboBox1.SortCaseSensitive = false;
             
                 </code>
             	<code lang="VB" title="[New Example]">
             RadComboBox1.SortCaseSensitive = false
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CheckBoxes">
            <summary>
            Gets or sets a value indicating whether the combobox should display the checkboxes for its items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.DataCheckedField">
            <summary>
            Gets or sets which datasource field will represent the "Checked" state of an item checkbox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.EnableCheckAllItemsCheckBox">
            <summary>
            Gets or sets a value indicating whether the combobox should display the checkboxes for its items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CheckedItemsTexts">
            <summary>
            Gets or sets a value indicating whether the combobox should display the checked items texts in case they do not fit in the control input.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.CheckedItems">
            <summary>
            Gets the currently checked items in the RadComboBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.RenderingMode">
            <summary>
            Gets or sets a value indicating whether the ComboBox should render as a &lt;select&gt; element.
            When enabled the ComboBox will have its functionality reduced to that of the &lt;select&gt; element.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.TextChanged">
            <summary>
            Occurs when the text of the RadComboBox changes between postbacks to the server.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadComboBox.ItemChecked">
            <summary>
            Occurs when an item is checked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientSelectedIndexChanging">
            <summary>
            	The client-side event that is fired when the selected index of the
            	<strong>RadComboBox</strong> is about to be changed.
            </summary>
            <remarks>
            	<para>
            		The event handler receives two parameters: the instance of of the RadComboBox
            		client-side object and event argument of the newly selected item.
            	</para>
            	<para>
            		The event can be cancelled - simply call
            		<strong> args.set_cancel(true); </strong>
            		from the event handler and the item will not be changed.
            	</para>
            </remarks>
            <example>
            	<code lang="JScript">
            &lt;script type="text/javascript"&gt;               
                function onSelectedIndexChanging(sender, eventArgs)
                {
            		var item = eventArgs.get_item();
                    if (item.get_text() == "LA")
                    {
                        // do not allow selecting item with text "LA"   
                        return false; 
                    }
                    else
                    {
                        // alert the new item text and value.
                        alert(item.get_text() + ":" + item.get_value());
                    }
                }                        
            &lt;/script&gt;
             
            &lt;telerik:radcombobox ID="RadComboBox1" runat="server" 
                  OnClientSelectedIndexChanging="onSelectedIndexChanging"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientSelectedIndexChanged">
            <summary>
            The client-side event that is fired after the selected index of the RadComboBox has
            been changed.
            </summary>
            <remarks>
            The event handler receives two parameters: the instance of of the combobox
            client-side object and event argument with the newly selected item.
            </remarks>
            <example>
            	<code lang="JScript">
            &lt;script language="javascript"&gt;               
                function onSelectedIndexChanged(sender,eventArgs)
                {        
                        var item = eventArgs.get_item();
                        // alert the new item text and value.
                        alert(item.get_text() + ":" + item.get_value());
                }                        
            &lt;/script&gt;
             
            &lt;telerik:radcombobox ID="RadComboBox1" runat="server" 
                  OnClientSelectedIndexChanged="onSelectedIndexChanged"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemsRequesting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadComboBox</strong> is about to be populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemRequestingHandler(sender, eventArgs)<br/>
                {<br/>
            		var context = eventArgs.get_context();<br/>
            		context["Parameter1"] = "Value";<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemPopulating="onClientItemPopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadComboBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequesting</strong> client-side event
                handler is called when the <strong>RadComboBox</strong> is about to be populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_context()</strong>, an user object that will be passed to the web service.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemsRequested">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadComboBox</strong> items were just populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemsRequested(sender, eventArgs)<br/>
                {<br/>
            		alert("Loading finished");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemsRequested="onItemsRequested"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadComboBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequested</strong> client-side event
                handler is called when the <strong>RadComboBox</strong> items were just populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong>, null for this event.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemsRequestFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the <strong>RadComboBox</strong> has failed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemsRequestFailed(sender, eventArgs)<br/>
                {<br/>
            		alert("Error: " + errorMessage);<br/>
            		eventArgs.set_cancel(true);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemsRequestFailed="onItemsRequestFailed"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadComboBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequestFailed</strong> client-side event
                handler is called when the operation for populating the <strong>RadComboBox</strong> has failed.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>set_cancel()</strong>, set to true to suppress the default action (alert message).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemDataBound">
            <summary>
            Gets or sets the name of the JavaScript function called when an Item is created during Web Service Load on Demand.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientKeyPressing">
            <summary>
            The client-side event that is fired when the user presses a key inside the
            combobox.
            </summary>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;telerik:radcombobox 
              Runat="server"
              ID="RadComboBox3"       
              OnClientKeyPressing="HandleKeyPress" 
             ... 
            /&gt;
             
               &lt;script type="text/javascript"&gt;
               
               function HandleKeyPress(sender, e)
               {
                if (e.keyCode == 13)
                {
                 document.forms[0].submit();
                }
               }
               
               &lt;/script&gt;
                </code>
            </example>
            <remarks>
            	<para>The event handler receives two parameters:</para>
            	<list type="bullet">
            		<item>the instance of the combobox client-side object;</item>
            		<item>browser event arguments.</item>
            	</list>
            	<para>You can use the browser event arguments (and the <strong>keyCode</strong>
                property in particular) to detect which key was pressed and to write your own
                custom logic.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientDropDownOpening">
            <summary>
            The client-side event that is fired before the dropdown of the combobox is
            opened.
            </summary>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;script language="javascript"&gt;               
             
            function HandleOpen(sender,args)
            {
                if (someCondition)
                {
                    args.set_cancel(true);   
                }
                else
                {
                    alert("Opening combobox with " + comboBox.get_items().get_count() + " items");
                }
            }
                                   
            &lt;/script&gt;
             
             
            &lt;telerik:radcombobox 
                  id="RadComboBox1" 
                  Runat="server" 
                  OnClientDropDownOpening="HandleOpen"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
            <remarks>
            The event handler receives two parameter: the instance of the combobox
            client-side object and event args. The event can be cancelled - simply set  args.set_cancel to true<strong> args.set_cancel(true); </strong>
            from the event handler and the combobox dropdown will not be opened.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientDropDownOpened">
            <summary>
            The client-side event that is fired after the dropdown of the combobox is
            opened.
            </summary>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;script language="javascript"&gt;               
             
            function HandleOpen(sender,args)
            {
                 alert("Opening combobox with " + comboBox.get_items().get_count() + " items");
             
            }
                                   
            &lt;/script&gt;
             
             
            &lt;telerik:radcombobox 
                  id="RadComboBox1" 
                  Runat="server" 
                  OnClientDropDownOpened="HandleOpen"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
            <remarks>
            The event handler receives two parameter: the instance of the combobox
            client-side object and event args. The event cannot  be cancelled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientFocus">
            <summary>
            The client-side event that is fired when when the combo gains focus
            </summary>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;script type="text/avascript"&gt;               
             
            function OnClientFocus(sender,args)
            {
                alert("focus");
            }
                                   
            &lt;/script&gt;
             
             
            &lt;telerik:radcombobox 
                  id="RadComboBox1" 
                  Runat="server" 
                  OnClientFocus="OnClientFocus"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
            <remarks>
            The event handler receives two parameter: the instance of the combobox
            client-side object and event args.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientBlur">
            <summary>
            The client-side event that is fired when when the combo loses focus
            </summary>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;script type="text/avascript"&gt;               
             
            function OnClientBlur(sender,args)
            {
                alert("blur");
            }
                                   
            &lt;/script&gt;
             
             
            &lt;telerik:radcombobox 
                  id="RadComboBox1" 
                  Runat="server" 
                  OnClientBlur="OnClientBlur"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
            <remarks>
            The event handler receives two parameter: the instance of the combobox
            client-side object and event args.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientDropDownClosing">
            <summary>
            The client-side event that is fired before the dropdown of the combobox is
            closed.
            </summary>
            <remarks>
            The event handler receives two parameter: the instance of the combobox
            client-side object and event args. The event can be cancelled - simply set  args.set_cancel to true<strong> args.set_cancel(true); </strong>
            from the event handler and the combobox dropdown will not be closed.
            </remarks>
            <example>
            	<code lang="JScript" title="[New Example]">
            &lt;script language="javascript"&gt;                
              
            function HandleClose(sender, args) 
            { 
                if (someCondition) 
                { 
                    args.set_cancel(true);    
                } 
                else 
                { 
                    alert("Closing combobox with " + sender.get_items().get_count() + " items"); 
                } 
            } 
                                    
            &lt;/script&gt; 
              
              
            &lt;telerik:radcombobox  
                  id="RadComboBox1"  
                  Runat="server"  
                  OnClientDropDownClosing="HandleClose"&gt; 
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientDropDownClosed">
             <summary>
             The client-side event that is fired after the dropdown of the combobox is
             closed.
             </summary>
             <remarks>
             The event handler receives two parameter: the instance of the combobox
             client-side object and event args. The event can not be cancelled
             </remarks>
             <example>
             	<code lang="JScript" title="[New Example]">
             &lt;script language="javascript"&gt;                
               
             function HandleClose(sender, args) 
             {  
                     alert("Closed combobox with " + sender.get_items().get_count() + " items"); 
            
             } 
                                     
             &lt;/script&gt; 
               
               
             &lt;telerik:radcombobox  
                   id="RadComboBox1"  
                   Runat="server"  
                   OnClientDropDownClosed="HandleClose"&gt; 
             &lt;/telerik:radcombobox&gt;
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientLoad">
            <remarks>
            	<para>If specified, the <strong>OnClienLoad</strong> client-side event handler is
                called after the combobox is fully initialized on the client.</para>
            	<para>A single parameter - the combobox client object - is passed to the
                handler.</para>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientLoadHandler(sender)<br/>
                {<br/>
            		alert(sender.get_id());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadComboBox ID="RadComboBox1"<br/>
                runat= "server"<br/>
            		<strong>OnClientLoad="onClientLoadHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadComboBox&gt;</para>
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the <strong>RadComboBox</strong> client-side object is initialized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemChecking">
            <summary>
            	The client-side event that is fired when a
            	<strong>RadComboBox</strong> item is about to be checked.
            </summary>
            <remarks>
            	<para>
            		The event handler receives two parameters: the instance of of the RadComboBox
            		client-side object and event argument of the newly checked item.
            	</para>
            	<para>
            		The event can be cancelled - simply call
            		<strong> args.set_cancel(true); </strong>
            		from the event handler and the item will not be changed.
            	</para>
            </remarks>
            <example>
            	<code lang="JScript">
            &lt;script type="text/javascript"&gt;               
                function onClientIndexChecking(sender, eventArgs)
                {
            		var item = eventArgs.get_item();
                    if (item.get_text() == "LA")
                    {
                        // do not allow checking an item with text "LA"   
                        return false; 
                    }
                    else
                    {
                        // alert the new item text and value.
                        alert(item.get_text() + ":" + item.get_value());
                    }
                }                        
            &lt;/script&gt;
             
            &lt;telerik:radcombobox ID="RadComboBox1" runat="server" 
                  OnClientIndexChecking="onClientIndexChecking"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBox.OnClientItemChecked">
            <summary>
            The client-side event that is fired after a RadComboBox item has  
            been checked.
            </summary>
            <remarks>
            The event handler receives two parameters: the instance of of the combobox
            client-side object and event argument with the newly checked item.
            </remarks>
            <example>
            	<code lang="JScript">
            &lt;script language="javascript"&gt;               
                function onClientItemChecked(sender,eventArgs)
                {        
                        var item = eventArgs.get_item();
                        // alert the new item text and value.
                        alert(item.get_text() + ":" + item.get_value());
                }                        
            &lt;/script&gt;
             
            &lt;telerik:radcombobox ID="RadComboBox1" runat="server" 
                  OnClientItemChecked="onClientItemChecked"&gt;
            &lt;/telerik:radcombobox&gt;
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxCheckedItemsTexts">
            <summary>
            The Telerik.Web.UI.RadComboBoxCheckedItemsTexts enumeration supports two values - DisplayAllInInput and FitInInput. Default is FitInInput.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxExpandDirection">
            <summary>
            The Telerik.Web.UI.RadComboBoxExpandDirection enumeration supports two values - Up and Down.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ODataEntitySet.#ctor">
            <summary>
            A container (collection) class for Entities of the same type.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ODataEntitySet.#ctor(System.String,System.String)">
             <summary>
             A container (collection) class for Entities of the same type.
             </summary>
             <param name="name">The name of the EntityCollection</param>
             <param name="type"><see cref="T:Telerik.Web.UI.ODataEntityType"/> that is contained</param>
             <remarks>
             A typical exaple is the Name of the collection to be the plural of the EntityType. For
             example EntityType Category is often mapped to a container called Categories.
             </remarks>
             <example>
             <code lang="JScript">
               &lt;telerik:RadMenu runat="server" ID="RadTreeView2" PersistLoadOnDemandItems="true" &gt;
                    &lt;WebServiceSettings Path="http://services.odata.org/OData/OData.svc"&gt;
            	        &lt;ODataSettings ResponseType="JSONP" InitialContainerName="Categories"&gt;
            		        &lt;Entities&gt;
            			        &lt;telerik:ODataEntityType Name="Category" DataValueField="ID" DataTextField="Name" NavigationProperty="Products" /&gt;
            			        &lt;telerik:ODataEntityType Name="Product" DataValueField="ID" DataTextField="Name" /&gt;
            		        &lt;/Entities&gt;
            		        &lt;EntityContainer&gt;
            			        &lt;telerik:ODataEntitySet  EntityType="Category" Name="Categories" /&gt;
            			        &lt;telerik:ODataEntitySet  EntityType="Product" Name="Products"  /&gt;
            		        &lt;/EntityContainer&gt;
            	        &lt;/ODataSettings&gt;
                    &lt;/WebServiceSettings&gt;
                    &lt;DataBindings&gt;
            	        &lt;telerik:RadMenuItemBinding ExpandMode="WebService" /&gt;
                    &lt;/DataBindings&gt;
               &lt;/telerik:RadMenu&gt;
            </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntitySet.Name">
            <summary>
            The name of the Entity Collection.
            </summary>
            <remarks>
            It is necessery that the Name property matches completely the
            NavigateProperty (if set) on the <see cref="T:Telerik.Web.UI.ODataEntityType"/>
            contained by the collection.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntitySet.EntityType">
            <summary>
            <see cref="T:Telerik.Web.UI.ODataEntityType"/> that is hold by the collection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntityType.DataValueField">
            <summary>
            Specifies the field of the OData entity that provides the value of each list item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntityType.DataTextField">
            <summary>
            Specifies the field of the OData entity that provides the text of each list item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntityType.NavigationProperty">
            <summary>
            Specifies a navigation property. This is a property of an Entry that represents a Link from the Entry to one or more related Entries. 
            A Navigation Property is not a structural part of the Entry it belongs to.
            </summary>
            <remarks>
            
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ODataEntityType.Name">
            <summary>
            The name of the Entity type.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ODataProperty.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.ODataProperty.Name">
            <summary>
            	Gets or sets the name of the Property to be requested
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ODataSettings">
            <summary>
            Represents the settings to be used for OData databinding.
            </summary>
            
        </member>
        <member name="M:Telerik.Web.UI.ODataSettings.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.ODataSettings.ResponseType">
            <summary>
            	Gets or sets the url of the web service to be used
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataSettings.InitialContainerName">
            <summary>
            	Gets or sets the initial collection to bind against
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataSettings.Entities">
            <summary>
            Desrcibes the Entities, that the WebService can return. These are usually declared in
            the http://webserviceurl/$metadata metadata document. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ODataSettings.EntityContainer">
            <summary>
            Maps Entities to a Containers (Collectons). 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IdentifierValidator">
            <summary>
            Code taken from System.CodeDom.Compiler.CodeGenerator as the latter does not work in Medium trust
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dialogs.UserControlBase.ShouldRegisterCssReferences">
            <summary>
            This control has no skin! This property will prevent the SkinRegistrar from
            registering the missing CSS references.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dialogs.UserControlBase.Language">
            <summary>
            Gets or sets a string containing the localization language for the RadEditor UI
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dialogs.UserControlBase.ExternalDialogsPath">
            <summary>
            Gets or sets a value indicating where the editor will look for its dialogs.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadEditorDialogs/".
            </value>
            <remarks>
            	<para>If specified, the <strong>ExternalDialogsPath</strong>
            		property will allow you to customize and load the editor dialogs from normal ASCX files.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Dialogs.UserControlBase.LocalizationPath">
            <summary>
            Gets or sets a value indicating where the control will look for its .resx localization files.
            By default these files should be in the App_GlobalResources folder. However, if you cannot put
            the resource files in the default location or .resx files compilation is disabled for some reason
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource files.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadEditorResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the control localization files from any location in the
            web application.</para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PrintElement">
            <summary>
            Exposes various printer-related options.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PrintElement.FitHeight">
            <summary>
            Specifies the number of pages to spread the height of a print area across.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PrintElement.PaperSize">
            <summary>
            Specifies the paper size.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.Quantizer.InitialQuantizePixel(Telerik.Web.UI.ImageEditor.Quantizer.Color32)">
            <summary>
            Override this to process the pixel in the first pass of the algorithm
            </summary>
            <param name="pixel">The pixel to quantize</param>
            <remarks>
            This function need only be overridden if your quantize algorithm needs two passes,
            such as an Octree quantizer.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.Quantizer.QuantizePixel(Telerik.Web.UI.ImageEditor.Quantizer.Color32)">
            <summary>
            Override this to process the pixel in the second pass of the algorithm
            </summary>
            <param name="pixel">The pixel to quantize</param>
            <returns>The quantized value</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.Quantizer.GetPalette(System.Drawing.Imaging.ColorPalette)">
            <summary>
            Retrieve the palette for the quantized image
            </summary>
            <param name="original">Any old palette, this is overrwritten</param>
            <returns>The new color palette</returns>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.Quantizer.Color32">
            <summary>
            Struct that defines a 32 bpp colour
            </summary>
            <remarks>
            This struct is used to read data from a 32 bits per pixel image
            in memory, and is ordered in this manner as this is the way that
            the data is layed out in memory
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.Blue">
            <summary>
            Holds the blue component of the colour
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.Green">
            <summary>
            Holds the green component of the colour
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.Red">
            <summary>
            Holds the red component of the colour
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.Alpha">
            <summary>
            Holds the alpha component of the colour
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.ARGB">
            <summary>
            Permits the color32 to be treated as an int32
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.Quantizer.Color32.Color">
            <summary>
            Return the color for this Color32 object
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.#ctor(System.Int32,System.Int32)">
            <summary>
            Construct the octree quantizer
            </summary>
            <remarks>
            The Octree quantizer is a two pass algorithm. The initial pass sets up the octree,
            the second pass quantizes a color based on the nodes in the tree
            </remarks>
            <param name="maxColors">The maximum number of colors to return</param>
            <param name="maxColorBits">The number of significant bits</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.#ctor(System.Int32)">
            <summary>
            Construct the octree
            </summary>
            <param name="maxColorBits">The maximum number of significant bits in the image</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.AddColor(Telerik.Web.UI.ImageEditor.Quantizer.Color32)">
            <summary>
            Add a given color value to the octree
            </summary>
            <param name="pixel"></param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.Reduce">
            <summary>
            Reduce the depth of the tree
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.ReducibleNodes">
            <summary>
            Return the array of reducible nodes
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.TrackPrevious(Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode)">
            <summary>
            Keep track of the previous node that was quantized
            </summary>
            <param name="node">The node last quantized</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.Palletize(System.Int32)">
            <summary>
            Convert the nodes in the octree to a palette with a maximum of colorCount colors
            </summary>
            <param name="colorCount">The maximum number of colors</param>
            <returns>An arraylist with the palettized colors</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.GetPaletteIndex(Telerik.Web.UI.ImageEditor.Quantizer.Color32)">
            <summary>
            Get the palette index for the passed color
            </summary>
            <param name="pixel"></param>
            <returns></returns>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.mask">
            <summary>
            Mask used when getting the appropriate pixels for a given node
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._root">
            <summary>
            The root of the octree
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._leafCount">
            <summary>
            Number of leaves in the tree
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._reducibleNodes">
            <summary>
            Array of reducible nodes
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._maxColorBits">
            <summary>
            Maximum number of significant bits in the image
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._previousNode">
            <summary>
            Store the last node quantized
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree._previousColor">
            <summary>
            Cache the previous color quantized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.Leaves">
            <summary>
            Get/Set the number of leaves in the tree
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode">
            <summary>
            Class which encapsulates each node in the tree
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.#ctor(System.Int32,System.Int32,Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree)">
            <summary>
            Construct the node
            </summary>
            <param name="level">The level in the tree = 0 - 7</param>
            <param name="colorBits">The number of significant color bits in the image</param>
            <param name="octree">The tree to which this node belongs</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.AddColor(Telerik.Web.UI.ImageEditor.Quantizer.Color32,System.Int32,System.Int32,Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree)">
            <summary>
            Add a color into the tree
            </summary>
            <param name="pixel">The color</param>
            <param name="colorBits">The number of significant color bits</param>
            <param name="level">The level in the tree</param>
            <param name="octree">The tree to which this node belongs</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.Reduce">
            <summary>
            Reduce this node by removing all of its children
            </summary>
            <returns>The number of leaves removed</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.ConstructPalette(System.Collections.ArrayList,System.Int32@)">
            <summary>
            Traverse the tree, building up the color palette
            </summary>
            <param name="palette">The palette</param>
            <param name="paletteIndex">The current palette index</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.GetPaletteIndex(Telerik.Web.UI.ImageEditor.Quantizer.Color32,System.Int32)">
            <summary>
            Return the palette index for the passed color
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.Increment(Telerik.Web.UI.ImageEditor.Quantizer.Color32)">
            <summary>
            Increment the pixel count and add to the color information
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._leaf">
            <summary>
            Flag indicating that this is a leaf node
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._pixelCount">
            <summary>
            Number of pixels in this node
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._red">
            <summary>
            Red component
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._green">
            <summary>
            Green Component
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._blue">
            <summary>
            Blue component
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._children">
            <summary>
            Pointers to any child nodes
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._nextReducible">
            <summary>
            Pointer to next reducible node
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode._paletteIndex">
            <summary>
            The index of this node in the palette
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.OctreeQuantizer.Octree.OctreeNode.NextReducible">
            <summary>
            Get/Set the next reducible node
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.ToolBarPosition">
            <summary>
            Specifies the position of the Toolbar relative to the edited content (content area).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarPosition.Top">
            <summary>
            The Toolbar is rendered above the content area.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarPosition.Right">
            <summary>
            The Toolbar is rendered to the right of the content area.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarPosition.Bottom">
            <summary>
            The Toolbar is rendered below the content area.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarPosition.Left">
            <summary>
            The Toolbar is rendered to the left of the content area.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.ToolBarMode">
            <summary>
            Specifies the Toolbar behavior of the RadImageEditor control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarMode.Default">
            <summary>
            The Toolbar is attached to the ImageEditor control. In this mode the Toolbar is static and can't be moved.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.ToolBarMode.Docked">
            <summary>
            The Toolbar is rendered within a dock and can be docked into one of the 4(four) zones available,
            or left undocked anywhere on the page.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.FileManagerDialogConfiguration">
            <summary>
            Encapsulates the properties used for FileBrowser dialog management.
            </summary>
            <remarks>
            The <strong>FileManagerDialogConfiguration</strong> members are passed in a secure manner to
            the respective dialogs using the <see cref="T:Telerik.Web.UI.DialogParameters">DialogParameters</see>
            collection of the editor.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.ViewPaths">
            <summary>
            Gets or sets the view paths of the FileManager dialog.
            </summary>
            <value>
            A <see cref="T:System.String">String</see> array, containing virtual paths which subfolders and files
            the FileManager dialog will search and display. The default value is an empty String array.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.UploadPaths">
            <summary>
            Gets or sets the upload paths of the FileManager dialog.
            </summary>
            <value>
            A <see cref="T:System.String">String</see> array, containing virtual paths to which files
            can be uploaded or subfolders can be created. The default value is an empty String array.
            </value>
            <remarks>
            As only files/folders, contained in the <see cref="P:Telerik.Web.UI.FileManagerDialogConfiguration.ViewPaths">ViewPaths</see>
            array will be displayed, users are able to upload files/create subfolders only
            to folders, belonging to the intersection of the <see cref="P:Telerik.Web.UI.FileManagerDialogConfiguration.ViewPaths">ViewPaths</see> and
            <strong>UploadPaths</strong> properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.DeletePaths">
            <summary>
            Gets or sets the delete paths of the FileManager dialog.
            </summary>
            <value>
            A <see cref="T:System.String">String</see> array, containing virtual paths in which files or
            subdirectories can be deleted. The default value is an empty String array.
            </value>
            <remarks>
            As only files/folders, contained in the <see cref="P:Telerik.Web.UI.FileManagerDialogConfiguration.ViewPaths">ViewPaths</see>
            array will be displayed, users are able to delete only the files/folders,
            belonging to the intersection of the <see cref="P:Telerik.Web.UI.FileManagerDialogConfiguration.ViewPaths">ViewPaths</see> and
            <strong>UploadPaths</strong> properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.SearchPatterns">
            <summary>
            Gets or sets the extension patterns for files to be displayed in the FileManager dialog.
            </summary>
            <value>
            A <see cref="T:System.String">String</see> array, containing extension patterns for
            files to be displayed in the FileManager dialog.
            </value>
            <remarks>
            Values can contain wildcars (e.g. <strong>*.*</strong>, <strong>*.j?g</strong>)
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.MaxUploadFileSize">
            <summary>
            Gets or sets the max filesize which users are able to upload in bytes
            </summary>
            <value>
            An <see cref="T:System.Int32">Int32</see>, representing the max filesize which users are able
            to upload in bytes.
            </value>
            <remarks>
            The value of the MaxUploadFileSize property should be less or equal
            to the &lt;httpRuntime <strong>maxRequestLength</strong>...&gt; website property, specified in either
            the web.config or machine.config files. The &lt;httpRuntime <strong>maxRequestLength</strong>...&gt;
            property controls the allowed post request length for the website.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.ContentProviderTypeName">
            <summary>
            Gets or sets the fully qualified type name of the FileBrowserContentProvider used in the dialog,
            including the assembly name, version, culture, public key token.
            </summary>
            <value>
            	The default value is <strong>string.Empty</strong>
            </value>
            <remarks>
            When the value of this property is string.Empty (default), the dialog will use the integrated 
            FileSystemContentProvider.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.FileManagerDialogConfiguration.FileBrowserContentProviderType">
            <summary>
            This property gets the current content provider type. To set the content provider type use <see cref="P:Telerik.Web.UI.FileManagerDialogConfiguration.ContentProviderTypeName">ContentProviderTypeName</see>
            </summary>
            <remarks> 
            If no provider is set, this property will return the default <see cref="T:Telerik.Web.UI.Widgets.FileSystemContentProvider">FileSystemContentProvider</see>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.ImageManagerConfiguration.EnableContentProvider">
            <summary>
            Gets or sets a bool value that indicates whether the ImageEditor uses the specified ContentProvider to load and save the edited image.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ControlItemData">
            <summary>
            	Data class used for transferring control items (menu items, tree nodes, etc.)
            	from and to web services.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ControlItemData.#ctor">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ControlItemData.Text">
            <summary>
            Text for the item to pass to the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemData.Value">
            <summary>
            Value for the item to pass to the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemData.Enabled">
            <summary>
            A value indicating if the item to pass to the client is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ControlItemData.Attributes">
            <summary>
            Custom attributes for the item to pass to the client.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBox">
            <summary>
            RadListBox is a flexible listbox control with the some unique features:
            <list>
            <item>
            	Rich and highly customizable UI for item transfer, delete and reordering. 
            </item>
            <item>
            	Drag and drop support. Items can be reordered or transferred via drag and drop.
            </item>
            <item>
            	Automatic update of the underlying data source during reorder, transfer or delete.
            </item>
            <item>
            	Checkbox support
            </item>
            <item>
            	All features supported by the built-in ListBox control.
            </item>
            </list>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Loads the posted content of the list control, if it is different from the last posting.
            </summary>
            <param name="postDataKey">The key identifier for the control, used to index the postCollection.</param>
            <param name="postCollection">A <seealso cref="T:System.Collections.Specialized.NameValueCollection"/> that contains value information indexed by control identifiers.</param>
            <returns>true if the posted content is different from the last posting; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.RaisePostDataChangedEvent">
            <summary>
            Invokes the <see cref="M:Telerik.Web.UI.RadListBox.OnSelectedIndexChanged(System.EventArgs)"/> method whenever posted data for the RadListBox control has changed.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.SetPostDataSelection(System.Int32)">
            <summary>
            Sets the <see cref="P:Telerik.Web.UI.RadListBoxItem.Selected"/> property of a <see cref="T:Telerik.Web.UI.RadListBoxItem"/> after a page is posted back.
            </summary>
            <param name="selectedIndex">The index of the Item to select in the <see cref="P:Telerik.Web.UI.RadListBox.Items"/> collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.LoadContentFile(System.String)">
            <summary>
            Populates the <see cref="T:Telerik.Web.UI.RadListBox"/> control from an XML file
            </summary>
            <param name="xmlFileName">Name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Delete(Telerik.Web.UI.RadListBoxItem)">
            <summary>
            Deletes the specified item. Fires the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> and <see cref="E:Telerik.Web.UI.RadListBox.Deleted"/> events.
            </summary>
            <param name="item">The item which should be deleted.</param>
            <remarks>
            The Delete method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Delete(System.Collections.Generic.IList{Telerik.Web.UI.RadListBoxItem})">
            <summary>
            Deletes the specified list of items. Fires the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> and <see cref="E:Telerik.Web.UI.RadListBox.Deleted"/> events.
            </summary>
            <param name="items">The list of items which should be deleted.</param>
            <remarks>
            The Delete method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            This example demonstrates how to programmatically delete the selected items.
            <code lang="CS">
            RadListBox1.Delete(RadListBox1.SelectedItems);
            </code>
            <code lang="VB">
            RadListBox1.Delete(RadListBox1.SelectedItems)
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Transfer(System.Collections.Generic.IList{Telerik.Web.UI.RadListBoxItem},Telerik.Web.UI.RadListBox,Telerik.Web.UI.RadListBox)">
            <summary>
            Transfers the specified list of items from the source to the destination listbox. Fires the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> and <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/> events.
            </summary>
            <param name="itemsToTransfer">The items to transfer.</param>
            <param name="sourceListBox">The source list box.</param>
            <param name="destinationListBox">The destination list box.</param>
            <remarks>
            Always call the Transfer method of the RadListBox whose <see cref="P:Telerik.Web.UI.RadListBox.TransferToID"/> property is set!
            The Transfer method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            <code lang="CS">
            RadListBox1.TransferToID = "RadListBox2";
            //Transfers all items of RadListBox1 to RadListBox2
            RadListBox1.Transfer(RadListBox1.Items, RadListBox1, RadListBox2); 
            //Transfers all items of RadListBox2 to RadListBox1. Notice that we do not use RadListBox2.Transfer
            RadListBox1.Transfer(RadListBox2.Items, RadListBox2, RadListBox1); 
            </code>
            <code lang="VB">
            RadListBox1.TransferToID = "RadListBox2"
            'Transfers all items of RadListBox1 to RadListBox2
            RadListBox1.Transfer(RadListBox1.Items, RadListBox1, RadListBox2)
            'Transfers all items of RadListBox2 to RadListBox1. Notice that we do not use RadListBox2.Transfer
            RadListBox1.Transfer(RadListBox2.Items, RadListBox2, RadListBox1); 
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Transfer(Telerik.Web.UI.RadListBoxItem,Telerik.Web.UI.RadListBox,Telerik.Web.UI.RadListBox)">
            <summary>
            Transfers the specified item from the source list box to the destination listbox.
            Fires the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> and <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/> events.
            </summary>
            <param name="item">The item to transfer.</param>
            <param name="sourceListBox">The source list box.</param>
            <param name="destinationListBox">The destination list box.</param>
            <remarks>
            Always call the Transfer method of the RadListBox whose <see cref="P:Telerik.Web.UI.RadListBox.TransferToID"/> property is set!
            The Transfer method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            The following example demonstrates how to use the Transfer method
            <code lang="CS">
            RadListBox1.TransferToID = "RadListBox2";
            //Transfers the first item of RadListBox1 to RadListBox2
            RadListBox1.Transfer(RadListBox1.Items[0], RadListBox1, RadListBox2); 
            //Transfers the first item of RadListBox2 to RadListBox1. Notice that we do not use RadListBox2.Transfer
            RadListBox1.Transfer(RadListBox2.Items[0], RadListBox2, RadListBox1); 
            </code>
            <code lang="VB">
            RadListBox1.TransferToID = "RadListBox2"
            'Transfers the first item of RadListBox1 to RadListBox2
            RadListBox1.Transfer(RadListBox1.Items(0), RadListBox1, RadListBox2)
            'Transfers the first item of RadListBox2 to RadListBox1. Notice that we do not use RadListBox2.Transfer
            RadListBox1.Transfer(RadListBox2.Items(0), RadListBox2, RadListBox1); 
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Reorder(System.Int32,System.Int32)">
            <summary>
            Moves the item at old index to new index by calculating the offset.
            Fires the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> and <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> events.
            </summary>
            <param name="oldIndex">The old (current) index of the item.</param>
            <param name="newIndex">The new index of the item.</param>
            <remarks>
            The Reorder method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            <code lang="CS">
            //Reorder the first item to second place
            RadListBox1.Reorder(0, 1);
            </code>
            <code lang="VB">
            'Reorder the first item to second place
            RadListBox1.Reorder(0, 1)
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.ReorderToIndex(System.Int32,System.Int32)">
            <summary>
            Moves the item at old index to new index.
            Fires the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> and <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> events.
            </summary>
            <param name="oldIndex">The old (current) index of the item.</param>
            <param name="newIndex">The new index of the item.</param>
            <remarks>
            The ReorderToIndex method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            <code lang="CS">
            //Reorder the first item to second place
            RadListBox1.ReorderToIndex(0, 1);
            </code>
            <code lang="VB">
            'Reorder the first item to second place
            RadListBox1.ReorderToIndex(0, 1)
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.Reorder(System.Collections.Generic.IList{Telerik.Web.UI.RadListBoxItem},System.Int32)">
            <summary>
            Reorders the specified items with the specified offset.
            Fires the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> and <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> events.
            </summary>
            <param name="items">The items.</param>
            <param name="offset">The offset.</param>
            <remarks>
            he Reorder method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            <code lang="CS">
            //Move all selected items with one position down
            RadListBox1.Reorder(RadListBox1.SelectedItems, 1);
            </code>
            <code lang="VB">
            'Move all selected items with one position down
            RadListBox1.Reorder(RadListbox1.SelectedItems, 1)
            </code>
            </example>		
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.ReorderToIndex(System.Collections.Generic.IList{Telerik.Web.UI.RadListBoxItem},System.Int32)">
            <summary>
            Reorders the specified items to the specified index.
            Fires the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> and <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> events.
            </summary>
            <param name="items">The items.</param>
            <param name="targetIndex">The target index.</param>
            <remarks>
            The ReorderToIndex method updates the underlying datasource if the <see cref="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates"/> is set to <c>true</c>.
            </remarks>
            <example>
            <code lang="CS">
            //Move all selected items (first and second) to an index below them.
            RadListBox1.ReorderToIndex(RadListBox1.SelectedItems, 3);
            </code>
            <code lang="VB">
            'Move all selected items (first and second) to an index below them.
            RadListBox1.Reorder(RadListbox1.SelectedItems, 3)
            </code>
            </example>	
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.FindItem(System.Predicate{Telerik.Web.UI.RadListBoxItem})">
            <summary>
            Finds the first item for which the specified predicate returns <c>true</c>.
            </summary>
            <param name="predicate">The predicate which will test all items.</param>
            <returns>
            The first item for which the specified predicate returns <c>true</c>. Null (Nothing) is returned if no item matches.
            </returns>
            <example>
            The following example demonstrates how to use the FindItem method to find the first item whose <see cref="P:Telerik.Web.UI.ControlItem.Text"/> starts with "A"
            <code lang="CS">
            RadListBoxItem item = RadListBox1.FindItem(delegate(RadListBoxItem currentItem) {
            	return currentItem.Text.StartsWith("A");
            });
            </code>
            <code lang="VB">
            Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            	RadListBox1.FindItem(AddressOf Find)
            End Sub
            Public Function Find(ByVal currentItem As RadListBoxItem) As Boolean
            	Find = currentItem.Text.StartsWith("A")
            End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.FindItemByText(System.String)">
            <summary>
            Finds the first item whose <see cref="P:Telerik.Web.UI.ControlItem.Text"/> property is the same as the specified text.
            </summary>
            <param name="text">The text to search for.</param>
            <returns>
            The first item whose <see cref="P:Telerik.Web.UI.ControlItem.Text"/> property is the same as the specified text. Null (Nothing) otherwise.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.FindItemByValue(System.String)">
            <summary>
            Finds the first item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value.
            </summary>
            <param name="value">The value to search for.</param>
            <returns>
            The first item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value. Null (Nothing) otherwise.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.ClearSelection">
            <summary>
            Clears the selection. The <see cref="P:Telerik.Web.UI.RadListBoxItem.Selected"/> property of all items is set to <c>false</c>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.ClearChecked">
            <summary>
            Clears the checked items. The <see cref="P:Telerik.Web.UI.RadListBoxItem.Checked"/> property of all items is set to <c>false</c>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.GetSelectedIndices">
            <summary>
            Gets an array containing the indices of the currently selected items in the RadListBox control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.GetCheckedIndices">
            <summary>
            Gets an array containing the indices of the currently checked items in the RadListBox control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.FindItemIndexByValue(System.String)">
            <summary>
            Finds the index of the item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value.
            </summary>
            <param name="value">The value.</param>
            <returns>
            The index of the item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value. -1 if no item is found.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.FindItemIndexByValue(System.String,System.Boolean)">
            <summary>
            Finds the index of the item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value.
            </summary>
            <param name="value">The value.</param>
            <param name="ignoreCase">if set to <c>true</c> case insensitive comparison is made.</param>
            <returns>
            The index of the item whose <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property is the same as the specified value. -1 if no item is found.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.SortItems">
            <summary>Sorts the items in the <strong>RadListBox</strong>.
            </summary>
            <example>
            <code lang="VB" title="[New Example]">
            RadListBox1.Sort=RadListBoxSort.Ascending
            RadListBox1.SortItems()
            </code>
            <code lang="CS" title="[New Example]">
            RadListBox1.Sort=RadListBoxSort.Ascending;
            RadListBox1.SortItems();
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnUpdating(Telerik.Web.UI.RadListBoxUpdatingEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Updating"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxUpdatingEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnUpdated(Telerik.Web.UI.RadListBoxEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Updated"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnTransferred(Telerik.Web.UI.RadListBoxTransferredEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxTransferredEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnTransferring(Telerik.Web.UI.RadListBoxTransferringEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxTransferringEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnInserted(Telerik.Web.UI.RadListBoxEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Inserted"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnInserting(Telerik.Web.UI.RadListBoxInsertingEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Inserting"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxInsertingEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnReordered(Telerik.Web.UI.RadListBoxEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnReordering(Telerik.Web.UI.RadListBoxReorderingEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxReorderingEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnDropping(Telerik.Web.UI.RadListBoxDroppingEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Dropping"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxDroppingEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnDropped(Telerik.Web.UI.RadListBoxDroppedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.Dropped"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxDroppedEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnItemDataBound(Telerik.Web.UI.RadListBoxItemEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.ItemDataBound"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxItemEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnItemCreated(Telerik.Web.UI.RadListBoxItemEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.ItemCreated"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadListBoxItemEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnItemCheck(Telerik.Web.UI.RadListBoxItemEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.ItemCheck"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnSelectedIndexChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.SelectedIndexChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBox.OnTextChanged(System.EventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListBox.TextChanged"/> event.
            </summary>
            <param name="e">The <see cref="T:System.EventArgs"/> instance containing the event data.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowAutomaticUpdates">
            <summary>
            Gets or sets a value indicating whether to update the underlying datasource after postback caused by reorder, delete or transfer.
            </summary>
            <value>
            	<c>true</c> if the datasource should be update; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
            <remarks>
            Automatic updates require postback so the <see cref="P:Telerik.Web.UI.RadListBox.AutoPostBackOnDelete"/>, <see cref="P:Telerik.Web.UI.RadListBox.AutoPostBackOnReorder"/> or
            <see cref="P:Telerik.Web.UI.RadListBox.AutoPostBackOnTransfer"/> should be set to <c>true</c> depending on the requirements.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.DataKeys">
            <summary>
            Gets a <see cref="T:System.Web.UI.WebControls.DataKeyCollection"/> object that stores the key values of each record.
            </summary>
            <value>The data keys.</value>
            <seealso cref="P:Telerik.Web.UI.RadListBox.DataKeyField"/>
            <remarks>
            The DataKeys property is populated after databinding if the <see cref="P:Telerik.Web.UI.RadListBox.DataKeyField"/> property is set.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AutoPostBackOnDelete">
            <summary>
            Gets or sets a value indicating whether RadListBox should post back after delete. 
            </summary>
            <value>
            	<c>true</c> if RadListBox should postback after delete; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AutoPostBackOnTransfer">
            <summary>
            Gets or sets a value indicating whether RadListBox should post back after transfer. 
            </summary>
            <value>
            	<c>true</c> if RadListBox should postback after transfer; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AutoPostBackOnReorder">
            <summary>
            Gets or sets a value indicating whether RadListBox should post back after reorder.
            </summary>
            <value>
            	<c>true</c> if RadListBox should postback after reorder; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.TransferMode">
            <summary>
            Gets or sets the transfer mode used for transfer operations.
            </summary>
            <value>The transfer mode. The default value is <see cref="F:Telerik.Web.UI.ListBoxTransferMode.Move"/></value>
            <remarks>
            If the TransferMode property is set to <see cref="F:Telerik.Web.UI.ListBoxTransferMode.Move"/> the items would be deleted from the source listbox before
            inserting them in the destination listbox. The TransferMode property of the listbox whose <see cref="P:Telerik.Web.UI.RadListBox.TransferToID"/> property is set is taken into account.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowTransferOnDoubleClick">
            <summary>
            Gets or sets a value indicating whether the double click on a item causes transfer
            </summary>
            <value>
            	<c>true</c> if the user should be able to transfer items with double click; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowTransferDuplicates">
            <summary>
            Gets or sets a value indicating whether the user can transfer the same item more than once.
            </summary>
            <remarks>
            The property should only be used together with SelectionType="Copy"
            </remarks>
            <value>
            	<c>true</c> if the user should be able to transfer the same item more than once; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.TransferToListBox">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.RadListBox"/> which the current list box is configured to transfer to via the <see cref="P:Telerik.Web.UI.RadListBox.TransferToID"/> property.
            </summary>
            <value>
            	The transfer to list box. null (Nothing) if the <see cref="P:Telerik.Web.UI.RadListBox.TransferToID"/> property is not set.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.TransferToID">
            <summary>
            Gets or sets the ID of the <see cref="T:Telerik.Web.UI.RadListBox"/> which the current listbox should transfer to. 
            Set the TransferToID property only of one of the two listboxes which will transfer items between each other.
            </summary>
            <value>The ID of the target listbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.PersistClientChanges">
            <summary>
            Gets or sets a value indicating whether RadListBox should persist the changes that occurred client-side (reorder, transfer, delete) after postback.
            </summary>
            <value>
            	<c>true</c> if client-side changes should be persisted after postback; otherwise, <c>false</c>. The default value is <c>true</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.ButtonSettings">
            <summary>
            Used to customize the appearance and position of the buttons displayed by RadListBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowReorder">
            <summary>
            Gets or sets a value indicating whether RadListBox displays the reordering buttons.
            </summary>
            <value>
            	<c>true</c> if reordering UI is displayed; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowDelete">
            <summary>
            Gets or sets a value indicating whether RadListBox displays the delte button.
            </summary>
            <value>
            	<c>true</c> if delete button is displayed; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AllowTransfer">
            <summary>
            Gets or sets a value indicating whether RadListBox displays the transfer buttons.
            </summary>
            <value>
            	<c>true</c> if transfer UI is displayed; otherwise, <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically
            occurs when the user changes the <strong>RadListBox</strong> selection.
            </summary>
            <remarks>
            	<para>Set this property to <b>true</b> if the server needs to capture the selection
                as soon as it is made. For example, other controls on the Web page can be
                automatically filled depending on the user's selection from a list control.</para>
            	<para>This property can be used to allow automatic population of other controls on
                the Web page based on a user's selection from a list.</para>
            	<para>The value of this property is stored in view state.</para>
            	<para>
                    The server-side event that is fired is
                    <see cref="E:Telerik.Web.UI.RadListBox.SelectedIndexChanged">SelectedIndexChanged</see>.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.CheckedItems">
            <summary>
            Gets the currently checked items in the ListBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.EnableDragAndDrop">
            <summary>
            When set to true enables Drag-and-drop functionality
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.EmptyMessageTemplate">
            <summary>
            Gets or sets the <see cref="T:System.Web.UI.ITemplate"/> that defines the <see cref="T:Telerik.Web.UI.RadListBox"/> empty message template.
            </summary>
            <value>The item template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.HeaderTemplate">
            <summary>
            Gets or sets the <see cref="T:System.Web.UI.ITemplate"/> that defines the <see cref="T:Telerik.Web.UI.RadListBox"/> header template.
            </summary>
            <value>The header template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.FooterTemplate">
            <summary>
            Gets or sets the <see cref="T:System.Web.UI.ITemplate"/> that defines the <see cref="T:Telerik.Web.UI.RadListBox"/> footer template.
            </summary>
            <value>The footer template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.Header">
            <summary>
            Get a header of 
            <strong>RadListBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.Footer">
            <summary>
            Get a footer of 
            <strong>RadListBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.ItemTemplate">
            <summary>
            Gets or sets the <see cref="T:System.Web.UI.ITemplate"/> that defines how items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control are displayed.
            </summary>
            <value>The item template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.Items">
            <summary>
            Gets the items of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
            <value>The <see cref="T:Telerik.Web.UI.RadListBoxItemCollection"/> object which represents the items.</value>
            <remarks>
            You can use the Items property to add and remove items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </remarks>
            <seealso cref="T:Telerik.Web.UI.RadListBoxItemCollection"/>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SelectedIndex">
            <summary>
            Gets or sets the selected index of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
            <value>The index that should be selected.</value>
            <remarks>
            Set the selected index to -1 to clear the selection.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SelectedItem">
            <summary>
            Gets the currently selected Item in the ListBox.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.RadListBoxItem"/> which is currently selected. Null (Nothing) if there is no selected item (<see cref="P:Telerik.Web.UI.RadListBox.SelectedIndex"/> is -1).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SelectedItems">
            <summary>
            Gets the currently selected items in the ListBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SelectedValue">
            <summary>
            Gets the <see cref="P:Telerik.Web.UI.ControlItem.Value"/> of the selected item.
            When set selects the item with matching <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SelectionMode">
            <summary>
            Gets or sets the Selection Mode of the RadListBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.Sort">
            <summary>
            Automatically sorts items alphabetically (based on the <strong>Text</strong>
            property) in ascending or descending order.
            </summary>
            <example>
            	<code lang="CS" title="[New Example]">
            RadListBox1.Sort = RadListBoxSort.Ascending;
             RadListBox1.Sort = RadListBoxSort.Descending;
             RadListBox1.Sort = RadListBoxSort.None;
                </code>
            	<code lang="VB" title="[New Example]">
            RadListBox1.Sort = RadListBoxSort.Ascending
             RadListBox1.Sort = RadListBoxSort.Descending
             RadListBox1.Sort = RadListBoxSort.None
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.SortCaseSensitive">
             <summary>
             Gets/sets whether the sorting will be case-sensitive or not.
            By default is set to true.
             </summary>
             <example>
             	<code lang="CS" title="[New Example]">
             RadListBox1.SortCaseSensitive = false;
             
                 </code>
             	<code lang="VB" title="[New Example]">
             RadListBox1.SortCaseSensitive = false
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.CheckBoxes">
            <summary>
            When set to true displays a checkbox next to each item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.ClientChanges">
            <summary>
            Gets a list of all client-side changes (adding an Item, removing an Item, changing an Item's property) which have occurred.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.DataKeyField">
            <summary>
            Gets or sets the key field in the data source. Usually this is the database column which denotes the primary key.
            </summary>
            <value>The name of the key field in the data source specified.</value>
            <remarks>
            DataKeyField is required for automatic data source updates during transfer, reorder and delete.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.DataSortField">
            <summary>
            Gets or sets the sort field in the data source. The sort field must be of numeric type.
            </summary>
            <value>The name of the sort field in the data source specified.</value>
            <remarks>
            DataSortField is required for automatic data source updates during reorder.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.LoadingPanelID">
            <summary>
            The ID of the RadAjaxLoadingPanel to be displayed during LOD
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items.
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadListBox.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public RadListBoxItemData[] WebServiceMethodName(object context)
            			{
            				// We cannot use a dictionary as a parameter, because it is only supported by script services.
            				// The context object should be cast to a dictionary at runtime.
            				IDictionary&lt;string, object&gt; contextDictionary = (IDictionary&lt;string, object&gt;) context;
            				
            				//...
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Updating">
            <summary>
            Occurs when items's sort order is updated during the reordering.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Updated">
            <summary>
            Occurs when items's sort order is updated during the reordering.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Deleted">
            <summary>
            Occurs when items are deleted.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Deleting">
            <summary>
            Occurs when items are deleted.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Transferred">
            <summary>
            Occurs when item is transferred.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Transferring">
            <summary>
            Occurs when item is transferred. Can be cancelled by setting the <see cref="P:Telerik.Web.UI.RadListBoxTransferringEventArgs.Cancel"/> property to <c>true</c>.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Inserted">
            <summary>
            Occurs when item is inserted.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Inserting">
            <summary>
            Occurs when item is inserted. Can be cancelled by setting the <see cref="P:Telerik.Web.UI.RadListBoxInsertingEventArgs.Cancel"/> property to <c>true</c>.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Reordered">
            <summary>
            Occurs when item is reordered.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Reordering">
            <summary>
            Occurs when item is reordered. Can be cancelled by setting the <see cref="P:Telerik.Web.UI.RadListBoxReorderingEventArgs.Cancel"/> property to <c>true</c>.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Dropping">
            <summary>
            Occurs before drag and drop
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.Dropped">
            <summary>
            Occurs after drag and drop
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.ItemDataBound">
            <summary>
            Occurs when item is data bound.
            </summary>
            <remarks>
            Use the ItemDataBound event to set additional properties of the databound items.
            </remarks>
            <example>
            <code lang="CS">
            protected void RadListBox1_ItemDataBound(object sender, RadListBoxItemEventArgs e)
            {
                e.Item.ToolTip = (string)DataBinder.Eval(e.Item.DataItem, "ToolTipColumn");
            }
            </code>
            <code lang="VB">
            Protected Sub RadListBox1_ItemDataBound(sender As Object, e As RadListBoxItemEventArgs)
            	e.Item.ToolTip = DirectCast(DataBinder.Eval(e.Item.DataItem, "ToolTipColumn"), String)
            End Sub
            </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.ItemCreated">
            <summary>
            Occurs when item is created.
            </summary>
            <remarks>
            The ItemCreated event occurs before <see cref="E:Telerik.Web.UI.RadListBox.ItemDataBound"/> and after postback if ViewState is enabled. 
            ItemCreated is not raised for items defined inline in the ASPX.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.TemplateNeeded">
            <summary>Occurs before template is being applied to the item.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the item, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for items
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property of the items. 
                <code lang="CS">
            		 protected void RadListBox1_TemplateNeeded(object sender, Telerik.Web.UI.RadListBoxItemEventArgs e)
            		 {
            		    string value = e.Item.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              textBoxTemplate.InstantiateIn(e.Item);        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadListBox1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadListBoxItemEventArgs) Handles RadListBox1.TemplateNeeded
                         Dim value As String = e.Item.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 textBoxTemplate.InstantiateIn(e.Item)
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.ItemCheck">
            <summary>
            Occurs when an item is checked
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.SelectedIndexChanged">
            <summary>
            Occurs when the selected index has changed.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListBox.TextChanged">
            <summary>
            Occurs when text was changed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemsRequesting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadListBOx</strong> is about to be populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemRequestingHandler(sender, eventArgs)<br/>
                {<br/>
            		var context = eventArgs.get_context();<br/>
            		context["Parameter1"] = "Value";<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadListBox ID="RadListBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemPopulating="onClientItemPopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadListBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequesting</strong> client-side event
                handler is called when the <strong>RadListBox</strong> is about to be populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the listBox   client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_context()</strong>, an user object that will be passed to the web service.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemsRequested">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadListBox</strong> items were just populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemsRequested(sender, eventArgs)<br/>
                {<br/>
            		alert("Loading finished");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadListBox ID="RadListBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemsRequested="onItemsRequested"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadListBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequested</strong> client-side event
                handler is called when the <strong>RadListBox</strong> items were just populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong>, null for this event.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemsRequestFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the <strong>RadListBox</strong> has failed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onItemsRequestFailed(sender, eventArgs)<br/>
                {<br/>
            		alert("Error: " + errorMessage);<br/>
            		eventArgs.set_cancel(true);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadListBox ID="RadListBox1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemsRequestFailed="onItemsRequestFailed"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadListBox&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemsRequestFailed</strong> client-side event
                handler is called when the operation for populating the <strong>RadListBox</strong> has failed.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>set_cancel()</strong>, set to true to suppress the default action (alert message).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemDataBound">
            <summary>
            Gets or sets the name of the JavaScript function called when an Item is created during Web Service Load on Demand.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemDoubleClicking">
            <summary>
            
            </summary>
            <remarks>
            
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemDoubleClicked">
            <summary>
            
            </summary>
            <remarks>
            
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientSelectedIndexChanging">
            <summary>
            Gets or sets the name of the JavaScript function which handles the selectedIndexChanging client-side event.
            </summary>
            <remarks>
            The selectedIndexChanging client-side event occurs when the selection changes.
            </remarks>
            <example>
            The selectedIndexChanging event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onSelectedIndexChanging(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientSelectedIndexChanged">
            <summary>
            Gets or sets the name of the JavaScript function which handles the selectedIndexChanged client-side event.
            </summary>
            <remarks>
            The selectedIndexChanged client-side event occurs when the selection changes.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            before the browser context panel shows (after right-clicking an item).
            </summary>
            <remarks>
            Use the<strong>OnClientContextMenu</strong> property to specify a JavaScript
            function that will be executed before the context menu shows after right clicking an
            item.
            </remarks>
            <example>
            <code>
            function onContextMenu(sender, args)
            {
               var item = args.get_item();
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemChecking">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemChecking client-side event.
            </summary>
            <remarks>
            The itemChecking event occurs when the item is checked. 
            </remarks>
            <example>
            The itemChecking event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onItemChecking(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientItemChecked">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemChecked client-side event.
            </summary>
            <remarks>
            The itemChecked event occurs when the item is checked.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDeleting">
            <summary>
            Gets or sets the name of the JavaScript function which handles the deleting client-side event.
            </summary>
            <remarks>
            The deleting event occurs when an items are deleted (during transfer or delete for example).
            </remarks>
            <example>
            The deleting event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onDeleting(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDeleted">
            <summary>
            Gets or sets the name of the JavaScript function which handles the deleted client-side event.
            </summary>
            <remarks>
            The deleted event occurs when an itema are deleted (during transfer or delete for example).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientTransferring">
            <summary>
            Gets or sets the name of the JavaScript function which handles the transferring client-side event.
            </summary>
            <remarks>
            The transferring event occurs when an item is transferred.
            </remarks>
            <example>
            The transferring event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onTransferring(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientTransferred">
            <summary>
            Gets or sets the name of the JavaScript function which handles the transferred client-side event.
            </summary>
            <remarks>
            The transferred event occurs when an item is transferred.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientReordering">
            <summary>
            Gets or sets the name of the JavaScript function which handles the reordering client-side event.
            </summary>
            <remarks>
            The reordering event occurs when an item is reordered.
            </remarks>
            <example>
            The reordering event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onReordering(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientReordered">
            <summary>
            Gets or sets the name of the JavaScript function which handles the reordered client-side event.
            </summary>
            <remarks>
            The reordered event occurs when an item is reordered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientMouseOver">
            <summary>
            Gets or sets the name of the JavaScript function which handles the mouseOver client-side event.
            </summary>
            <remarks>
            The mouseOver event occurs when the user hovers a listbox item with the mouse.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientMouseOut">
            <summary>
            Gets or sets the name of the JavaScript function which handles the mouseOut client-side event.
            </summary>
            <remarks>
            The mouseOut event occurs when the user moves away the mouse from a listbox item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientLoad">
            <summary>
            Gets or sets the name of the JavaScript function which handles the load client-side event.
            </summary>
            <remarks>
            The load event occurs when RadListBox is initialized.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDragStart">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemDragStart client-side event.
            </summary>
            <remarks>
            The itemDragStart event occurs when user starts to drag an item.
            </remarks>
            <example>
            The itemDragStart event can be cancelled by setting its cancel client-side property to false.
            <code>
            function onItemDragStart(sender, args)
            {
               args.set_cancel(true);
            }
            </code>
            </example>		
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDragging">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemDragging client-side event.
            </summary>
            <remarks>
            The itemDragging event occurs when user moves the mouse while dragging an item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDropping">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemDropping client-side event.
            </summary>
            <remarks>
            The itemDropping event occurs when the user drops an item onto another item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBox.OnClientDropped">
            <summary>
            Gets or sets the name of the JavaScript function which handles the itemDropped client-side event.
            </summary>
            <remarks>
            The itemDropped event occurs after the user drops an item onto another item.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListView">
            <summary>
            RadListView class
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadCompositeDataBoundControl">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.OnPreRender(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.ControlPreRender">
            <summary>
            Code moved into this method from OnPreRender to make sure it executed when the framework skips OnPreRender() for some reason
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RenderScriptsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RenderDescriptorsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RegisterScriptControl">
            <summary>
            Registers the control with the ScriptManager
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RegisterCssReferences">
            <summary>
            Registers the CSS references
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Loads the client state data
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.SaveClientState">
            <summary>
            Saves the client state data
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RenderClientStateField(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.DescribeProperty``1(Telerik.Web.UI.IScriptDescriptor,System.String,``0,``0)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.DescribeEvent(Telerik.Web.UI.IScriptDescriptor,System.String,System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.GetEmbeddedSkinNames">
            <summary>
            Returns the names of all embedded skins. Used by Telerik.Web.Examples.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Executed when post data is loaded from the request
            </summary>
            <param name="postDataKey"></param>
            <param name="postCollection"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCompositeDataBoundControl.RaisePostDataChangedEvent">
            <summary>
            Executed when post data changes should invoke a chagned event
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.RegisterWithScriptManager">
            <summary>
            Gets or sets the value, indicating whether to register with the ScriptManager control on the page.
            </summary>
            <remarks>
            <para>
            If RegisterWithScriptManager is set to false the control can be rendered on the page using Web Services or normal callback requests/page methods.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.RuntimeSkin">
            <summary>
            Gets the real skin name for the control user interface. If Skin is not set, returns
            "Default", otherwise returns Skin.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.ClientStateFieldID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.CssClassFormatString">
            <summary>
            The CssClass property will now be used instead of the former Skin 
            and will be modified in AddAttributesToRender()
            </summary>
            <example>
            protected override string CssClassFormatString
            {
            	get
            	{
            		return "RadDock RadDock_{0} rdWTitle rdWFooter";
            	}
            }
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.DefaultCssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.ClientIDMode">
            <summary>
            This property is overridden in order to support controls which implement INamingContainer.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompositeDataBoundControl.ScriptManager">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.IRadPageableItemContainer.SetPageProperties(System.Int32,System.Int32,System.Boolean)">
            <summary>
            Method for settings paging properties of the pageable container
            </summary>
            <param name="startRowIndex">The index of the first record on the page.</param>
            <param name="maximumRows">The maximum number of items on a single page.</param>
            <param name="databind">true to rebind the control after the properties are set; otherwise, false.</param>
        </member>
        <member name="E:Telerik.Web.UI.IRadPageableItemContainer.TotalRowCountAvailable">
            <summary>
            Occurs when the data from the data source is made available to the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadPageableItemContainer.MaximumRows">
            <summary>
            The maximum number of items to display on a single page 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadPageableItemContainer.StartRowIndex">
            <summary>
            The index of the first record that is displayed on a page
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.CreateChildControls(System.Collections.IEnumerable,System.Boolean)">
             <summary>
             When overridden in an abstract class, creates the control hierarchy
             that is used to render the composite data-bound control based on the
             values from the specified data source.
             </summary>
             <returns>
             The number of items created by the 
             <see cref="M:System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls(System.Collections.IEnumerable,System.Boolean)"/>
             .
             </returns>
             <param name="dataSource">An 
             <see cref="T:System.Collections.IEnumerable"/> that contains the
             values to bind to the control.
                             </param><param name="dataBinding">true to indicate
                             that the 
                             <see cref="M:System.Web.UI.WebControls.CompositeDataBoundControl.CreateChildControls(System.Collections.IEnumerable,System.Boolean)"/>
                             is called during data binding; otherwise, false.
                             </param>
            <exception cref="T:System.InvalidOperationException">The 
            <see cref="T:Telerik.Web.UI.RadListView"/> control does not have an item placeholder
            specified.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.CreateDataSourceSelectArguments">
            <summary>
            Creates a default 
            <see cref="T:System.Web.UI.DataSourceSelectArguments"/> object used
            by the data-bound control if no arguments are specified.
            </summary>
            <returns>
            A <see cref="T:System.Web.UI.DataSourceSelectArguments"/>
            initialized to 
            <see cref="P:System.Web.UI.DataSourceSelectArguments.Empty"/>. 
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformDataBinding(System.Collections.IEnumerable)">
            <summary>
            Binds the data from the data source to the composite data-bound
            control.
            </summary>
            <param name="data">An <see cref="T:System.Collections.IEnumerable"/>
            that contains the values to bind to the composite data-bound
            control.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.CreateDataItems(System.Web.UI.Control,System.Collections.IEnumerable,System.Boolean)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.CreateInsertItem">
            <exception cref="T:System.InvalidOperationException">The RadListView control
            does not have an InsertItemTemplate template specified.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PopulateDataKeys(System.Object)">
            <exception cref="T:System.ArgumentException">There was a problem extracting
            DataKeyValues from the DataSource. Please ensure that DataKeyNames
            are specified correctly and all fields specified exist in the
            DataSource.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.InstantiateDataItemTemplate(System.Int32,Telerik.Web.UI.RadListViewDataItem)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.RetrivePlaceHolderControl(System.Web.UI.Control,System.String)">
            <exception cref="T:System.InvalidOperationException">The RadListView control does not have an item placeholder specified.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.RetriveDataItemsContainer(System.Web.UI.Control,System.String)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.InitializeLayoutTemplate">
            <summary>
            Creates and instantiate layout template instance 
            </summary>
            <returns>Created controls count</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.SaveControlState">
            <summary>
            Saves any <see cref="T:Telerik.Web.UI.RadListView"/> control state changes that have
            occurred since the time the page was posted back to the server.
            </summary>
            <returns>
            Returns the <see cref="T:Telerik.Web.UI.RadListView"/>'s current state. If there is
            no state associated with the control, this method returns null.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.LoadControlState(System.Object)">
            <summary>
            Restores control-state information from a previous page request that
            was saved by the 
            <see cref="M:System.Web.UI.Control.SaveControlState"/> method.
            </summary>
            <param name="savedState">An <see cref="T:System.Object"/> that
            represents the control state to be restored. 
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.SetPageProperties(System.Int32,System.Int32,System.Boolean)">
            <exception cref="T:System.ArgumentOutOfRangeException"><c>maximumRows</c> is out of range.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>startRowIndex</c> is out of range.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemCreated(Telerik.Web.UI.RadListViewItemEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadListView.ItemCreated"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemDataBound(Telerik.Web.UI.RadListViewItemEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadListView.ItemDataBound"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemCommand(Telerik.Web.UI.RadListViewCommandEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadListView.ItemCommand"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemDeleted(Telerik.Web.UI.RadListViewDeletedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListView.ItemDeleted"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemUpdating(Telerik.Web.UI.RadListViewCommandEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListView.ItemUpdating"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemUpdated(Telerik.Web.UI.RadListViewUpdatedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListView.ItemUpdated"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemCanceling(Telerik.Web.UI.RadListViewCommandEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListView.ItemUpdating"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnNeedDataSource(Telerik.Web.UI.RadListViewNeedDataSourceEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadListView.NeedDataSource"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnItemDrop(Telerik.Web.UI.RadListViewItemDragDropEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadListView.ItemDrop"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ClearSelectedItems">
            <summary>
            Removes all selected items that belong to <see cref="T:Telerik.Web.UI.RadListView"/> instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ClearEditItems">
            <summary>
            Removes all edit items that belong to the <see cref="T:Telerik.Web.UI.RadListView"/>
            instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnInit(System.EventArgs)">
            <summary>
            Handles the <see cref="E:System.Web.UI.Control.Init"/> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> object that contains the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.OnLoad(System.EventArgs)">
            <summary>
            Handles the <see cref="E:System.Web.UI.Control.Load"/> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> object that
            contains event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.Render(System.Web.UI.HtmlTextWriter)">
            <summary>
            Renders the <see cref="T:Telerik.Web.UI.RadListView"/> to the specified HTML writer.
            </summary>
            <param name="writer">The 
            <see cref="T:System.Web.UI.HtmlTextWriter"/> object that receives
            the control content. 
                            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.DataBind">
            <exception cref="T:System.InvalidOperationException">You should not call
            DataBind in <see cref="E:Telerik.Web.UI.RadListView.NeedDataSource"/> event handler. DataBind would take place
            automatically right after <see cref="E:Telerik.Web.UI.RadListView.NeedDataSource"/> handler finishes execution.
            </exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ExtractValuesFromItem(System.Collections.IDictionary,Telerik.Web.UI.RadListViewDataItem,System.Boolean)">
            <summary>
                The passed <see cref="T:System.Collections.IDictionary"/> object (like <see cref="T:System.Collections.Hashtable"/> for example) will be filled with the
                names/values of the corresponding <see cref="T:Telerik.Web.UI.RadListViewDataItem"/>'s bound values and data-key values if included. 
            </summary>
            <exception cref="T:System.ArgumentNullException"><c>dataItem</c> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentNullException"><c>newValues</c> is <c>null</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformUpdate(Telerik.Web.UI.RadListViewDataItem)">
            <summary>
                Perform asynchronous update operation, using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource"/> control API and the
                Rebind method. Please, make sure you have specified the correct
                <strong>DataKeyNames</strong> for the <see cref="T:Telerik.Web.UI.RadListView"/>. When the
                asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadListView"/> will fire
                <see cref="E:Telerik.Web.UI.RadListView.ItemUpdated"/> event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformUpdate(Telerik.Web.UI.RadListViewDataItem,System.Boolean)">
            <summary>
                Perform asynchronous update operation, using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource"/>
                control API. Please make sure you have specified the correct 
                <strong>DataKeyNames</strong> for the
                <see cref="T:Telerik.Web.UI.RadListView"/>. When the asynchronous operation calls
                back, <see cref="T:Telerik.Web.UI.RadListView"/> will fire
                <see cref="E:Telerik.Web.UI.RadListView.ItemUpdated"/> event. The boolean
                property defines if <see cref="T:Telerik.Web.UI.RadListView"/> will <see cref="M:Telerik.Web.UI.RadListView.Rebind"/> after
                the update.
            </summary> 
            <exception cref="T:System.ArgumentNullException"><c>editedItem</c> is 
            <c>null</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformDelete(Telerik.Web.UI.RadListViewDataItem)">
            <summary>
            Perform asynchronous delete operation, using the 
            <see cref="T:System.Web.UI.DataSourceControl"/> API the Rebinds the grid. Please
            make sure you have specified the correct <strong>
            <see cref="P:Telerik.Web.UI.RadListView.DataKeyNames"/></strong> for the 
            <see cref="T:Telerik.Web.UI.RadListView"/>. When the asynchronous operation calls
            back, <see cref="T:Telerik.Web.UI.RadListView"/> will fire 
            <see cref="E:Telerik.Web.UI.RadListView.ItemDeleted"/> event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformDelete(Telerik.Web.UI.RadListViewDataItem,System.Boolean)">
            <summary>
            Perform delete operation, using the <see cref="T:System.Web.UI.DataSourceControl"/>
            API. Please make sure you have specified the correct 
            <see cref="P:Telerik.Web.UI.RadListView.DataKeyNames"/> for the <see cref="T:Telerik.Web.UI.RadListView"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem">
            <summary>
                Places the RadListView in insert mode, allowing user to insert a new data-item
                values. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem(Telerik.Web.UI.RadListViewInsertItemPosition)">
            <summary>
                Places the RadListView in insert mode, allowing user to insert a new data-item
                values. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem(System.Collections.IDictionary)">
            <summary>
            Places the RadListView in insert mode, allowing user to insert a new data-item values.
            The InsertItem created will be bound to values found in defaultValues dictionary; 
            </summary>
            <param name="defaultValues">values with which InsertItem will be populated</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem(Telerik.Web.UI.RadListViewInsertItemPosition,System.Collections.IDictionary)">
            <summary>
            Places the RadListView in insert mode, allowing user to insert a new data-item values.
            The InsertItem created will be bound to values found in defaultValues dictionary; 
            </summary>
            <param name="itemPosition">position at which the insertItem will be shown</param>
            <param name="defaultValues">values with which InsertItem will be populated</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem(System.Object)">
            <summary>
            Places the RadListView in insert mode, allowing user to insert a new data-item values.
            The InsertItem created will be bound to the provided object;
            </summary>
            <param name="dataItem">object to which InsertItem will be bound</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ShowInsertItem(Telerik.Web.UI.RadListViewInsertItemPosition,System.Object)">
            <summary>
            Places the RadListView in insert mode, allowing user to insert a new data-item values.
            The InsertItem created will be bound to the provided object;
            </summary>
            <param name="itemPosition">position at which the insertItem will be shown</param>
            <param name="dataItem">object to which InsertItem will be bound</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformInsert">
            <summary>
            Performs asynchronous insert operation, using the <see cref="T:System.Web.UI.DataSourceControl"/> API, then
            Rebinds. When the asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadListView"/> will fire
            <see cref="E:Telerik.Web.UI.RadListView.ItemInserted"/> event.
            </summary>
            <exception cref="T:System.InvalidOperationException">Insert item is available only when RadListView is in insert mode.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.PerformInsert(Telerik.Web.UI.RadListViewInsertItem,System.Boolean)">
            <summary>
            Performs asynchronous insert operation, using the <see cref="T:System.Web.UI.DataSourceControl"/> API, then
            Rebinds. When the asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadListView"/> will fire
            <see cref="E:Telerik.Web.UI.RadListView.ItemInserted"/> event.
            </summary>
            <exception cref="T:System.ArgumentNullException"><c>insertItem</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListView.ExtractDataKeyValue(System.Object,System.String)">
            <exception cref="T:System.ArgumentNullException">container is null.
                           
                               -or- 
                           propName is null or an empty string (""). 
                           </exception>
            <exception cref="T:System.Web.HttpException">
                               The object in container does not have the property specified by propName. 
                           </exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ResolvedDataSource">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.DataSourceIsAssigned">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.LayoutTemplate">
            <summary>
            Gets or sets the custom content for the root container in a 
            <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ItemTemplate">
            <summary>
            Gets or sets the custom content for the data item in a <see cref="T:Telerik.Web.UI.RadListView"/>
            control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AlternatingItemTemplate">
            <summary>
            Gets or sets the custom content for the alternating data item in a <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.EditItemTemplate">
            <summary>
            Gets or sets the custom content for the item in edit mode. 
            </summary>
            <returns>
            An object that contains the custom content for the item in edit
            mode. The default is null, which indicates that this property is not
            set. 
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.InsertItemTemplate">
            <summary>
            Gets or sets the custom content for an insert item in the
            <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.GroupTemplate">
            <summary>
            Gets or sets the custom content for group container in the
            <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.GroupSeparatorTemplate">
            <summary>
            Gets or sets the user-defined content for the separator between
            groups in a <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.EmptyItemTemplate">
            <summary>
            Gets or sets the user-defined content for the empty item that is
            rendered in a <see cref="T:Telerik.Web.UI.RadListView"/> control when there are no more data items to
            display in the last row of the current data page.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ItemPlaceholderID">
            <summary>
            Gets or sets the ID for the item placeholder in a <see cref="T:Telerik.Web.UI.RadListView"/>
            control.  
            </summary>
             <returns>
             The ID for the item placeholder in a <see cref="T:Telerik.Web.UI.RadListView"/> control. The
             default is "itemPlaceholder". 
             </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.GroupPlaceholderID">
            <summary>
            Gets or sets the ID for the group placeholder in a <see cref="T:Telerik.Web.UI.RadListView"/> control.   
            </summary>
             <returns>
             The ID for the group placeholder in a <see cref="T:Telerik.Web.UI.RadListView"/> control. The
             default is "groupPlaceholder". 
             </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.Items">
            <summary>
            Gets a collection of <see cref="T:Telerik.Web.UI.RadListViewDataItem"/> objects that represent
            the data items of the current page of data in a <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ItemSeparatorTemplate">
            <summary>
            Gets or sets the custom content for the separator between the items
            in a <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.EmptyDataTemplate">
            <summary>
            Gets or sets the Template that will be displayed if there are no
            records in the DataSource assigned. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.GroupItemCount">
            <summary>
            Gets or sets the number of items to display per group in a
            <see cref="T:Telerik.Web.UI.RadListView"/> control. Default value is 1
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.DataKeyNames">
            <summary>
            Gets or sets an array of data-field names that will be used to
            populate the
            <see cref="P:Telerik.Web.UI.RadListView.DataKeyValues"/> collection, when the 
            <see cref="T:Telerik.Web.UI.RadListView"/>control is databinding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ClientSettings">
            <summary>
            Gets a reference to the 
            <see cref="T:Telerik.Web.UI.RadListViewClientSettings"/> object that allows
            you to set the properties of the client-side behavior and
            appearance in a Telerik <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SortExpressions">
            <summary>
            Gets a collection of sort expressions for <see cref="T:Telerik.Web.UI.RadListView"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.FilterExpressions">
            <summary>
            Gets a collection of filter expressions for <see cref="T:Telerik.Web.UI.RadListView"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowMultiFieldSorting">
            <summary>
                Gets or sets the value indicating if more than one datafield can
                be sorted. The order is the same as the sequence of expressions
                in <see cref="P:Telerik.Web.UI.RadListView.SortExpressions"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.CurrentPageIndex">
            <summary>
            Gets or sets a value indicating the index of the currently active page in case
            paging is enabled (<see cref="P:Telerik.Web.UI.RadListView.AllowPaging"/> is
            <strong>true</strong>).
            </summary>
            <value>The index of the currently active page in case paging is enabled.</value>
            <seealso cref="P:Telerik.Web.UI.RadListView.AllowPaging">AllowPaging Property</seealso>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.IsItemInserted">
            <summary>
            Gets or sets a value indicating if the <strong>RadListView</strong> is
            currently in insert mode.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>RadListView</strong> is currently in
            insert mode; otherwise, <strong>false</strong>.
            </value>
            <remarks>
                The ItemInserted property indicates if the <strong>RadListView</strong> is
                currently in insert mode. After setting it you should call the
                <see cref="M:Telerik.Web.UI.RadListView.Rebind"/> method.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.OverrideDataSourceControlSorting">
            <summary>
            Gets or sets a value indicating if the <see cref="T:Telerik.Web.UI.RadListView"/>
            should override the default <see cref="T:System.Web.UI.DataSourceControl"/> sorting
            with its native sorting.
            </summary>
            <remarks>
                You can set this to true in case of 
                <see cref="T:System.Web.UI.WebControls.ObjectDataSource"/> with <see cref="T:System.Collections.IEnumerable"/>
                data without implemented sorting. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowCustomSorting">
            <summary>Gets or sets if the custom sorting feature is enabled.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.PageSize">
            <summary>
             Specify the maximum number of items that would appear in a page,
             when paging is enabled by <see cref="P:Telerik.Web.UI.RadListView.AllowPaging"/> property.
             Default value is 10.  
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.PageCount">
            <summary>
            Gets the number of pages required to display the records of the data
            source in a <see cref="T:Telerik.Web.UI.RadListView"/>control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.VirtualItemCount">
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowCustomPaging">
            <summary>
            Gets or sets if the custom paging feature is enabled.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.LayoutCreated">
            <summary>
            Raised when <see cref="P:Telerik.Web.UI.RadListView.LayoutTemplate"/> is created
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemCreated">
            <summary>
            Raised when <see cref="T:Telerik.Web.UI.RadListViewItem"/> is created
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemDataBound">
            <summary>
            Raised when <see cref="T:Telerik.Web.UI.RadListViewItem"/> is data bound
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemCommand">
            <summary>
            Raised when a button in a <see cref="T:Telerik.Web.UI.RadListView"/> control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.PageIndexChanged">
            <summary>Fires when a paging action has been performed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.PageSizeChanged">
            <summary>Fires when <see cref="P:Telerik.Web.UI.RadListView.PageSize"/> has been changed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.SelectedIndexChanged">
            <summary>Fires the SelectedIndexChanged event.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.Sorting">
            <summary>Fires when <see cref="P:Telerik.Web.UI.RadListView.PageSize"/> has been changed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemInserting">
            <summary>
            Occurs when an insert operation is requested, but before the 
            <see cref="T:Telerik.Web.UI.RadListView"/> control performs the insert.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemInserted">
            <summary>
            Occurs when an insert operation is requested, after the <see cref="T:Telerik.Web.UI.RadListView"/>
            control has inserted the item in the data source.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemEditing">
            <summary>
            Occurs when an edit operation is requested, but before the 
            <see cref="T:Telerik.Web.UI.RadListView"/> item is put in edit mode
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemDeleting">
            <summary>
            Occurs when a delete operation is requested, but before the
            <see cref="T:Telerik.Web.UI.RadListView"/> control deletes the item.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemDeleted">
            <summary>
            Occurs when a delete operation is requested, after the 
            <see cref="T:Telerik.Web.UI.RadListView"/> control deletes the item.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemUpdating">
            <summary>
            Occurs when the Update command is fired from any <see cref="T:Telerik.Web.UI.RadListViewDataItem"/>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemUpdated">
            <summary>
            Occurs when the Update command is fired from any <see cref="T:Telerik.Web.UI.RadListViewDataItem"/>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemCanceling">
            <summary>
            Occurs when the Cancel command is fired from any <see cref="T:Telerik.Web.UI.RadListViewDataItem"/>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.NeedDataSource">
            <summary>
            Raised when the <see cref="T:Telerik.Web.UI.RadListView"/> is about to be bound and the data source must be assigned. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadListView.ItemDrop">
            <summary>
            Occurs when a ListView item is dragged and dropped on an HTML element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowPaging">
            <summary>
            Gets or sets a value indicating whether the automatic paging feature is
            enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.CanRetrieveAllData">
            <summary><para>Gets or sets a value indicating whether Telerik
            <see cref="T:Telerik.Web.UI.RadListView"/> should retrieve all data and ignore server paging in
            case of sorting.</para></summary>
            <value>
            	<para>
            		<strong>true</strong> (default) if the retrieve all data feature
            		is enabled; otherwise,
                    <strong>false</strong>.
                </para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ValidationSettings">
            <summary>
             Gets a reference to the <see cref="T:Telerik.Web.UI.RadListViewValidationSettings"/>
             object that allows you to set the properties of the validate
             operation in a <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SelectedItemTemplate">
            <summary>
            Gets or sets the custom content for the selected item in a 
            <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SelectedIndexes">
            <summary>Gets a collection of indexes of the selected items.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowMultiItemSelection">
            <summary>
            Gets or sets a value indicating whether you will be able to select multiple items
            in Telerik <see cref="T:Telerik.Web.UI.RadListView"/>. By default this property is set to
            <strong>false</strong>.
            </summary>
            <value>
            	<strong>true</strong> if you can have multiple dataItems selected at once. Otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SelectedItems">
            <summary>Gets a collection of the currently selected
            RadListViewDataItems</summary>
            <value>Returns a <see cref="T:Telerik.Web.UI.RadListViewDataItemCollection"/> of all
            selected data items.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SelectedValue">
            <summary>Gets the data key value of the selected item in a 
            <see cref="T:Telerik.Web.UI.RadListView"/> control.</summary>
            <value>The data key value of the selected row in a 
            <see cref="T:Telerik.Web.UI.RadListView"/> control.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.SelectedValues">
            <summary>
            
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.EditItems">
            <summary>
            Gets a collection of all <see cref="T:Telerik.Web.UI.RadListViewDataItem"/> in edit mode.
            </summary>
            <value><see cref="T:Telerik.Web.UI.RadListViewDataItemCollection"/> of all items that are in edit
            mode.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.AllowMultiItemEdit">
            <summary>
            Gets or sets a value indicating whether RadListView will allow you
            to have multiple items in edit mode. The default value is
            <strong>false</strong>.
            </summary>
            <value>
            	<strong>true</strong> if you can have more than one item in edit
            	mode. Otherwise,
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.ConvertEmptyStringToNull">
            <summary>
            Gets or sets a value that indicates whether empty string values ("")
            are automatically converted to <c>null</c> values when the data field is
            updated in the data source. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.InsertItemPosition">
            <summary>
            Gets or sets the location of the <see cref="P:Telerik.Web.UI.RadListView.InsertItemTemplate"/>
            template when it is rendered as part of the 
            <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListView.InsertItem">
            <summary>
            Gets the insert item of a <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMenu">
            <summary>A navigation control used to display a menu in a web page.</summary>
            <remarks>
            	<para>
                    The <b>RadMenu</b> control is used to display a list of menu items in a Web Forms
                    page. The <b>RadMenu</b> control supports the following features:
                </para>
            	<list type="bullet">
            		<item>
            			Databinding that allows the control to be populated from various
            			datasources.
            		</item>
            		<item>
            			Programmatic access to the <strong>RadMenu</strong> object model
            			which allows dynamic creation of menus, populating with items and customizing the behavior 
            			by various properties.
            		</item>
            		<item>
            			Customizable appearance through built-in or user-defined skins.
            		</item>
            	</list>
            	<h3>Items</h3>
            	<para>
                    The <strong>RadMenu</strong> control is made up of tree of items represented
                    by <see cref="T:Telerik.Web.UI.RadMenuItem"/> objects. Items at the top level (level 0) are
                    called root items. An item that has a parent item is called a child item. All root
                    items are stored in the <see cref="P:Telerik.Web.UI.RadMenu.Items"/> property of the RadMenu control. Child items are
                    stored in the <see cref="P:Telerik.Web.UI.RadMenuItem.Items">Items</see> property of their parent <see cref="T:Telerik.Web.UI.RadMenuItem"/>.
                </para>
            	<para>
                    Each menu item has a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> and a <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property. 
            		The value of the <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is displayed in the <b>RadMenu</b> control, 
            		while the <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property is used to store any additional data about the item, 
            		such as data passed to the postback event associated with the item. When clicked, an item can
                    navigate to another Web page indicated by the <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see> property.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.HierarchicalControlItemContainer.DataSource">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.IRadMenuItemContainer">
            <summary>
                Defines properties that menu item containers (<see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see>,
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see>) should implement
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadMenuItemContainer.Owner">
            <summary>Gets the parent <see cref="T:Telerik.Web.UI.IRadMenuItemContainer">IRadMenuItemContainer</see>.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadMenuItemContainer.Items">
            <summary>Gets the collection of child items.</summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadMenuItemCollection">RadMenuItemCollection</see> that represents the child
                items.
            </value>
            <remarks>
            Use this property to retrieve the child items. You can also use it to
            programmatically add or remove items.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.LoadContentFile(System.String)">
            <summary>
            Populates the <strong>RadMenu</strong> control from external XML file.
            </summary>
            <remarks>
            The newly added items will be appended after any existing ones.
            </remarks>
            <example>
                The following example demonstrates how to populate <strong>RadMenu</strong> control
                from XML file. 
                <code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                {
                    RadMenu1.LoadContentFile("~/Menu/Examples/Menu.xml");
                }
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(sender As Object, e As EventArgs) Handles MyBase.Load
                If Not Page.IsPostBack Then
                    RadMenu1.LoadContentFile("~/Menu/Examples/Menu.xml")
                End If
            End Sub
                </code>
            </example>
            <param name="xmlFileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.GetAllItems">
            <summary>
            Gets a linear list of all items in the <strong>RadMenu</strong>
            control.
            </summary>
            <returns>
            An <strong>IList&lt;RadMenuItem&gt;</strong> containing all items (from all hierarchy
            levels).
            </returns>
            <remarks>
            Use the <strong>GetAllItems</strong> method to obtain a linear collection of all
            items regardless their place in the hierarchy.
            </remarks>
            <example>
                The following example demonstrates how to disable all items within a
                <strong>RadMenu</strong> control. 
                <code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                foreach (RadMenuItem item in RadMenu1.GetAllItems())
                {
                    item.Enabled = false;
                }
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                For Each childItem As RadMenuItem In RadMenu1.GetAllItems
                    childItem.Enabled = False
                Next
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItemByText(System.String)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItemByValue(System.String)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItemByUrl(System.String)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">Item</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see>
                property equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">Item</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see>
                property is equal to the specified value.
            </returns>
            <remarks>
            The method returns the first Item matching the search criteria. If no Item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="url">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.FindItem(System.Predicate{Telerik.Web.UI.RadMenuItem})">
            <summary>
            Returns  the first <strong>RadMenuItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadMenu1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadMenuItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadMenu1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadMenuItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenu.ClearSelectedItem">
            <summary>
            This methods clears the selected item of the current RadMenu instance.
            Useful when you need to clear item selection after postback.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding an item, removing an item, changing an item's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<item>adding a new item</item>
            			<item>removing existing item</item>
            			<item>clearing the children of an item or the control itself</item>
            			<item>changing a property of the item</item>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadMenuItem&gt; operation in RadToolBar1.ClientChanges)
            		{
            			RadMenuItem item = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//An item has been inserted - operation.Item contains the inserted item
            				break;
            				case ClientOperationType.Remove:
            					//An item has been inserted - operation.Item contains the removed item. 
                             //Keep in mind the item has been removed from the menu.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadMenuItem&gt; update = operation as UpdateClientOperation&lt;RadMenuItem&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is null then the root items have been removed.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadMenuItem) In RadToolBar1.ClientChanges
            				Dim item As RadMenuItem = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'An item has been inserted - operation.Item contains the inserted item
            					Exit Select
            					Case ClientOperationType.Remove
            						'An item has been inserted - operation.Item contains the removed item. 
            						'Keep in mind the item has been removed from the menu.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadMenuItem) = TryCast(operation, UpdateClientOperation(Of RadMenuItem))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						'All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is Nothing then the root items have been removed.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> object that contains the root items of the current RadMenu control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> that contains the root items of the current RadMenu control. By default
            	the collection is empty (RadMenu has no children).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the root items of the RadMenu control. You can also use the <b>Items</b> property to
            	manage the root items - you can add, remove or modify items.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a root item.
                <code lang="CS">
            		RadMenu1.Items[0].Text = "Example";
            		RadMenu1.Items[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadMenu1.Items(0).Text = "Example"
            		RadMenu1.Items(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ItemTemplate">
            <summary>
            Gets or sets the template for displaying the items in
            <strong>RadMenu</strong>.
            </summary>
            <value>
            	<para>
            	An object which implements the <strong>ITemplate</strong> interface.
            	The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.
            	</para>
            	<para>The <strong>ItemTemplate</strong> property sets a template that will be used
                for all menu items.</para>
            	<para>
                    To specify unique display for individual items use the
                    <see cref="P:Telerik.Web.UI.RadMenuItem.ItemTemplate">ItemTemplate</see> property of the
                    <strong>RadMenuItem</strong> class.
                </para>
            </value>
            <example>
            	<para>The following example demonstrates how to use the
                <strong>ItemTemplate</strong> property to add a CheckBox for each item.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu runat="server" ID="RadMenu1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;ItemTemplate&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;asp:CheckBox runat="server"
                        ID="CheckBox"&gt;&lt;/asp:CheckBox&gt;<br/>
                        &lt;asp:Label runat="server" ID="Label1"</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>Text='&lt;%# DataBinder.Eval(Container, "Text") %&gt;'</para>
            				<para>&gt;&lt;/asp:Label&gt;</para>
            			</blockquote>
            		</blockquote>
            		<para>&lt;/ItemTemplate&gt;</para>
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadMenuItem Text="News" /&gt;</para>
            			<para>&lt;telerik:RadMenuItem Text="Sports" /&gt;</para>
            			<para>&lt;telerik:RadMenuItem Text="Games" /&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.LoadingStatusTemplate">
            <summary>
            	Gets or sets the template displayed when child items are being loaded.
            </summary>
            <example>
            	The following example demonstrates how to use the LoadingStatusTemplate to display an image.
            	<para>
            	&lt;telerik:RadMenu runat="server" ID="RadMenu1"&gt;
            		&lt;LoadingStatusTemplate&gt;
            			&lt;asp:Image runat="server" ID="Image1" ImageUrl="~/Img/loading.gif" /&gt;
            		&lt;/LoadingStatusTemplate&gt;
            	&lt;/telerik:RadMenu&gt;	
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ExpandAnimation">
            <summary>Gets the settings for the animation played when an item opens.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                expand animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>ExpandAnimation</strong> property to customize the expand
                    animation of <strong>RadMenu</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> and
                    the <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> of the expand animation.
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the collapse animation you can use the
                    <see cref="P:Telerik.Web.UI.RadMenu.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>ExpandAnimation</strong>
                of RadMenu. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadMenu ID="RadMenu1" runat="server"&gt;</para>
            		<para><strong>&lt;ExpandAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="News" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadMenuItem&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Sport" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadMenuItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadMenu&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadMenu1.ExpandAnimation.Type = AnimationType.Linear;
                RadMenu1.ExpandAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadMenu1.ExpandAnimation.Type = AnimationType.Linear
                RadMenu1.ExpandAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ExpandDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a menu item starts to
            open.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            100 milliseconds.
            </value>
            <remarks>
            	<para>Use the <strong>ExpandDelay</strong> property to delay item opening.</para>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadMenu.CollapseDelay">CollapseDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify a half second (500
                milliseconds) timeout prior to item opening:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1" runat="server"
                <strong>ExpandDelay="500"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.CollapseAnimation">
            <summary>Gets the settings for the animation played when an item closes.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                collapse animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>CollapseAnimation</strong> property to customize the expand
                    animation of <strong>RadMenu</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see>,
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> and the
                    items are collapsed.<br/>
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>. To customize the expand animation you can
                    use the <see cref="P:Telerik.Web.UI.RadMenu.ExpandAnimation">ExpandAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the
                <strong>CollapseAnimation</strong> of RadMenu. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadMenu ID="RadMenu1" runat="server"&gt;</para>
            		<para><strong>&lt;CollapseAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="News" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadMenuItem&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Sport" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadMenuItem Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadMenuItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadMenu&gt;</para>
            		<code lang="CS">
            		</code>
            		<code lang="VB">
            		</code>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadMenu1.CollapseAnimation.Type = AnimationType.Linear;
                RadMenu1.CollapseAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadMenu1.CollapseAnimation.Type = AnimationType.Linear
                RadMenu1.CollapseAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.CollapseDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a menu item starts to
            close.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            500 (half a second).
            </value>
            <remarks>
            	<para>Use the <strong>CollapseDelay</strong> property to delay item closing. To
                cause immediate item closing set this property to 0 (zero).</para>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadMenu.ExpandDelay">ExpandDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify one second (1000
                milliseconds) timeout prior to item closing:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1" runat="server"
                <strong>ClosingDelay="1000"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.Flow">
            <summary>Gets or sets a value indicating the way top level items will flow.</summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.ItemFlow">ItemFlow</see> values. The default value for top
                level items is <strong>Horizontal</strong>.
            </value>
            <remarks>
            Use the <strong>Flow</strong> property to customize the way top level items are
            displayed. If set to <strong>Horizontal</strong> items are positioned one after
            another. <strong>Vertical</strong> causes the items to flow one below the other.
            </remarks>
            <example>
            	<para>The following example demonstrates how to make a vertical menu.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1" runat="server"
                <strong>Flow="Vertical"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.DefaultGroupSettings">
            <summary>Specifies the default settings for child item behavior.</summary>
            <value>
                An instance of the <see cref="T:Telerik.Web.UI.RadMenuItemGroupSettings">MenuItemGroupSettings</see>
                class.
            </value>
            <remarks>
            	<para>You can customize the following settings</para>
            	<list type="bullet">
            		<item>item flow</item>
            		<item>expand direction</item>
            		<item>horizontal offset from the parent item</item>
            		<item>vertical offset from the parent item</item>
            		<item>width</item>
            		<item>height</item>
            	</list>
            	<para>
                    For more information check
                    <see cref="T:Telerik.Web.UI.RadMenuItemGroupSettings">MenuItemGroupSettings</see>.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableAutoScroll">
            <summary>
            	Gets or sets a value indicating if an automatic scroll is applied if the groups are larger then the screen height.		
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableRootItemScroll">
            <summary>
            	Gets or sets a value indicating if scroll is enabled for the root items.
            	Width must be set for horizontal root group, Height for vertical one.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableSelection">
            <summary>
            	Gets or sets a value indicating if the currently selected item will be tracked and highlighted.		
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.AutoScrollMinimumHeight">
            <summary>
            The minimum available height that is needed to enable the auto-scroll.
            </summary>
            <remarks>
            Enabling the auto-scroll when there is very little available space can
            lead to a situation where only the scroll arrows are visible.
            <br />
            If the available space is lower than the specified value, the menu will
            attempt to screen boundary detection first (if enabled).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.AutoScrollMinimumWidth">
            <summary>
            	The minimum available width that is needed to enable the auto-scroll.
            </summary>
            <value>
            	The minimum width measured in pixels. The default value is 50 pixels.
            </value>
            <remarks>
            	<para>
            		Enabling the auto-scroll when there is very little available space can
            		lead to a situation where only the scroll arrows are visible.
            	</para>
            	<para>
            		If the available space is lower than the specified value, the menu will
            		attempt to screen boundary detection first (if enabled).
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableScreenBoundaryDetection">
            <summary>
            	Gets or sets a value indicating whether the screen boundary detection will be applied when menu items are expanded.
            </summary>
            <remarks>
            	By default RadMenu will check if there is enough space to open a menu item. If there isn't the expand direction of the 
            	item will be inverted - Left to Right, Bottom to Top and vice versa.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ClickToOpen">
            <summary>
            Gets or sets a value indicating whether root items should open on mouse
            click.
            </summary>
            <value>
            	<strong>True</strong> if the root items open on mouse click; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
            <remarks>
            Use the <strong>ClickToOpen</strong> property to customize the way root menu
            items are opened. By default menu items are opened on mouse hovering.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items
            	<see cref="P:Telerik.Web.UI.RadMenuItem.ExpandMode">ExpandMode</see> set to
            	<see cref="F:Telerik.Web.UI.MenuItemExpandMode.WebService">MenuItemExpandMode.WebService</see>.
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadMenu.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		You can use the <see cref="P:Telerik.Web.UI.RadMenu.LoadingStatusTemplate">LoadingStatusTemplate</see>
            		property to create a loading template.
            	</para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public RadMenuItemData[] WebServiceMethodName(RadMenuItemData item, object context)
            			{
            				// We cannot use a dictionary as a parameter, because it is only supported by script services.
            				// The context object should be cast to a dictionary at runtime.
            				IDictionary&lt;string, object&gt; contextDictionary = (IDictionary&lt;string, object&gt;) context;
            				
            				//...
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.PersistLoadOnDemandItems">
            <summary>
            	When set to true, the items populated through Load On Demand are persisted on the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableOverlay">
            <summary>
            	Gets or sets a value indicating if an overlay should be rendered (only in Internet Explorer).
            </summary>
            <remarks>
            	The overlay is an iframe element that is used to hide select and other elements from overlapping the menu.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.DataBindings">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadMenuItemBinding"/> objects that define the relationship 
            	between a data item and the menu item it is binding to. 
            </summary>
            <returns>
            	A <see cref="T:Telerik.Web.UI.RadMenuItemBindingCollection"/> that represents the relationship between a data item and the menu item it is binding to.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.MaxDataBindDepth">
            <summary>
            	Gets or sets the maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control.
            </summary>
            <value>
            	The maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control. The default is -1, 
            	which binds all the levels in the data source to the control.
            </value>
            <remarks>
            	When binding the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control to a data source, use the MaxDataBindDepth 
            	property to limit the number of levels to bind to the control. For example, setting this property to 2 binds only 
            	the root menu items and their immediate children. All remaining records in the data source are ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when a menu item is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when a menu item is clicked.
            	The default value is an empty string (""), which causes the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.SelectedItem">
            <summary>
            Gets a RadMenuItem object that represents the selected item in the RadMenu
            control.
            </summary>
            <remarks>
            	<para>The user can select a item by clicking on it.
            	Use the SelectedItem property to determine which node is
                selected in the RadMenu control.</para>
            	<para>
                An item cannot be selected when it's configured to navigate to a given location.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.SelectedValue">
            <summary>
            Gets the <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> of the selected item.
            </summary>
            <returns>
            The <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> of the selected item.
            If there is no selected item returns empty string.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableRoundedCorners">
            <summary>
            Gets or sets a value indicating whether child items should have rounded corners.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have rounded corners; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableShadows">
            <summary>
            Gets or sets a value indicating whether child items should have shadows.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have shadows; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableTextHTMLEncoding">
            <summary>
            	Gets or sets a value indicating whether the html encoding will be applied when the menu items are rendered.
            </summary>
            <remarks>
            	By default RadMenu will not apply a html encoding when the menu items are rendered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableImageSprites">
            <summary>
            Gets or sets a value indicating whether item images should have sprite support.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have sprite support; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.EnableImagePreloading">
            <summary>
            Gets or sets a value indicating whether items images should be preloaded.
            </summary>
            <value>
            	<strong>True</strong> if items images should be preloaded; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value> 
        </member>
        <member name="E:Telerik.Web.UI.RadMenu.ItemCreated">
            <summary>
            Occurs on the server when an item in the <strong>RadMenu</strong> control is
            created.
            </summary>
            <remarks>
            	<para>The <b>ItemCreated</b> event is raised every time a new item is
                added.</para>
            	<para>The <b>ItemCreated</b> event is not related to data binding and you
                cannot retrieve the <strong>DataItem</strong> of the item in the event
                handler.</para>
            	<para>The <b>ItemCreated</b> event is often useful in scenarios where you want
                to initialize all items - for example setting the <strong>ToolTip</strong> of each
                <strong>RadMenuItem</strong> to be equal to the <strong>Text</strong> property.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>ItemCreated</strong>
                event to set the <strong>ToolTip</strong> property of each item.
                <code lang="CS">
            private void RadMenu1_ItemCreated(object sender, Telerik.WebControls.RadMenuItemEventArgs e)
            {
                e.Item.ToolTip = e.Item.Text;
            }
                </code>
            	<code lang="VB">
            Sub RadMenu1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.WebControls.RadMenuItemEventArgs) Handles RadMenu1.ItemCreated
                e.Item.ToolTip = e.Item.Text
            End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadMenu.TemplateNeeded">
            <summary>Occurs before template is being applied to the menu item.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the menu item, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for menu items
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property the menu items. 
                <code lang="CS">
            		 protected void RadMenu1_TemplateNeeded(object sender, Telerik.Web.UI.RadMenuEventArgs e)
            		 {
            		    string value = e.Item.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              textBoxTemplate.InstantiateIn(e.Item);        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadMenu1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMenuEventArgs) Handles RadMenu1.TemplateNeeded
                         Dim value As String = e.Item.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 textBoxTemplate.InstantiateIn(e.Item)
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadMenu.ItemClick">
            <summary>
                Occurs on the server when a menu item in the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see>
                control is clicked.
            </summary>
            <remarks>
            	<para>
            		The menu will also postback if you navigate to a menu item
                    using the [menu item] key and then press [enter] on the menu item that is focused. The
                    instance of the clicked menu item is passed to the <strong>MenuItemClick</strong> event
                    handler - you can obtain a reference to it using the eventArgs.RadMenuItem property.
                </para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadMenu.ItemDataBound">
            <summary>Occurs after a menu item is data bound.</summary>
            <remarks>
            	<para>
                    The <strong>ItemDataBound</strong> event is raised for each menu item upon
                    databinding. You can retrieve the item being bound using the event arguments.
                    The <strong>DataItem</strong> associated with the item can be retrieved using
                    the <see cref="P:Telerik.Web.UI.RadMenuItem.DataItem">DataItem</see> property.
                </para>
            	<para>The <strong>ItemDataBound</strong> event is often used in scenarios when
                you want to perform additional mapping of fields from the <strong>DataItem</strong>
                to their respective properties in the <strong>RadMenuItem</strong> class.</para>
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadMenuItem">item properties using the <strong>ItemDataBound</strong>
                event.</see>
            	<code lang="CS">
            private void RadMenu1_ItemDataBound(object sender, Telerik.WebControls.RadMenuEventArgs e)
            {
                RadMenuItem item = e.RadMenuItem;
                DataRowView dataRow = (DataRowView) e.Item.DataItem;
             
                item.ImageUrl = "image" + dataRow["ID"].ToString() + ".gif";
                item.NavigateUrl = dataRow["URL"].ToString();
            }
                </code>
            	<code lang="VB">
            Sub RadMenu1_ItemDataBound(ByVal sender As Object, ByVal e As RadMenuEventArgs) Handles RadMenu1.ItemDataBound
                Dim item As RadMenuItem = e.RadMenuItem
                Dim dataRow As DataRowView = CType(e.Item.DataItem, DataRowView)
             
                item.ImageUrl = "image" + dataRow("ID").ToString() + ".gif"
                item.NavigateUrl = dataRow("URL").ToString()
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientMouseOver">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse moves over a menu item in the <strong>RadMenu</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientMouseOver</strong>
            		<font color="black">client-side event handler is called when the mouse moves over a
                menu item.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientMouseOver</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientMouseOverHandler(sender, eventArgs)<br/>
                         {<br/>
                         alert(eventArgs.get_item().get_text());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadMenu ID="RadMenu1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientMouseOver="onClientMouseOverHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientMouseOut">
            <remarks>
            	<para>If specified, the <strong>OnClientMouseOut</strong> client-side event handler
                is called when the mouse moves out of a menu item. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse moves out of a menu item in the <strong>RadMenu</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                 function onClientMouseOutHandler(sender, eventArgs)<br/>
                 {<br/>
                 alert(eventArgs.get_item().get_text());<br/>
                 }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                 runat= "server"<br/>
            		<strong>OnClientMouseOut="onClientMouseOutHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemFocus">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a menu item gets focus.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemFocusHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.get_item().get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemFocus="onClientItemFocusHandler"&gt;</strong><br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemFocus</strong> client-side event
                handler is called when a menu item is selected using either the keyboard (the [TAB]
                or arrow keys) or by clicking it. Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemBlur">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after an item loses focus.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientItemBlur</strong> client-side event handler
                is called when a menu item loses focus as a result of the user pressing a key or
                clicking elsewhere on the page. Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                 function onClientItemBlurHandler(sender, eventArgs)<br/>
                 {<br/>
                 alert(eventArgs.get_item().get_text());<br/>
                 }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                 runat="server"<br/>
            		<strong>OnClientItemBlur="onClientItemBlurHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemClicking">
            <remarks>
            	<para>This event is similar to <strong>OnClientItemFocus</strong> but fires only on
                mouse click.</para>
            	<para>If specified, the <strong>OnClientItemClicking</strong> client-side event
                handler is called before a menu item is clicked upon. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties, <strong>get_item()</strong> (the
                    instance of the menu item), <strong>get_cancel()/set_cancel()</strong> - indicating
            		if the event should be cancelled and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>The <strong>OnClientItemClicking</strong> event can be cancelled. To do so,
                return <strong>False</strong> from the event handler.</para>
            	<div>
            		<table class="hs-box"></table>
            	</div>
            </remarks>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a menu item is clicked.
            </summary>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemClickingHandler(sender, eventArgs)<br/>
                {<br/>
                if (eventArgs.get_item().get_text() == "News")<br/>
                {</para>
            	<para>return false;</para>
            	<para>}<br/>
                }<br/>
                &lt;/script&gt;<br/>
                &lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemClicking="onClientItemClickingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a menu item is clicked.
            </summary>
            <remarks>
            	<para>This event is similar to <strong>OnClientItemFocus</strong> but fires only on
                mouse click.</para>
            	<para>If specified, the <strong>OnClientItemClicked</strong> client-side event
                handler is called after a menu item is clicked upon. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            &lt;script type="text/javascript"&gt;<br/>
            function onClientItemClickedHandler(sender, eventArgs)<br/>
            {<br/>
            alert(eventArgs.get_item().get_text());<br/>
            }<br/>
            &lt;/script&gt;<br/>
            &lt;telerik:RadMenu ID="RadMenu1"<br/>
            runat="server"<br/>
            	<strong>OnClientItemClicked="onClientItemClickedHandler"</strong>&gt;<br/>
            ....<br/>
            &lt;/telerik:RadMenu&gt;
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemOpening">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items begin to open.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <requirements>
            	<para>If specified, the <strong>OnClientItemOpening</strong> client-side event handler
                is called when a group of child items opens. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties, <strong>get_item()</strong> (the
                    instance of the menu item), <strong>get_cancel()/set_cancel()</strong> - indicating
            		if the event should be cancelled and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event can be cancelled by calling eventArgs.set_cancel(true).</para>
            </requirements>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemOpeningHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.get_item().get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemOpening="onClientItemOpeningHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemOpened">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items opens.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <requirements>
            	<para>If specified, the <strong>OnClientItemOpened</strong> client-side event handler
                is called when a group of child items opens. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </requirements>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemOpenedHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.get_item().get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemOpen="onClientItemOpenedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemClosing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items is closing.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemClosingHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.get_item().get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemClose="onClientItemClosingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemClosing</strong> client-side event
                handler is called when a group of child items closes. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties, <strong>get_item()</strong> (the
                    instance of the menu item), <strong>get_cancel()/set_cancel()</strong> - indicating
            		if the event should be cancelled and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemClosed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items closes.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemClosedHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.get_item().get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemClose="onClientItemClosedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemClosed</strong> client-side event
                handler is called when a group of child items closes. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties, <strong>get_item()</strong> (the
                    instance of the menu item) and <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemPopulating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a menu item children are about to be populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemPopulatingHandler(sender, eventArgs)<br/>
                {<br/>
            		var item = eventArgs.get_item();<br/>
            		var context = eventArgs.get_context();<br/>
            		context["CategoryID"] = item.get_value();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemPopulating="onClientItemPopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemPopulating</strong> client-side event
                handler is called when a menu item children are about to be populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_item()</strong>, the instance of the menu item.</item>
            				<item><strong>get_context()</strong>, an user object that will be passed to the web service.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemPopulated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a menu item children were just populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemPopulatedHandler(sender, eventArgs)<br/>
                {<br/>
            		var item = eventArgs.get_item();<br/>
            		alert("Loading finished for " + item.get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemPopulated="onClientItemPopulatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemPopulated</strong> client-side event
                handler is called when a menu item children were just populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_item()</strong>, the instance of the menu item.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientItemPopulationFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the children of a menu item has failed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientItemPopulationFailedHandler(sender, eventArgs)<br/>
                {<br/>
            		var item = eventArgs.get_item();<br/>
            		var errorMessage = eventArgs.get_errorMessage();<br/>
            		<br/>
            		alert("Error: " + errorMessage);<br/>
            		eventArgs.set_cancel(true);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemPopulationFailed="onClientItemPopulationFailedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemPopulationFailed</strong> client-side event
                handler is called when the operation to populate the children of a menu item has failed.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_item()</strong>, the instance of the menu item.</item>
            				<item><strong>set_cancel()</strong>, set to true to suppress the default action (alert message).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.OnClientLoad">
            <remarks>
            	<para>If specified, the <strong>OnClienLoad</strong> client-side event handler is
                called after the menu is fully initialized on the client.</para>
            	<para>A single parameter - the menu client object - is passed to the
                handler.</para>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientLoadHandler(sender)<br/>
                {<br/>
            		alert(sender.get_id());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadMenu ID="RadMenu1"<br/>
                runat= "server"<br/>
            		<strong>OnClientLoad="onClientLoadHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the <strong>RadMenu</strong> client-side object is initialized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenu.ChildListElementCssClass">
            <summary>
            Will be serialized to the client, so it can render
            the UL element with of the root group with the appropriate class.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemCollection">
            <summary>
            Represents collection of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartGroupItemCollection">OrgChartGroupItemCollection</see> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.Add(Telerik.Web.UI.OrgChartGroupItem)">
            <summary>
            Add a new <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see> to the OrgChartGroupItemCollection if the collection does not contains it.
            </summary>
            <example>
            This example shows how to add an <see cref="T:Telerik.Web.UI.OrgChartGroupItem">Item</see> into OrgChartGroupItemCollection
            </example>
            <code lang="C#">
            orgChart.Nodes[0].GroupItems.Add(new OrgChartGroupItem());
            </code>
            <code lang="VB">
            orgChart.Nodes(0).GroupItems.Add(New OrgChartGroupItem())
            </code>
            <param name="item">
            The added <see cref="T:Telerik.Web.UI.OrgChartGroupItem">Item</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.Insert(System.Int32,Telerik.Web.UI.OrgChartGroupItem)">
            <summary>
            Insert a new <see cref="T:Telerik.Web.UI.OrgChartGroupItem">Item</see> to the OrgChartGroupItemCollection on a specific position.
            </summary>
            <example>
            This example shows how to insert a <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see> into OrgChartGroupItemCollection on first position
            </example>
            <code lang="C#">
            orgChart.Nodes[0].GroupItems.Insert(0, new OrgChartGroupItem());
            </code>
            <code lang="VB">
            orgChart.Nodes(0).GroupItems.Insert(0, New OrgChartGroupItem())
            </code>
            <param name="index">
            Integer position to insert at
            </param>
            <param name="item">
            The added <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.OrgChartGroupItem})">
            <summary>
            Add an IEnumerable of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> to the OrgChartGroupItemCollection.
            </summary>
            <param name="collection">
            IEnumerable of<see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Telerik.Web.UI.OrgChartGroupItem})">
            <summary>
            Insert a collection of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> to a specified index in the OrgChartGroupItemCollection.
            </summary>
            <param name="index">
            Integer the position to insert at
            </param>
            <param name="collection">
            IEnumerable of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.Remove(Telerik.Web.UI.OrgChartGroupItem)">
            <summary>
            Remove a <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see> from the OrgChartGroupItemCollection if the collection contains it.
            </summary>
            <example>
            This example shows how to remove an <see cref="T:Telerik.Web.UI.OrgChartGroupItem">Item</see> from OrgChartGroupItemCollection
            </example>
            <code lang="C#">
            var item = new OrgChartGroupItem();
            item.Text = "item1";
            orgChart.Nodes[0].GroupItems.Remove(item);
            </code>
            <code lang="VB">
            Dim item As New OrgChartGroupItem()
            item.Text = "item1"
            orgChart.Nodes(0).GroupItems.Remove(item)
            </code>
            <param name="item">
            The removed <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.RemoveAll(System.Predicate{Telerik.Web.UI.OrgChartGroupItem})">
            <summary>
            Remove all <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> in the collection matching the passed condition.
            </summary>
            <param name="match">
            Predicate to match <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.RemoveAt(System.Int32)">
            <summary>
            Remove the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see> on the specified position in the collection.
            </summary>
            <param name="index">
            Integer index
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.RemoveRange(System.Int32,System.Int32)">
            <summary>
            Removes a range of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> in the collection.
            </summary>
            <param name="index">
            Integer index - the starting point of the range
            </param>
            <param name="count">
            Integer count - the size of the range
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.Clear">
            <summary>
            Remove all <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItems</see> in the collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemCollection.SyncRenderedProperties">
            <summary>
            Synchronize <see cref="T:Telerik.Web.UI.OrgChartGroupItemCollectionRenderer">Renderer's</see> properties during OnPreRender stage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemCollection.Node">
            <summary>
            Gets or sets the node to which the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">items</see> belong.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemCollection.Renderer">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartGroupItemRenderer">Renderer</see> for OrgChartGroupItemCollection.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeCollection">
            <summary>
            Represents collection of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">OrgChartNodeCollection</see> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.Add(Telerik.Web.UI.OrgChartNode)">
            <summary>
            Add a new <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> to the OrgChartNodeCollection if the collection does not contains it.
            </summary>
            <example>
            This example shows how to add a <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> into OrgChartNodeCollection
            </example>
            <code lang="C#">
            orgChart.Nodes.Add(new OrgChartNode());
            </code>
            <code lang="VB">
            orgChart.Nodes.Add(New OrgChartNode())
            </code>
            <param name="node">
            The added <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.Insert(System.Int32,Telerik.Web.UI.OrgChartNode)">
            <summary>
            Insert a new <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> to the OrgChartNodeCollection on a specific position.
            </summary>
            <example>
            This example shows how to insert a <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> into OrgChartNodeCollection on first position
            </example>
            <code lang="C#">
            orgChart.Nodes.Insert(0, new OrgChartNode());
            </code>
            <code lang="VB">
            orgChart.Nodes.Insert(0, New OrgChartNode())
            </code>
            <param name="index">
            Integer position to insert at
            </param>
            <param name="node">
            The added <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.OrgChartNode})">
            <summary>
            Add a collection of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> to the OrgChartNodeCollection.
            </summary>
            <param name="collection">
            IEnumerable of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.InsertRange(System.Int32,System.Collections.Generic.IEnumerable{Telerik.Web.UI.OrgChartNode})">
            <summary>
            Insert a collection of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> to a specified index in the OrgChartNodeCollection.
            </summary>
            <param name="index">
            Integer the position to insert at
            </param>
            <param name="collection">
            IEnumerable of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.Remove(Telerik.Web.UI.OrgChartNode)">
            <summary>
            Remove a <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> from the OrgChartNodeCollection if the collection contains it.
            </summary>
            <example>
            This example shows how to remove a <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> from OrgChartNodeCollection
            </example>
            <code lang="C#">
            var node = new OrgChartNode();
            node.ColumnCount = 2;
            orgChart.Nodes.Remove(node);
            </code>
            <code lang="VB">
            Dim node As New OrgChartNode()
            node.ColumnCount = 2
            orgChart.Nodes.Remove(node)
            </code>
            <param name="node">
            The removed <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.RemoveAll(System.Predicate{Telerik.Web.UI.OrgChartNode})">
            <summary>
            Remove all <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> that match the passed criteria from the collection.
            </summary>
            <param name="match">
            Predicate to match <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> for removal
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.RemoveAt(System.Int32)">
            <summary>
            Remove the <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> on the specified position in the collection.
            </summary>
            <param name="index">
            Integer index
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.RemoveRange(System.Int32,System.Int32)">
            <summary>
            Removes a range of <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> in the collection.
            </summary>
            <param name="index">
            Integer index - the starting point of the range
            </param>
            <param name="count">
            Integer count - the size of the range
            </param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.Clear">
            <summary>
            Remove all <see cref="T:Telerik.Web.UI.OrgChartNode">Nodes</see> in the collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeCollection.SyncRenderedProperties">
            <summary>
            Synchronize <see cref="T:Telerik.Web.UI.OrgChartNodeCollectionRenderer">Renderer's</see> properties during OnPreRender stage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeCollection.NodesContainer">
            <summary>
            Gets and sets <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">OrgChartNodeCollection's</see> parent container.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeCollection.IsRootNodeCollection">
            <summary>
            Check if the <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">OrgChartNodeCollection</see> is the root node collection for <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeCollection.Renderer">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartNodeCollectionRenderer">Renderer</see> for OrgChartNodeCollection
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItem">
            <summary>
            Represents an <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItem.#ctor(Telerik.Web.UI.RadOrgChart)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> class.
            </summary>
            <param name="orgChart"><see cref="T:Telerik.Web.UI.RadOrgChart">OrgChart</see> to which the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">item</see> belongs.</param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItem.SyncRenderedProperties">
            <summary>
            Synchronize <see cref="T:Telerik.Web.UI.OrgChartGroupItemRenderer">Renderer's</see> properties during OnPreRender stage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.OrgChart">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.RadOrgChart">OrgChart</see> to which the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">item</see> belongs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.ImageUrl">
            <summary>
            Gets or sets the item's image URL.
            </summary>
            <value> The URL can be a full or relative path to an image.</value>
            <remarks>
            If the property is not set a default image will be rendered.
            </remarks>
            <example>
            This example shows how set ImageURL
            </example>
            <code lang="C#">
            orgChart1.Nodes[0].GroupItems[0].ImageUrl = "Images/Copy.jpg";
            orgChart1.Nodes[0].GroupItems[0].ImageUrl = "http://sampleimages.com/sampleImage.jpg";
            </code>
            <code lang="VB">
            orgChart1.Nodes(0).GroupItems(0).ImageUrl = "Images/Copy.jpg"
            orgChart1.Nodes(0).GroupItems(0).ImageUrl = "http://sampleimages.com/sampleImage.jpg"
            </code>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.ImageAltText">
            <summary>
            Gets or sets the item image's alternative text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.Text">
            <summary>
            Gets or sets item's text.
            </summary>
            <remarks>
            The set text will be rendered on the item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.Renderer">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartGroupItemRenderer">Renderer</see> for <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.RenderedFields">
            <summary>
            Gets <see cref="T:Telerik.Web.UI.OrgChartRenderedFieldCollection">OrgChartRenderedFieldCollection</see> for <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.Template">
            <summary>
            Gets or sets the Template for <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see>.
            </summary>
            <remarks>When a template is set, it is applied only for the current item.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.Node">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> to which the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">item</see> belongs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.DataItem">
            <summary>
            Gets or sets data source DataItem during data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItem.Telerik#Web#UI#IItem#Children">
            <summary>
            Gets or sets item's Children.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNode">
            <summary>
            Represents an <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNode.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNode.#ctor(Telerik.Web.UI.RadOrgChart)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> class.
            </summary>
            <param name="orgChart"><see cref="T:Telerik.Web.UI.RadOrgChart">OrgChart</see> to which the <see cref="T:Telerik.Web.UI.OrgChartNode">node</see> belongs.</param>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNode.SyncRenderedProperties">
            <summary>
            Synchronize <see cref="T:Telerik.Web.UI.OrgChartNodeRenderer">Renderer's</see> properties during OnPreRender stage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.GroupItems">
            <summary>
            Gets or sets <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode's</see> <see cref="T:Telerik.Web.UI.OrgChartGroupItemCollection">GroupItem collection</see>.
            </summary>
            <remarks> Collection of all GroupItems in the Node.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.Renderer">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartNodeRenderer">Renderer</see> for <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.Container">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">Node collection</see> containing the current Node.
            </summary>
            <remarks> The collection containing the current Node.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.Parent">
            <summary>
            Gets <see cref="T:Telerik.Web.UI.OrgChartNode">Node's</see> parent in the hierarchy (OrgChartNode/RadOrgChart).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.RenderedFields">
            <summary>
            Gets <see cref="T:Telerik.Web.UI.OrgChartRenderedFieldCollection">OrgChartRenderedFieldCollection</see> for the<see cref="T:Telerik.Web.UI.OrgChartGroupItem">Node</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.ItemTemplate">
            <summary>
            Gets or sets Template for all contained GroupItems.
            </summary>
            <remarks>When a template is set, it is applied for all items in the Node, which doesn't have a template set.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.Level">
            <summary>
            Gets the depth level of the Node towards the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see>.
            </summary>
            <remarks> When the Node is not added in RadOrgChart, the level is -1.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.ColumnCount">
            <summary>
            Gets or sets the number of columns in the Node's visualization.
            </summary>
            <remarks> Simply breaks the single-line presentation of the group in <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> on multiple lines.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNode.Nodes">
            <summary>
            Gets a collection of the direct child Nodes of the current.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartRenderedField">
             <summary>
             Represents an <see cref="T:Telerik.Web.UI.OrgChartRenderedField">OrgChartRenderedField</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
             </summary>
             <remarks>
             RenderedField is an extra text information about every Node or Item. They can be added either to the
             <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> or <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> of the RadOrgChart, or to the both.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedField.DataField">
            <summary>
            Gets or sets field name of the data item that populates the entity (Node/GroupItem).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedField.Label">
            <summary>
            Gets or sets description about custom field's text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedField.Text">
            <summary>
            Gets or sets short description of the custom field that will appears in the <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> or <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedField.TextToRender">
            <summary>
            Gets the text which is to be rendered in the <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> or the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments">
            <summary>
            Represents an <see cref="T:Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments">OrgChartGroupItemDataBoundEventArguments</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
            <remarks>
            OrgChartGroupItemDataBoundEventArguments is an event argument of the OnGroupItemDataBound event handler.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments.#ctor(Telerik.Web.UI.OrgChartGroupItem)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments">OrgChartGroupItemDataBoundEventArguments</see> class.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> which is bound.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments.Item">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see> which is created from a data source.
            </summary>
            <remarks>
             The item is added to it's <see cref="T:Telerik.Web.UI.OrgChartNode">parent-node's</see> <see cref="T:Telerik.Web.UI.OrgChartGroupItemCollection">GroupItems Collection</see>.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeDataBoundEventArguments">
            <summary>
            Represents an <see cref="T:Telerik.Web.UI.OrgChartNodeDataBoundEventArguments">OrgChartNodeDataBoundEventArguments</see> in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
            <remarks>
            OrgChartNodeDataBoundEventArguments is an event argument of the OnNodeDataBound event handler.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.OrgChartNodeDataBoundEventArguments.#ctor(Telerik.Web.UI.OrgChartNode)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.OrgChartNodeDataBoundEventArguments">OrgChartNodeDataBoundEventArguments</see> class.
            </summary>
            <param name="node">The <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> which is bound.</param>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeDataBoundEventArguments.Node">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see> which is created from a data source.
            </summary>
            <remarks>
            It is added to OrgChartNodeCollection and all of its OrgChartGroupItems are binded and inserted in its GroupItems collection.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeDataBoundEventHandler">
             <example>
             This example shows how to set event handler for OnNodeDataBound event.
             </example>
            <code lang="C#">
             protected void Page_Load(object sender, EventArgs e)
             {
                 RadOrgChart1.NodeDataBound += new OrgChartNodeDataBoundEventHandler(RadOrgChart1_NodeDataBound);
             }
            
             void RadOrgChart1_NodeDataBound(object sender, OrgChartNodeDataBoundEventArguments e)
             {
                 e.Node.RenderedFields.Add(new OrgChartRenderedField() { Text = "SampleFieldText" });
             }
             </code>
             <code lang="VB">
             Protected Sub RadOrgChart2_NodeDataBound(sender As Object, e As Telerik.Web.UI.OrgChartNodeDataBoundEventArguments) Handles RadOrgChart1.NodeDataBound
                 e.Node.RenderedFields.Add(New OrgChartRenderedField() With {.Text = "SampleFieldText"})
             End Sub
             </code>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemDataBoundEventHandler">
             <example>
             This example shows how to set event handler for OnGroupItemDataBound  event.
             </example>
             <code lang="C#">
             protected void Page_Load(object sender, EventArgs e)
             {
                 RadOrgChart1.GroupItemDataBound += new OrgChartGroupItemDataBoundEventHandler(RadOrgChart1_GroupItemDataBound);
             }
            
             void RadOrgChart1_GroupItemDataBound(object sender, OrgChartGroupItemDataBoundEventArguments e)
             {
                 e.Item.RenderedFields.Add(new OrgChartRenderedField() { Text = "SampleFieldText" });
             }
             </code>
             <code lang="VB">
             Protected Sub RadOrgChart2_GroupItemDataBound(sender As Object, e As Telerik.Web.UI.OrgChartGroupItemDataBoundEventArguments) Handles RadOrgChart1.GroupItemDataBound
                 e.Item.RenderedFields.Add(New OrgChartRenderedField() With {.Text = "SampleFieldText"})
             End Sub
             </code>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupEnabledBinding">
            <summary>
            Represents the GroupEnabledBinding settings in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupEnabledBinding.NodeBindingSettings">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartNodeBindingSettings">NodeBindingSettings</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupEnabledBinding.GroupItemBindingSettings">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartGroupItemBindingSettings">GroupItemBindingSettings</see>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemBindingSettings">
            <summary>
            Represents an GroupItemBindingSettings section in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
            <remarks>
            <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> supports binding to hierarchical data including groups as logical entities.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataFieldNodeID">
            <summary>
            Gets or sets the name of the data field which indicates the <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem's</see> parent <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataImageUrlField">
            <summary>
            Gets or sets the name of the data field containing the GroupItem's ImageUrl.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataImageAltTextField">
            <summary>
            Gets or sets the name of the data field containing the GroupItem's ImageAltText.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataTextField">
            <summary>
            Gets or sets the name of the data field containing the GroupItem's Text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataSource">
            <summary>
            Gets or sets an instance of GroupItem's data source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataSourceID">
            <summary>
            Gets or sets the ID of the GroupItem's data source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemBindingSettings.DataFieldID">
            <summary>
            Gets or sets the name of the data field used to uniquely identify each row.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeBindingSettings">
            <summary>
            Represents an NodeBindingSettings section in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
            <remarks>
            <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> supports binding to hierarchical data including groups as logical entities.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeBindingSettings.DataFieldParentID">
            <summary>
            Gets or sets the name of the data field used to identify the parent Node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeBindingSettings.DataSource">
            <summary>
            Gets or sets an instance of Node's data source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeBindingSettings.DataSourceID">
            <summary>
            Gets or sets the ID of the Node's data source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeBindingSettings.DataFieldID">
            <summary>
            Gets or sets the name of the data field used to uniquely identify each row.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartStyles">
            <summary>
            Represents all CSS classes that are rendered to the RadOrgChart.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadOrgChart">
            <summary>
            RadOrgChart is a flexible tool for visualization of organizational structures and hierarchies.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadOrgChart.GetAllGroupItems">
            <summary>
            Returns all GroupItems in the RadOrgChart.
            </summary>
            <returns>Collection of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadOrgChart.GetAllGroupItems(Telerik.Web.UI.RadOrgChart.OrgChartGroupItemCriteria)">
            <summary>
            Returns items by some criteria (lambda).
            </summary>
            <returns>Collection of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see></returns>
            <param name="criteria">Lambda expression</param>
        </member>
        <member name="M:Telerik.Web.UI.RadOrgChart.GetXml">
            <summary>
            Gets OrgChart serialized as XML.
            </summary>
            <returns>string (XML).</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadOrgChart.LoadContentFile(System.String)">
            <summary>
            Deserializes OrgChart from XML file.
            </summary>
            <param name="xmlFileName">Relative or virtual path of the loaded Xml file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadOrgChart.LoadXml(System.String)">
            <summary>
            Deserializes OrgChart from XML string.
            </summary>
            <param name="xml">string (XML)</param>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DefaultImageUrl">
            <summary>
            Gets or sets default image URL for every GroupItem image.
            </summary>
            <remarks>
            When GroupItem's image URL is not set a default image is rendered for every <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DisableDefaultImage">
            <summary>
            Gets or sets whether to render a default image for every <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DataFieldID">
            <summary>
            Gets or sets the data field holding the unique identifier for a Node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DataFieldParentID">
            <summary>
            Gets or sets the data field holding the ID of the parent Node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DataImageUrlField">
            <summary>
            Gets or sets the data field holding an image URL for the currently bound GroupItem.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DataImageAltTextField">
            <summary>
            Gets or sets the data field holding the ImageAltText property for the currently bound GroupItem.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.DataTextField">
            <summary>
            Gets or sets the data field holding the Text of the currently bound GroupItem.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.GroupEnabledBinding">
            <summary>
            Gets or sets <see cref="T:Telerik.Web.UI.OrgChartGroupEnabledBinding">GroupEnabledBinding</see> settings for RadOrgChart.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.MaxDataBindDepth">
            <summary>
            Gets or sets the maximum depth of the RadOrgChart hierarchy which will be binded.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.RenderedFields">
            <summary>
            Gets <see cref="T:Telerik.Web.UI.OrgChartRenderedFieldsSettings">RenderedFields</see> settings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.ItemTemplate">
            <summary>
            Gets or sets template for all items that doesn't have template nor does their node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.GroupColumnCount">
            <summary>
            Gets or sets the number of columns in all Node's visualization, except these that have their ColumnCount property set locally.
            </summary>
            <remarks>
            Simply breaks the single-line presentation of the Node (group) in <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> on multiple lines.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadOrgChart.Nodes">
            <summary>
            Gets OrgChart's child <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">nodes</see>. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartRenderedFieldsSettings">
            <summary>
            Represents the OrgChartRenderedFieldsSettings section in the <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see> control.
            </summary>
            <remarks>
            The set <see cref="T:Telerik.Web.UI.OrgChartRenderedField">RenderedFields</see> will apply for every
            <see cref="T:Telerik.Web.UI.OrgChartNode">Node</see> or <see cref="T:Telerik.Web.UI.OrgChartGroupItem">GroupItem</see> in the RadOrgChart.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedFieldsSettings.NodeFields">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartRenderedFieldCollection">RenderedFields</see> collection for OrgChartNodes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartRenderedFieldsSettings.ItemFields">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.OrgChartRenderedFieldCollection">RenderedFields</see> collection for OrgChartGroupItems.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemCollectionRenderer">
            <summary>
            Represents the renderer of <see cref="T:Telerik.Web.UI.OrgChartGroupItemCollection">OrgChartGroupItemCollection</see>.
            </summary>
            <remarks>
            Renders OrgChartGroupItemCollection.
            All renderers are attached to the control's tree during PreRender stage.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemCollectionRenderer.IsGroup">
            <summary>
            Gets or sets if the parent Node should be visually presented as group.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemCollectionRenderer.TagKey">
            <summary>
            The default HtmlTextWriterTag is overrided to div.
            </summary>
            <remarks>
            The base HtmlTextWriterTag is span.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartGroupItemRenderer">
            <summary>
            Represents the renderer of <see cref="T:Telerik.Web.UI.OrgChartGroupItem">OrgChartGroupItem</see>.
            </summary>
            <remarks>
            Renders OrgChartGroupItem.
            All renderers are attached to the control's tree during PreRender stage.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartGroupItemRenderer.TagKey">
            <summary>
            The default HtmlTextWriterTag is overrided to li or div(depends on if the item's GroupItemCollection is a group)
            </summary>
            <remarks>
            The base HtmlTextWriterTag is span.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeCollectionRenderer">
            <summary>
            Represents the renderer of <see cref="T:Telerik.Web.UI.OrgChartNodeCollection">OrgChartNodeCollection</see>.
            </summary>
            <remarks>
            Renders OrgChartNodeCollection.
            All renderers are attached to the control's tree during PreRender stage.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeCollectionRenderer.Level">
            <summary>
            Gets or sets depth level of the Node towards <see cref="T:Telerik.Web.UI.RadOrgChart">RadOrgChart</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeCollectionRenderer.TagKey">
            <summary>
            The default HtmlTextWriterTag is overrided to ul.
            </summary>
            <remarks>
            The base HtmlTextWriterTag is span.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OrgChartNodeRenderer">
            <summary>
            Represents the renderer of <see cref="T:Telerik.Web.UI.OrgChartNode">OrgChartNode</see>.
            </summary>
            <remarks>
            Renders OrgChartNode.
            All renderers are attached to the control's tree during PreRender stage.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.OrgChartNodeRenderer.TagKey">
            <summary>
            The default HtmlTextWriterTag is overrided to li.
            </summary>
            <remarks>
            The base HtmlTextWriterTag is span.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelBar">
            <summary>A navigation control used for building collapsible side-menu systems and Outlook-type panels. </summary>
            <remarks>
            	<para>
                    The <b>RadPanelBar</b> control is used to display a list of items in a Web Forms
                    page and is often used control for building  collapsible side-menu 
                    interfaces. The <b>RadPanelBar</b> control supports the following features:
                </para>
            	<list type="bullet">
            		<item>Databinding that allows the control to be populated from various
                    datasources</item>
            		<item>Programmatic access to the <strong>RadPanelBar</strong> object model
                    which allows to dynamic creation of panelbars, populate items, set
                    properties.</item>
            		<item>Customizable appearance through built-in or user-defined skins.</item>
            	</list>
            	<h3>Items</h3>
            	<para>
                    The <strong>RadPanelBar</strong> control is made up of tree of items represented
                    by <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> objects. Items at the first level (level 0) are
                    called root items. A items that has a parent item is called a child item. All root
                    items are stored in the <see cref="P:Telerik.Web.UI.RadPanelBar.Items">Items</see> collection. Child items are
                    stored in a parent item's <see cref="P:Telerik.Web.UI.RadPanelItem.Items">Items</see> collection.
                </para>
            	<para>
                    Each item has a <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> and a <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property. 
            		The value of the <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is displayed in the <b>RadPanelBar</b> control, 
            		while the <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property is used to store any additional data about the item, 
            		such as data passed to the postback event associated with the item. When clicked, a item can
                    navigate to another Web page indicated by the <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see> property.
                </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.IRadPanelItemContainer">
            <summary>
                Defines properties that menu item containers (<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see>,
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see>) should implement
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadPanelItemContainer.Owner">
            <summary>Gets the parent <see cref="T:Telerik.Web.UI.IRadPanelItemContainer">IMenuItemContainer</see>.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadPanelItemContainer.Items">
            <summary>Gets the collection of child items.</summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see> that represents the child
                items.
            </value>
            <remarks>
            Use this property to retrieve the child items. You can also use it to
            programmatically add or remove items.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.#ctor">
             <summary>
            		Initializes a new instance of the RadPanelBar class.
             </summary>
             <remarks>
            		Use this constructor to create and initialize a new instance of the RadPanelBar
            		control.
             </remarks>
             <example>
                 The following example demonstrates how to programmatically create a RadPanelBar
                 control. 
                 <code lang="CS">
            			void Page_Load(object sender, EventArgs e)
            			{
            				RadPanelBar RadPanelBar1 = new RadPanelBar();
            				RadPanelBar1.ID = "RadPanelBar1";
             
            				if (!Page.IsPostBack)
            				{
            					//RadPanelBar persist its item in ViewState (if EnableViewState is true). 
            					//Hence items should be created only on initial load.
             
            					PadPanelItem sportItem= new PadPanelItem("Sport");
            					RadPanelBar1.Items.Add(sportItem);
            			     
            					PadPanelItem newsItem = new PadPanelItem("News");
            					RadPanelBar1.Items.Add(newsItem);
            				}
             
            				PlaceHolder1.Controls.Add(newsItem);
            			}
                 </code>
             	<code lang="VB">
            			Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            				Dim RadPanelBar1 As RadPanelBar = New RadPanelBar()
            				RadPanelBar1.ID = "RadPanelBar1"
            				
            				If Not Page.IsPostBack Then
            					'RadPanelBar persist its item in ViewState (if EnableViewState is true).				
             				'Hence items should be created only on initial load.
             
            					Dim sportItem As PadPanelItem = New PadPanelItem("Sport")
            					RadPanelBar1.Items.Add(sportItem)
            
            					Dim newsItem As PadPanelItem = New PadPanelItem("News")
            					RadPanelBar1.Items.Add(newsItem)
            				End If
             
            				PlaceHolder1.Controls.Add(newsItem)
            			 End Sub
                 </code>
             </example>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.LoadContentFile(System.String)">
            <summary>
            Populates the <strong>RadPanelBar</strong> control from external XML file.
            </summary>
            <remarks>
            The newly added items will be appended after any existing ones.
            </remarks>
            <example>
                The following example demonstrates how to populate <strong>RadPanelBar</strong> control
                from XML file. 
                <code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                {
                     RadPanelBar1.LoadContentFile("~/RadPanelBar/Examples/panelbar.xml");
                }
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(sender As Object, e As EventArgs) Handles MyBase.Load
                If Not Page.IsPostBack Then
                    RadPanelBar1.LoadContentFile("~/RadPanelBar/Examples/panelbar.xml")
                End If
            End Sub
                </code>
            </example>
            <param name="xmlFileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItemByText(System.String)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItemByValue(System.String)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>  
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItemByUrl(System.String)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">Item</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see>
                property equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see>
                property is equal to the specified value.
            </returns>
            <remarks>
            The method returns the first Item matching the search criteria. If no Item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="url">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.FindItem(System.Predicate{Telerik.Web.UI.RadPanelItem})">
            <summary>
            Returns  the first <strong>RadPanelItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadPanel1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadPanelItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadPanel1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadPanelItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.GetAllItems">
            <summary>
            Gets a linear list of all items in the <strong>RadPanelBar</strong>
            control.
            </summary>
            <returns>
            An <strong>IList&lt;RadPanelBarItem&gt;</strong> containing all items (from all hierarchy
            levels).
            </returns>
            <remarks>
            Use the <strong>GetAllItems</strong> method to obtain a linear collection of all
            items regardless their place in the hierarchy.
            </remarks>
            <example>
                The following example demonstrates how to disable all items within a
                <strong>RadPanelBar</strong> control. 
                <code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                foreach (RadPanelBarItem item in RadPanelBar1.GetAllItems())
                {
                    item.Enabled = false;
                }
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                For Each childItem As RadPanelBarItem In RadPanelBar1.GetAllItems
                    childItem.Enabled = False
                Next
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.ClearSelectedItems">
            <summary>
            This methods clears the selected items of the current RadPanelBar instance. Useful when you need to clear item selection after postback.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.CollapseAllItems">
             <summary>
            This methods collapses all expanded panel items
             </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.OnItemClick(Telerik.Web.UI.RadPanelBarEventArgs)">
            <summary>
            Raises the ItemClick event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.OnItemDataBound(Telerik.Web.UI.RadPanelBarEventArgs)">
            <summary>
            Raises the ItemDataBound event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBar.OnItemCreated(Telerik.Web.UI.RadPanelBarEventArgs)">
            <summary>
            Raises the ItematCreated event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding an item, removing an item, changing an item's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<item>adding a new item</item>
            			<item>removing existing item</item>
            			<item>clearing the children of an item or the control itself</item>
            			<item>changing a property of the item</item>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadPanelItem&gt; operation in RadToolBar1.ClientChanges)
            		{
            			RadPanelItem item = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//An item has been inserted - operation.Item contains the inserted item
            				break;
            				case ClientOperationType.Remove:
            					//An item has been inserted - operation.Item contains the removed item. 
                             //Keep in mind the item has been removed from the panelbar.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadPanelItem&gt; update = operation as UpdateClientOperation&lt;RadPanelItem&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is null then the root items have been removed.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadPanelItem) In RadToolBar1.ClientChanges
            				Dim item As RadPanelItem = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'An item has been inserted - operation.Item contains the inserted item
            					Exit Select
            					Case ClientOperationType.Remove
            						'An item has been inserted - operation.Item contains the removed item. 
            						'Keep in mind the item has been removed from the panelbar.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadPanelItem) = TryCast(operation, UpdateClientOperation(Of RadPanelItem))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						'All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is Nothing then the root items have been removed.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see> object that contains the root items of the current RadPanelBar control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see> that contains the root items of the current RadPanelBar control. By default
            	the collection is empty (RadPanelBar has no children).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the child items of RadPanelBar. You can also use the <b>Items</b> property to
            	manage the root items. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of root items.
                <code lang="CS">
            		RadPanelBar1.Items[0].Text = "Example";
            		RadPanelBar1.Items[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadPanelBar1.Items(0).Text = "Example"
            		RadPanelBar1.Items(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.SelectedItem">
            <summary>Gets the selected panel item.</summary>
            <value>
            Returns the panel item which is currently selected. If no item is selected
            the <strong>SelectedItem</strong> property will
            return <strong>null</strong> (<strong>Nothing</strong> in VB.NET).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.ItemTemplate">
            <summary>
            Gets or sets the template for displaying the items in
            <strong>RadPanelBar</strong>.
            </summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying panel items. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>The <strong>ItemTemplate</strong> property sets a template that will be used
                for all panel items.</para>
            	<para>
                    To specify unique display for individual items use the
                    <see cref="P:Telerik.Web.UI.RadPanelItem.ItemTemplate">ItemTemplate</see> property of the
                    <strong>RadPanelItem</strong> class.
                </para>
            </value>
            <example>
            	<para>The following example demonstrates how to use the
                <strong>ItemTemplate</strong> property to add a CheckBox for each item.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadPanelBar runat="server" ID="RadPanelBar1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;ItemTemplate&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;asp:CheckBox runat="server"
                        ID="CheckBox"&gt;&lt;/asp:CheckBox&gt;<br/>
                        &lt;asp:Label runat="server" ID="Label1"</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>Text='&lt;%# DataBinder.Eval(Container, "Text") %&gt;'</para>
            				<para>&gt;&lt;/asp:Label&gt;</para>
            			</blockquote>
            		</blockquote>
            		<para>&lt;/ItemTemplate&gt;</para>
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadPanelItem Text="News" /&gt;</para>
            			<para>&lt;telerik:RadPanelItem Text="Sports" /&gt;</para>
            			<para>&lt;telerik:RadPanelItem Text="Games" /&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadPanelBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.ExpandMode">
            <summary>
            Gets of sets a value indicating the behavior of RadPanelbar when an item is
            expanded.
            </summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.PanelBarExpandMode">PanelBarExpandMode Enumeration</see>
                values. The default value is <strong>MultipleExpandedItems</strong>.
            </value>
            <remarks>
            	<para>Use the <strong>ExpandMode</strong> property to specify the way RadPanelbar
                should behave after an item is expanded. The available options are:</para>
            	<list type="bullet">
            		<item><strong>MultipleExpandedItems</strong> (default) - More than one item can
                    be expanded at a time.</item>
            		<item><strong>SingleExpandedItem</strong> - Only one item can be expanded at a
                    time. Expanding another item collapses the previously expanded one.</item>
            		<item><strong>FullExpandedItem</strong> - Only one item can be expanded at a
                    time. The expanded area occupies the entire height of the RadPanelbar. The
                    <strong>Height</strong> property should be set in order
                    <strong>RadPanelbar</strong> to operate correctly in this mode.</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.AllowCollapseAllItems">
            <summary>
            Gets or sets a value indicating whether all items can be collapsed.
            This allows all the items to be collapsed even if the panelbar's ExpandMode is set to <strong>SingleExpandedItem</strong> or <strong>FullExpandedItem</strong> mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.PostBackUrl">
            <summary>
            	<para>Gets or sets the URL of the page to post to from the current page when an item
                from the panel is clicked.</para>
            </summary>
            <value>
            The URL of the Web page to post to from the current page when an item from the
            panel control is clicked. The default value is an empty string (""), which causes
            the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.MaxDataBindDepth">
            <summary>
            	Gets or sets the maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control.
            </summary>
            <value>
            	The maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control. The default is -1, which binds all the levels in the data source to the control.
            </value>
            <remarks>
            	When binding the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control to a data source, use the MaxDataBindDepth 
            	property to limit the number of levels to bind to the control. For example, setting this property to 2 binds only 
            	the root panel items and their immediate children. All remaining records in the data source are ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.PersistStateInCookie">
            <summary>
            Gets or sets a value indicating whether the control would persists its state
            between pages (expanded and selected items).
            </summary>
            <value>
            	<strong>true</strong> if the control would persist its state;
            <strong>false</strong> otherwise. The default value is <strong>false</strong>.
            </value>
            <remarks>
            	<para>Use the <strong>PersistStateInCookie</strong> property to make
                <strong>RadPanelbar</strong> persist its state between pages. This feature requires
                browser cookies to be enabled. Also the <strong>ClientID</strong> and
                <strong>ID</strong> properties of the <strong>RadPanelbar</strong> control must be
                the same in all pages accessible via the control (and containing it).</para>
            	<para>Page1.aspx:</para>
            	<para>&lt;radP:RadPanelbar <strong>ID="RadPanelbar1"</strong> &gt; ...
                &lt;/radP:RadPanelbar&gt;</para>
            	<para>Page2.aspx</para>
            	<para>&lt;radP:RadPanelbar <strong>ID="RadPanelbar1"</strong> &gt; ...
                &lt;/radP:RadPanelbar&gt;</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.CookieName">
            <summary>
            Specifies the name of the cookie which should be used when PersistStateInCookie is set to true.
            </summary>
            <remarks>
            If this property is not set the ClientID property will be used as the name of the cookie.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.ExpandAnimation">
            <summary>Gets the settings for the animation played when an item opens.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                expand animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>ExpandAnimation</strong> property to customize the expand
                    animation of <strong>RadPanelBar</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see>,
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> and the
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the collapse animation you can use the
                    <see cref="P:Telerik.Web.UI.RadPanelBar.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>ExpandAnimation</strong>
                of RadPanelBar. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadPanelBar ID="RadPanelBar1" runat="server"&gt;</para>
            		<para><strong>&lt;ExpandAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="News" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadPanelBarItem&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Sport" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadPanelBarItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadPanelBar&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadPanelBar1.ExpandAnimation.Type = AnimationType.Linear;
                RadPanelBar1.ExpandAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadPanelBar1.ExpandAnimation.Type = AnimationType.Linear
                RadPanelBar1.ExpandAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.ExpandDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a panel item starts to
            open.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            0 milliseconds.
            </value>
            <remarks>
            	<para>Use the <strong>ExpandDelay</strong> property to delay item opening.</para>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadPanelBar.CollapseDelay">CollapseDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify a half second (500
                milliseconds) timeout prior to item opening:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadPanelBar ID="RadPanelBar1" runat="server"
                <strong>ExpandDelay="500"</strong> /&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.CollapseAnimation">
            <summary>Gets the settings for the animation played when an item closes.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                collapse animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>CollapseAnimation</strong> property to customize the expand
                    animation of <strong>RadPanelBar</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see>,
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> and the
                    items are collapsed.<br/>
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>. To customize the expand animation you can
                    use the <see cref="P:Telerik.Web.UI.RadPanelBar.ExpandAnimation">ExpandAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the
                <strong>CollapseAnimation</strong> of RadPanelBar. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadPanelBar ID="RadPanelBar1" runat="server"&gt;</para>
            		<para><strong>&lt;CollapseAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="News" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadPanelBarItem&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Sport" &gt;</para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadPanelBarItem Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadPanelBarItem&gt;</para>
            		<para>&lt;/Items&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadPanelBar&gt;</para>
            		<code lang="CS">
            		</code>
            		<code lang="VB">
            		</code>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadPanelBar1.CollapseAnimation.Type = AnimationType.Linear;
                RadPanelBar1.CollapseAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadPanelBar1.CollapseAnimation.Type = AnimationType.Linear
                RadPanelBar1.CollapseAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.CollapseDelay">
            <summary>
            Gets or sets a value indicating the timeout after which a panel item starts to
            close.
            </summary>
            <value>
            An integer specifying the timeout measured in milliseconds. The default value is
            0 milliseconds.
            </value>
            <remarks>
            	<para>
                    To customize the timeout prior to item closing use the
                    <see cref="P:Telerik.Web.UI.RadPanelBar.ExpandDelay">ExpandDelay</see> property.
                </para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify one second (1000
                milliseconds) timeout prior to item closing:</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadPanelBar ID="RadPanelBar1" runat="server"
                <strong>CollapseDelay="1000"</strong> /&gt;</para>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadPanelBar.ItemCreated">
            <summary>
            Occurs on the server when an item in the <strong>RadPanelBar</strong> control is
            created.
            </summary>
            <remarks>
            	<para>The <b>ItemCreated</b> event is raised every time a new item is
                added.</para>
            	<para>The <b>ItemCreated</b> event is not related to data binding and you
                cannot retrieve the <strong>DataItem</strong> of the item in the event
                handler.</para>
            	<para>The <b>ItemCreated</b> event is often useful in scenarios where you want
                to initialize all items - for example setting the <strong>ToolTip</strong> of each
                <strong>RadPanelBarItem</strong> to be equal to the <strong>Text</strong> property.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>ItemCreated</strong>
                event to set the <strong>ToolTip</strong> property of each item.
                <code lang="CS">
            private void RadPanelBar1_ItemCreated(object sender, Telerik.WebControls.RadPanelBarItemEventArgs e)
            {
                e.Item.ToolTip = e.Item.Text;
            }
                </code>
            	<code lang="VB">
            Sub RadPanelBar1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.WebControls.RadPanelBarItemEventArgs) Handles RadPanelBar1.ItemCreated
                e.Item.ToolTip = e.Item.Text
            End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadPanelBar.TemplateNeeded">
            <summary>Occurs before template is being applied to the panel item.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the panel item, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for items
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property of the panel items. 
                <code lang="CS">
            		 protected void RadPanelBar1_TemplateNeeded(object sender, Telerik.Web.UI.RadPanelBarEventArgs e)
            		 {
            		    string value = e.Item.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              e.Item.ItemTemplate = textBoxTemplate;        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadPanelBar1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadPanelBarEventArgs) Handles RadPanelBar1.TemplateNeeded
                         Dim value As String = e.Item.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 e.Item.ItemTemplate = textBoxTemplate
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadPanelBar.ItemClick">
            <summary>
                Occurs on the server when a panel item in the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see>
                control is clicked.
            </summary>
            <remarks>
            	<para>
            		The panel will also postback if you navigate to a panel item
                    using the [panel item] key and then press [enter] on the panel item that is focused. The
                    instance of the clicked panel item is passed to the <strong>ItemClick</strong> event
                    handler - you can obtain a reference to it using the eventArgs.RadPanelBarItem property.
                </para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadPanelBar.ItemDataBound">
            <summary>Occurs after a panel item is data bound.</summary>
            <remarks>
            	<para>
                    The <strong>ItemDataBound</strong> event is raised for each panel item upon
                    databinding. You can retrieve the item being bound using the event arguments.
                    The <strong>DataItem</strong> associated with the item can be retrieved using
                    the <see cref="P:Telerik.Web.UI.RadPanelItem.DataItem">DataItem</see> property.
                </para>
            	<para>The <strong>ItemDataBound</strong> event is often used in scenarios when
                you want to perform additional mapping of fields from the <strong>DataItem</strong>
                to their respective properties in the <strong>RadPanelBarItem</strong> class.</para>
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> properties using the <strong>ItemDataBound</strong>
                event.
            	<code lang="CS">
            private void RadPanelBar1_ItemDataBound(object sender, Telerik.WebControls.RadPanelBarEventArgs e)
            {
                RadPanelBarItem item = e.RadPanelBarItem;
                DataRowView dataRow = (DataRowView) e.Item.DataItem;
             
                item.ImageUrl = "image" + dataRow["ID"].ToString() + ".gif";
                item.NavigateUrl = dataRow["URL"].ToString();
            }
                </code>
            	<code lang="VB">
            Sub RadPanelBar1_ItemDataBound(ByVal sender As Object, ByVal e As RadPanelBarEventArgs) Handles RadPanelBar1.ItemDataBound
                Dim item As RadPanelBarItem = e.RadPanelBarItem
                Dim dataRow As DataRowView = CType(e.Item.DataItem, DataRowView)
             
                item.ImageUrl = "image" + dataRow("ID").ToString() + ".gif"
                item.NavigateUrl = dataRow("URL").ToString()
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            before the browser context panel shows (after right-clicking an item).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientContextMenu</strong> property to specify a JavaScript
                function that will be executed before the context menu shows after right clicking an
                item.</para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadPanelbar object)</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>Item - the instance of the selected item</li>
            				<li>EventObject - the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientContextpanel</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>OnContextpanelHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var panelbar = sender;<br/>
                    var item = eventArgs.Item;<br/>
            			<br/>
                    alert("You have right-clicked the " + item.Text + " item in the " + panelbar.ID +
                    "panelbar.");<br/>
                    }<br/>
                    &lt;/script&gt;</para>
            		<para class="sourcecode">&lt;radP:RadPanelbar id="RadPanelbar1" runat="server"
                    <strong>OnClientContextpanel="OnContextpanelHandler"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;radP:RadPanelItem Text="Personal Details"&gt;&lt;/radP:RadPanelItem&gt;<br/>
                    &lt;radP:RadPanelItem Text="Education"&gt;&lt;/radP:RadPanelItem&gt;<br/>
                    &lt;radP:RadPanelItem Text="Computing Skills"&gt;&lt;/radP:RadPanelItem&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/radP:RadPanelbar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemClicking">
            <remarks>
            	<para>This event is similar to <strong>OnClientItemFocus</strong> but fires only on
                mouse click.</para>
            	<para>If specified, the <strong>OnClientItemClicking</strong> client-side event
                handler is called before a panel item is clicked upon. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>The <strong>OnClientItemClicking</strong> event can be cancelled. To do so,
                return <strong>False</strong> from the event handler.</para>
            	<div>
            		<table class="hs-box"></table>
            	</div>
            </remarks>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a panel item is clicked.
            </summary>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientItemClickingHandler(sender, eventArgs)<br/>
                {<br/>
                if (eventArgs.Item.Text == "News")<br/>
                {</para>
            	<para>return false;</para>
            	<para>}<br/>
                }<br/>
                &lt;/script&gt;<br/>
                &lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemClicking="OnClientItemClickingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a panel item is clicked.
            </summary>
            <remarks>
            	<para>This event is similar to <strong>OnClientItemFocus</strong> but fires only on
                mouse click.</para>
            	<para>If specified, the <strong>OnClientItemClicked</strong> client-side event
                handler is called after a panel item is clicked upon. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            &lt;script type="text/javascript"&gt;<br/>
            function OnClientItemClickedHandler(sender, eventArgs)<br/>
            {<br/>
            alert(eventArgs.Item.Text);<br/>
            }<br/>
            &lt;/script&gt;<br/>
            &lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
            runat="server"<br/>
            	<strong>OnClientItemClicked="OnClientItemClickedHandler"</strong>&gt;<br/>
            ....<br/>
            &lt;/radP:RadPanelbar&gt;
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemFocus">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a panel item gets focus.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientItemFocusHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.Item.Text);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemFocus="OnClientItemFocusHandler"&gt;</strong><br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemFocus</strong> client-side event
                handler is called when a panel item is selected using either the keyboard (the
                [TAB] or arrow keys) or by clicking it. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemBlur">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after an item loses focus.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientItemBlur</strong> client-side event handler
                is called when a panel item loses focus as a result of the user pressing a key or
                clicking elsewhere on the page. Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientItemBlurHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.Item.Text);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemBlur="OnClientItemBlurHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemExpand">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items expands.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <requirements>
            	<para>If specified, the <strong>OnClientItemOpen</strong> client-side event handler
                is called when a group of child items opens. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </requirements>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientItemExpandHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.Item.Text);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemExpand="OnClientItemExpandHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemCollapse">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a group of child items collapses.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientItemCollapseHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.Item.Text);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat="server"<br/>
            		<strong>OnClientItemCollapse="OnClientItemCollapseHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientItemClose</strong> client-side event
                handler is called when a group of child items closes. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientItemAnimationEnd">
            <summary>
            Gets or sets the name of the JavaScript function called when an item's expand/collapse animation finishes
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientLoad">
            <remarks>
            	<para>If specified, the <strong>OnClienLoad</strong> client-side event handler is
                called after the panelbar is fully initialized on the client.</para>
            	<para>A single parameter - the panelbar client object - is passed to the
                handler.</para>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientLoadHandler(sender)<br/>
                {<br/>
                alert(sender.ID);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat= "server"<br/>
            		<strong>OnClientLoad= "OnClientLoadHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the <strong>RadPanelbar</strong> client-side object is initialized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientMouseOver">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse moves over a panel item in the <strong>RadPanelbar</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the
                <strong>OnClientMouseOver</strong><font color="black">client-side event handler is
                called when the mouse moves over a panel item.</font> Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientMouseOver</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                        function OnClientMouseOverHandler(sender, eventArgs)<br/>
                        {<br/>
                        alert(eventArgs.Item.Text);<br/>
                        }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                        runat= "server"<br/>
            			<strong>OnClientMouseOver= "OnClientMouseOverHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radP:RadPanelbar&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBar.OnClientMouseOut">
            <remarks>
            	<para>If specified, the <strong>OnClientMouseOut</strong> client-side event handler
                is called when the mouse moves out of a panel item. Two parameters are passed to
                the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the panelbar client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>Item</strong> (the
                    instance of the panel item).</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse moves out of a panel item in the <strong>RadPanelbar</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function OnClientMouseOutHandler(sender, eventArgs)<br/>
                {<br/>
                alert(eventArgs.Item.Text);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;radP:RadPanelbar ID="RadPanelbar1"<br/>
                runat= "server"<br/>
            		<strong>OnClientMouseOut= "OnClientMouseOutHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/radP:RadPanelbar&gt;</para>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadRibbonBar">
            <summary>RadRibbonBar control allows you to easily organize the navigation of your application in a simple, structured way.</summary>
            <remarks>
            	<para>
                    RadRibbonBar mimics the UI of the RibbonBar used in Microsoft Office 2007, thus providing your end-users with a familiar way to navigate around your application. 
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.GetContextualTabsToRender">
            <summary>
            The tabs to render are:
                * In an Active contextual tab group;
                * In an Inactive contextual tab group only if the RenderInactiveContextualTabGroups is set to true;
                * Their Visible property is set to true;
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.GetContextualTabGroupsToRender">
            <summary>
            The contextual tab groups to render are:
                * In a Visible tab in an Active contextual tab group;
                * In a Visible tab in an Inactive contextual tab group only if the RenderInactiveContextualTabGroups is set to true;
                * Their Visible property is set to true;
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnSelectedTabChange(Telerik.Web.UI.RibbonBarSelectedTabChangeEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.SelectedTabChange"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarSelectedTabChangeEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnButtonClick(Telerik.Web.UI.RibbonBarButtonClickEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.ButtonClick"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarButtonClickEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnSplitButtonClick(Telerik.Web.UI.RibbonBarSplitButtonClickEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.SplitButtonClick"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarButtonClickEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnMenuItemClick(Telerik.Web.UI.RibbonBarMenuItemClickEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.MenuItemClick"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnLauncherClick(Telerik.Web.UI.RibbonBarLauncherClickEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.LauncherClick"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarLauncherClickEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnButtonToggle(Telerik.Web.UI.RibbonBarButtonToggleEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.ButtonToggle"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarButtonToggleEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnToggleListToggle(Telerik.Web.UI.RibbonBarToggleListToggleEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.ToggleListToggle"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.OnApplicationMenuItemClick(Telerik.Web.UI.RibbonBarApplicationMenuItemClickEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadRibbonBar.ApplicationMenuItemClick"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RibbonBarApplicationMenuItemClickEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Loads the posted content of the list control, if it is different from the last posting.
            </summary>
            <param name="postDataKey">The key identifier for the control, used to index the postCollection.</param>
            <param name="postCollection">A <seealso cref="T:System.Collections.Specialized.NameValueCollection"/> that contains value information indexed by control identifiers.</param>
            <returns>true if the posted content is different from the last posting; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.FindTabByValue(System.String)">
            <summary>
                Searches the <strong>RadRibbonBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RibbonBarTab">RibbonBarTab</see> which <see cref="P:Telerik.Web.UI.RibbonBarTab.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarTab">RibbonBarTab</see> whose <see cref="P:Telerik.Web.UI.RibbonBarTab.Value">Value</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.FindGroupByValue(System.String)">
            <summary>
                Searches the <strong>RadRibbonBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RibbonBarGroup">RibbonBarGroup</see> which <see cref="P:Telerik.Web.UI.RibbonBarGroup.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarGroup">RibbonBarGroup</see> whose <see cref="P:Telerik.Web.UI.RibbonBarGroup.Value">Value</see> property is equal to the specifed 
            	value. If a group is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.FindButtonByValue(System.String)">
            <summary>
                Searches the <strong>RadRibbonBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.FindToggleButtonByValue(System.String)">
            <summary>
                Searches the <strong>RadRibbonBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.FindMenuItemByValue(System.String)">
            <summary>
                Searches the <strong>RadRibbonBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> which <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> whose <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see> property is equal to the specifed 
            	value. If a menu item is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.LoadContentFile(System.String)">
            <summary>
            Populates the control from the specified XML file.
            </summary>
            <param name="xmlFileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.LoadXml(System.String)">
            <summary>
            	Loads the control from an XML string.
            </summary>
            <param name="xml">
            	The string representing the XML from which the control will be populated.
            </param>
            <remarks>
            	Use the LoadXml method to populate the control from an XML string. You can use it along the <see cref="M:Telerik.Web.UI.RadRibbonBar.GetXml">GetXml</see>
            	method to implement caching.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadRibbonBar.GetXml">
            <summary>
            	Gets an XML string representing the state of the control. All child items and their properties are serialized in this
            	string.
            </summary>
            <returns>
            	A String representing the state of the control - child items, properties etc.
            </returns>
            <remarks>
            	Use the GetXml method to get the XML state of the control. You can cache it and then restore it using
            	the <see cref="M:Telerik.Web.UI.RadRibbonBar.LoadXml(System.String)">LoadXml</see> method.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.SelectedTabChange">
             <summary>
                 Occurs (server-side) after a non-selected tab is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>SelectedTabChange</b> event to determine the new and the previously selected tab.
                 <code lang="CS">
                     protected void RadRibbonBar1_SelectedTabChange(object sender, RibbonBarSelectedTabChangeEventArgs e)
                     {
                        string message = string.Format("Tab {0} was selected.", e.Tab.Text);
                        string details = string.Format("Previosly selected tab was: {0}", e.PreviouslySelectedTab.Text);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_SelectedTabChange(sender As Object, e As RibbonBarSelectedTabChangeEventArgs)
                         Dim message As String = String.Format("Tab {0} was selected.", e.Tab.Text)
                         Dim details As String = String.Format("Previosly selected tab was: {0}", e.PreviouslySelectedTab.Text)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.ButtonClick">
             <summary>
                 Occurs (server-side) after a button is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>ButtonClick</b> event to determine the clicked button and its group.
                 <code lang="CS">
                     protected void RadRibbonBar1_ButtonClick(object sender, RibbonBarButtonClickEventArgs e)
                     {
                        string message = string.Format("Button {0} was clicked.", e.Button.Text);
                        string details = string.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_ButtonClick(sender As Object, e As RibbonBarButtonClickEventArgs)
                         Dim message As String = String.Format("Button {0} was clicked.", e.Button.Text)
                         Dim details As String = String.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.SplitButtonClick">
             <summary>
                 Occurs (server-side) after a split button or button inside of it is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>SplitButtonClick</b> event to determine the clicked button and its group.
                 <code lang="CS">
                     protected void RadRibbonBar1_SplitButtonClick(object sender, RibbonBarSplitButtonClickEventArgs e)
                     {
                        string message = string.Format("Button {0} was clicked.", e.Button.Text);
                        string details = string.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_SplitButtonClick(sender As Object, e As RibbonBarSplitButtonClickEventArgs)
                         Dim message As String = String.Format("Button {0} was clicked.", e.Button.Text)
                         Dim details As String = String.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.MenuItemClick">
             <summary>
                 Occurs (server-side) after a menu item inside RibbonBarMenu is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>MenuItemClick</b> event to determine the clicked menu item and its group.
                 <code lang="CS">
                     protected void RadRibbonBar1_MenuItemClick(object sender, RibbonBarMenuItemClickEventArgs e)
                     {
                        string message = string.Format("Item {0} was clicked.", e.Item.Text);
                        string details = string.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_MenuItemClick(sender As Object, e As RibbonBarMenuItemClickEventArgs)
                         Dim message As String = String.Format("Item {0} was clicked.", e.Item.Text)
                         Dim details As String = String.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.LauncherClick">
             <summary>
                 Occurs (server-side) after a group launcher is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>LauncherClick</b> event to determine the group of the clicked launcher.
                 <code lang="CS">
                     protected void RadRibbonBar1_LauncherClick(object sender, RibbonBarLauncherClickEventArgs e)
                     {
                        string message = string.Format("Launcher of group {0} was clicked.", e.Group.Text);
            
                        textBox1.Text = message;
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_LauncherClick(sender As Object, e As RibbonBarLauncherClickEventArgs)
                         Dim message As String = String.Format("Launcher of group {0} was clicked.", e.Group.Text)
            
                         textBox1.Text = message
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.ButtonToggle">
             <summary>
                 Occurs (server-side) after a toggle button is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>ButtonToggle</b> event to determine the toggled button and its group.
                 <code lang="CS">
                     protected void RadRibbonBar1_ButtonToggle(object sender, RibbonBarButtonToggleEventArgs e)
                     {
                        string message = string.Format("ToggleButton {0} was toggled.", e.Button.Text);
                        string details = string.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_ButtonToggle(sender As Object, e As RibbonBarButtonToggleEventArgs)
                         Dim message As String = String.Format("ToggleButton {0} was toggled.", e.Button.Text)
                         Dim details As String = String.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.ToggleListToggle">
             <summary>
                 Occurs (server-side) after a toggle button inside RibbonBarToggleList is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>ToggleListToggle</b> event to determine the toggled button and its group.
                 <code lang="CS">
                     protected void RadRibbonBar1_ToggleListToggle(object sender, RibbonBarToggleListToggleEventArgs e)
                     {
                        string message = string.Format("ToggleList's ToggleButton {0} was toggled.", e.ToggleButton.Text);
                        string details = string.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index);
            
                        textBox1.Text = string.Format("{0} {1}", message, details);
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_ToggleListToggle(sender As Object, e As RibbonBarToggleListToggleEventArgs)
                         Dim message As String = String.Format("ToggleList's ToggleButton {0} was toggled.", e.ToggleButton.Text)
                         Dim details As String = String.Format("Group: {0}, Index: {1}", e.Group.Text, e.Index)
            
                         textBox1.Text = String.Format("{0} {1}", message, details)
                     End Sub
                 </code>
             </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRibbonBar.ApplicationMenuItemClick">
             <summary>
                 Occurs (server-side) after an item of the ApplicationMenu is clicked.
             </summary>
             <example>
                 The following example demonstrates how to use the <b>ApplicationMenuItemClick</b> event to determine the clicked item.
                 <code lang="CS">
                     protected void RadRibbonBar1_ApplicationMenuItemClick(object sender, RibbonBarApplicationMenuItemClickEventArgs e)
                     {
                        string message = string.Format("Application menu item {0} was clicked.", e.Item.Text);
            
                        textBox1.Text = message;
                     }
                 </code>
                 <code lang="VB">
                     Protected Sub RadRibbonBar1_ApplicationMenuItemClick(sender As Object, e As RibbonBarApplicationMenuItemClickEventArgs)
                         Dim message As String = String.Format("Application menu item {0} was clicked.", e.Item.Text)
            
                         textBox1.Text = message
                     End Sub
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.Tabs">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarTabCollection">RibbonBarTabCollection</see> object that contains the tabs of the RibbonBar.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarTabCollection">RibbonBarTabCollection</see> that contains the tabs of the RibbonBar. By default
            	the collection is empty (RibbonBar has no tabs).
            </value>
            <remarks>
            	Use the <b>Tabs</b> property to access the tabs of RadRibbonBar. You can also use the <b>Tabs</b> property to
            	manage the tabs. You can add, remove or modify tabs from the <b>Tabs</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of root tabs.
                <code lang="CS">
            		RadRibbonBar1.Tabs[0].Text = "Example";
                </code>
            	<code lang="VB">
            		RadTabStrip1.Tabs(0).Text = "Example"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.ImageRenderingMode">
            <summary>
            Gets or sets the rendering mode of all RibbonBarClickableItems images.
            </summary>
            <value>
            One of the <see cref="T:Telerik.Web.UI.RibbonBarImageRenderingMode">RibbonBarImageRenderingMode</see> values. The default value is
            <c>Auto</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.KeyboardNavigationSettings">
            <summary>
            Used to customize the RibbonBar keyboard navigation functionality
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.SelectedTabIndex">
             <summary>
            		Gets or sets the index of the selected tab.
             </summary>
             <value>
            		The zero based index of the selected tab. The default value is -1 (empty Tabs collection).
             </value>
             <remarks>
            		Use the <b>SelectedTabIndex</b> property to programmatically specify the selected
            		tab in <b>RadRibbonBar</b>. 
             </remarks>
             <example>
                 The following example demonstrates how to programmatically select a tab by using
                 the <b>SelectedTabIndex</b> property.
                 <code lang="CS">
            			void Page_Load(object sender, EventArgs e)
            			{
            				if (!Page.IsPostBack)
            				{
            					var tab1 = new RibbonBarTab(){ Text="GraphicTools" }; // this will be selected tab
            					RadRibbonBar1.Tabs.Add(tab1);
            
            					var tab2 = new RibbonBarTab(){ Text="TextTools" };
            					RadRibbonBar1.Tabs.Add(tab2);
            					
                             RadRibbonBar1.SelectedIndex = 1; // will select "TextTools" tab
            				}
            			}
                 </code>
             	<code lang="VB">
            			 Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            			     If Not Page.IsPostBack Then
            			        ' this will be selected tab
                             Dim tab1 = New RibbonBarTab() With { Key .Text = "GraphicTools" }
                             RadRibbonBar1.Tabs.Add(tab1)
            
                             Dim tab2 = New RibbonBarTab() With { Key .Text = "TextTools" }
                             RadRibbonBar1.Tabs.Add(tab2)
            
                             ' will select "TextTools" tab
                             RadRibbonBar1.SelectedIndex = 1
            			     End If
            			 End Sub
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.ApplicationMenu">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarApplicationMenu">RibbonBarApplicationMenu</see> object (if one is set).
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarApplicationMenu">RibbonBarApplicationMenu</see>. If not set, returns null.
            </value>
            <remarks>
            	Use the <b>RibbonBarApplicationMenu</b> property to assign/retrieve an ApplicationMenu to/from RadRibbonBar.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the ApplicationMenu.
                <code lang="CS">
            		RadRibbonBar1.ApplicationMenu.Items[0].Text = "Example";
                </code>
            	<code lang="VB">
            		RadRibbonBar1.ApplicationMenu.Items(0).Text = "Example"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the client object of RadRibbonBar is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientLoad</strong> property to specify a
                JavaScript function that is executed <font color="black">after
                the client object of RadRibbonBar is initialized.</font></para>
            	<para><font color="black">A single parameter is passed to the handler, which is the
                client-side RadRibbonBar object.</font></para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLoad</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientLoadHandler</strong>(sender)<br/>
                    {<br/>
                    // perform actions after the RibbonBar is initialized<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientLoad="ClientLoadHandler"</strong>&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientSelectedTabChanging">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a non-selected tab is clicked. The event serves as a point for conditional
            cancel of the selecting of new tab.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientSelectedTabChanging</strong> property to specify a
                JavaScript function that is executed <font color="black">after a non-selected tab
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 3 properties:</font>
            			<ul>
            				<li><font color="black">get_tab() - the instance of the tab which is
                            just clicked;</font></li>
            				<li><font color="black">get_previouslySelectedTab() - the instance of the tab
            				which still is the selected tab (it's cancelable event);</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientSelectedTabChanging</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientSelectedTabChangingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_tab().get_text() == "Unselectable")<br/>
                        args.set_cancel(true);<br/>
                    else<br/>
                        alert("The tab about to be selected is: " + arge.get_tab().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientSelectedTabChanging="ClientSelectedTabChangingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="DefaultSelected"/&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Unselectable"/&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientSelectedTabChanged">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a non-selected tab is clicked. The event is passed the point for conditional
            cancel of the selecting of new tab (ClientSelectedTabChanging).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientSelectedTabChanged</strong> property to specify a
                JavaScript function that is executed <font color="black">after a non-selected tab
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 3 properties:</font>
            			<ul>
            				<li><font color="black">get_tab() - the instance of the tab which is
                            the new selected tab;</font></li>
            				<li><font color="black">get_previouslySelectedTab() - the instance of the tab
            				which was previously selected;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientSelectedTabChanged</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientSelectedTabChangedHandler</strong>(sender, args)<br/>
                    {<br/>
                    alert("The new selected tab is: " + args.get_tab().get_text());<br/>
                    alert("The previously selected tab is: " + args.get_previouslySelected().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientSelectedTabChanged="ClientSelectedTabChangedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="DefaultSelected"/&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Unselectable"/&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientButtonClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a button is clicked. The event serves as a point for conditional
            cancel of the button clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonClicking</strong> property to specify a
                JavaScript function that is executed <font color="black">after a button
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientButtonClicking</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientButtonClickingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_button().get_text() == "Unclickable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientButtonClicking="ClientButtonClickingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarButton Text="Unclickable" /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientButtonClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a button is clicked. The event is passed the point for conditional
            cancel of the button clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonClicked</strong> property to specify a
                JavaScript function that is executed <font color="black">after a button
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientButtonClicked</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientButtonClickedHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("Clicked button is: " + args.get_button().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientButtonClicked="ClientButtonClickedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarButton Text="Button" /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientSplitButtonClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a button inside split button is clicked. The event serves as a point for conditional
            cancel of the button clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientSplitButtonClicking</strong> property to specify a
                JavaScript function that is executed <font color="black">after a button inside of a split button
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientSplitButtonClicking</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientSplitButtonClickingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_button().get_text() == "Unclickable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientSplitButtonClicking="ClientSplitButtonClickingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarSplitButton Text="SplitButton"&gt;<br/>
                    &lt;Buttons&gt;<br/>
                    &lt;telerik:RibbonBarButton Text="Unclickable" /&gt;<br/>
                    &lt;/Buttons&gt;<br/>
                    &lt;/telerik:RibbonBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientSplitButtonClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a button inside of a split button is clicked. The event is passed the point for conditional
            cancel of the button clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientSplitButtonClicked</strong> property to specify a
                JavaScript function that is executed <font color="black">after a button inside of a split button
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientSplitButtonClicked</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientSplitButtonClickedHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("The clicked button is:" + args.get_button().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientSplitButtonClicked="ClientSplitButtonClickedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarSplitButton Text="SplitButton"&gt;<br/>
                    &lt;Buttons&gt;<br/>
                    &lt;telerik:RibbonBarButton Text="Button" /&gt;<br/>
                    &lt;/Buttons&gt;<br/>
                    &lt;/telerik:RibbonBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientMenuItemClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a menu item is clicked. The event serves as a point for conditional
            cancel of the menu item clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMenuItemClicking</strong> property to specify a
                JavaScript function that is executed <font color="black">after a menu item
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_item() - the instance of the menu item which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientMenuItemClicking</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientMenuItemClickingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_item().get_text() == "Unclickable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientMenuItemClicking="ClientMenuItemClickingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarMenu Text="Menu"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarMenuItem Text="Unclickable" /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarMenu&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientMenuItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a menu item is clicked. The event is passed the point for conditional
            cancel of the menu item clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMenuItemClicked</strong> property to specify a
                JavaScript function that is executed <font color="black">after a menu item
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_item() - the instance of the menu item which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientMenuItemClicked</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientMenuItemClickedHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("The clicked menu item is:" + args.get_item().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientMenuItemClicked="ClientMenuItemClickedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarMenu Text="Menu"&gt;<br/>
                    &lt;Buttons&gt;<br/>
                    &lt;telerik:RibbonBarMenuItem Text="MenuItem" /&gt;<br/>
                    &lt;/Buttons&gt;<br/>
                    &lt;/telerik:RibbonBarMenu&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientLauncherClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the group launcher is clicked. The event serves as a point for conditional
            cancel of the group launcher clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientLauncherClicking</strong> property to specify a
                JavaScript function that is executed <font color="black">after a group launcher
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_group() - the instance of the group which launcher is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLauncherClicking</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientLauncherClickingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_group().get_text() == "Unlaunchable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientLauncherClicking="ClientLauncherClickingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Unlaunchable"&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientLauncherClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after the group launcher is clicked. The event is passed the point for conditional
            cancel of the group launcher clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientLauncherClicked</strong> property to specify a
                JavaScript function that is executed <font color="black">after a group launcher
                is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_group() - the instance of the group which launcher is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLauncherClicked</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientLauncherClickedHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("Clicked is the launcher of group: " + args.get_group().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientLauncherClicked="ClientLauncherClickedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientButtonToggling">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a toggle button is clicked. The event serves as a point for conditional
            cancel of the button's toggling.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonToggling</strong> property to specify a
                JavaScript function that is executed <font color="black">after a toggle button is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the toggle button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientButtonToggling</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientButtonTogglingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_button().get_text() == "Untogglable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientButtonToggling="ClientButtonTogglingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarToggleButton Text="Untogglable" /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientButtonToggled">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a toggle button is clicked. The event is passed the point for conditional
            cancel of the button's toggling.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonToggled</strong> property to specify a
                JavaScript function that is executed <font color="black">after a toggle button is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the toggle button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientButtonToggled</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientButtonTogglingHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("ToggleButton: " + args.get_button().get_text() + " was toggled");<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientButtonToggled="ClientButtonToggledHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarToggleButton Text="ToggleButton" /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientToggleListToggling">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a toggle button inside of ToggleList is clicked. The event serves as a point for conditional
            cancel of the toggle list's toggle-state change.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientToggleListToggling</strong> property to specify a
                JavaScript function that is executed <font color="black">after a toggle button inside of a ToggleList is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the toggle button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientToggleListToggling</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientToggleListTogglingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_button().get_text() == "Untogglable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientToggleListToggling="ClientToggleListTogglingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarToggleList&gt;<br/>
                    &lt;ToggleButtons&gt;<br/>
                    &lt;telerik:RibbonBarToggleButton Text="Untogglable" /&gt;<br/>
                    &lt;/ToggleButtons&gt;<br/>
                    &lt;/telerik:RibbonBarToggleList&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientToggleListToggled">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a toggle button inside of ToggleList is clicked. The event is passed the point for conditional
            cancel of the toggle list's toggle-state change.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientToggleListToggled</strong> property to specify a
                JavaScript function that is executed <font color="black">after a toggle button inside of a ToggleList is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 2 properties:</font>
            			<ul>
            				<li><font color="black">get_button() - the instance of the toggle button which is
                            clicked;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientToggleListToggled</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientToggleListToggledHandler</strong>(sender, args)<br/>
                    {<br/>
                    alert("Toggled button is: " + args.get_button().get_text()<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server"
                    <strong>OnClientToggleListToggled="ClientToggleListToggledHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;telerik:RibbonBarGroup Text="Group"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarToggleList&gt;<br/>
                    &lt;ToggleButtons&gt;<br/>
                    &lt;telerik:RibbonBarToggleButton Text="ToggleButton" /&gt;<br/>
                    &lt;/ToggleButtons&gt;<br/>
                    &lt;/telerik:RibbonBarToggleList&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarGroup&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientApplicationMenuItemClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after an item inside of an ApplicationMenu is clicked. The event serves as a point for conditional
            cancel of the item's clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientApplicationMenuItemClicking</strong> property to specify a
                JavaScript function that is executed <font color="black">after an item inside of na ApplicationMenu is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 3 properties:</font>
            			<ul>
            				<li><font color="black">get_applicationMenu() - the instance of the application menu;</font></li>
                            <li><font color="black">get_item() - the instance of the clicked application menu item;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientApplicationMenuItemClicking</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientApplicationMenuItemClickingHandler</strong>(sender, args)<br/>
                    {<br/>
                    if (args.get_item().get_text() == "Unclickable")<br/>
                        args.set_cancel(true);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RibbonBarApplicationMenu ID="RadRibbonBarApplicationMenu1" runat="server" Text="Menu"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarApplicationMenuItem Text="Unclickable"/&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarApplicationMenu&gt;<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server" ApplicationMenuID="RadRibbonBarApplicationMenu1"
                    <strong>OnClientApplicationMenuItemClicking="ClientApplicationMenuItemClickingHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.OnClientApplicationMenuItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after an item inside of an ApplicationMenu is clicked. The event is passed the point for conditional
            cancel of the item's clicking.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientApplicationMenuItemClicked</strong> property to specify a
                JavaScript function that is executed <font color="black">after an item inside of na ApplicationMenu is clicked.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadRibbonBar
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with 3 properties:</font>
            			<ul>
            				<li><font color="black">get_applicationMenu() - the instance of the application menu;</font></li>
                            <li><font color="black">get_item() - the instance of the clicked application menu item;</font></li>
            				<li><font color="black">get_domEvent().</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientApplicationMenuItemClicked</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientApplicationMenuItemClickedHandler</strong>(sender, args)<br/>
                    {<br/>
                        alert("The clicked ApplicationMenuItem is: " + args.get_item().get_text());<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RibbonBarApplicationMenu ID="RadRibbonBarApplicationMenu1" runat="server" Text="Menu"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RibbonBarApplicationMenuItem Text="MenuItem"/&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RibbonBarApplicationMenu&gt;<br/>
                    &lt;telerik:RadRibbonBar id="RadRibbonBar1" runat="server" ApplicationMenuID="RadRibbonBarApplicationMenu1"
                    <strong>OnClientApplicationMenuItemClicked="ClientApplicationMenuItemClickedHandler"</strong>&gt;<br/>
                    &lt;telerik:RibbonBarTab Text="Tab"&gt;<br/>
                    &lt;/telerik:RibbonBarTab&gt;<br/>
                    &lt;/telerik:RadRibbonBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBar.EnableQuickAccessToolbar">
            <summary>
            Gets or sets a value indicating whether the Quick Access Toolbar is enabled. False by default.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenu.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarApplicationMenuItemCollection">RibbonBarApplicationMenuItemCollection</see> object that contains the items of the ApplicationMenu.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarApplicationMenuItemCollection">RibbonBarApplicationMenuItemCollection</see> that contains the items of the ApplicationMenu. By default
            	the collection is empty (the ApplicationMenu has no items).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the items of the ApplicationMenu. You can also use the <b>Items</b> property to
            	manage the items. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the items inside the collection.
                <code lang="CS">
            		applicationMenu.Items[0].Text = "SampleMenuItemText";
                </code>
            	<code lang="VB">
            		applicationMenu.Items(0).Text = "SampleMenuItemText"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenu.Text">
            <summary>
            	Gets or sets the text of the ApplicationMenu.
            </summary>
            <value>
            	The text of the ApplicationMenu. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text of the ApplicationMenu.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenuItem.Text">
            <summary>
            	Gets or sets the text of the ApplicationMenuItem.
            </summary>
            <value>
            	The text of the ApplicationMenuItem. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text of the ApplicationMenuItem.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenuItem.Value">
            <summary>
            Gets or sets the value property of the ApplicationMenuItem.
            </summary>
            <remarks>
            You can use it to associate custom data with the ApplicationMenuItem.
            </remarks>
            <example>
             This example illustrates how to use the <strong>Value</strong> property on <see cref="E:Telerik.Web.UI.RadRibbonBar.ApplicationMenuItemClick">ApplicationMenuItemClick</see> event.
            </example>
            <code lang="CS">
            protected void RadRibbonBar1_ApplicationMenuItemClick(object sender, RibbonBarApplicationMenuItemClickEventArgs e)
            {
                if (e.Item.Value == "TriggersSomeAction")
                {
                    // trigger the action
                }
            }
            </code>
            <code lang="VB">
            Protected Sub RadRibbonBar1_ApplicationMenuItemClick(sender As Object, e As RibbonBarApplicationMenuItemClickEventArgs)
            	If e.Item.Value = "TriggersSomeAction" Then
            	    ' trigger the action
            	End If
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenuItem.ImageUrl">
            <summary>
            	Gets or sets the image URL of the ApplicationMenuItem.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom
            	image to be displayed for the ApplicationMenuItem.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarApplicationMenuItemClickEventArgs.Item">
            <summary>
            Gets the application menu item that has been clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSelectedTabChangeEventArgs.PreviouslySelectedTab">
            <summary>
            Gets the previously selected tab.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSelectedTabChangeEventArgs.Tab">
            <summary>
            Gets the currently selected tab.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.AllowedSavingLocation">
            <summary>
            Specifies where the end user can save the edited image
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.AllowedSavingLocation.ClientAndServer">
            <summary>
            The user can save the image on the client and server machine.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.AllowedSavingLocation.Client">
            <summary>
            The user can save image on the client only.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.AllowedSavingLocation.Server">
            <summary>
            The user can save image on the server only.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorLoadingEventArgs">
            <summary>
            Provides the event data for the RadImageEditor's ImageLoading event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorLoadingEventArgs.Cancel">
            <summary>
            Gets or sets a bool value indicating whether the saving on the image should be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorLoadingEventArgs.Image">
            <summary>
            Gets or set the Editable image that will be used by the ImageEditor control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorSavingEventArgs">
            <summary>
            Provides the event data for the RadImageEditor's ImageSaving event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorEventArgs">
            <summary>
            Provides the event data for the RadImageEditor's ImageChanged event
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorEventArgs.Image">
            <summary>
            Gets the current Editable Image of the RadImageEditor control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorSavingEventArgs.Cancel">
            <summary>
            Gets or sets a bool value indicating whether the saving on the image should be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorSavingEventArgs.FileName">
            <summary>
            Gets or sets the name of the image that will be saved.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorSavingEventArgs.OverwriteFile">
            <summary>
            Gets or sets a bool value indicating whether the existing image with the same file name will be overwritten.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorSavingEventArgs.Argument">
            <summary>
            Gets or sets additional argument that will be passed back to the 'saved' client-side event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadImageEditor">
            <summary>
            Telerik Image Editor control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.IsBuiltInCommand(System.String)">
            <summary>
            Returns a bool value that indicates whether the command is built-in in the RadImageEditor, or is a custom one.
            </summary>
            <param name="commandName">The name of the command to check.</param>
            <returns><strong>True</strong> - if the command is built-in; <strong>False</strong> - if the command is custom.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SwitchToolBarPosition">
            <summary>
            Goes through each value of the ToolBarPosition.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.GetImageFromContentProvider(System.String)">
            <summary>
            Retrieves an EditableImage from the specified FileBrowserContentProvider.
            </summary>
            <param name="imageUrl">The path to the image.</param>
            <returns>The editable image </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.StoreEditableImage(Telerik.Web.UI.ImageEditor.EditableImage)">
            <summary>
            Invokes the Store method of the current ICacheImageProvider and sets the CurrentImageUrl and CurrentImageKey properties.
            </summary>
            <param name="editableImage">The editable image to store</param>
            <returns>The key returned by the ICacheImageProvider.Store method.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.StoreEditableImage(Telerik.Web.UI.ImageEditor.EditableImage,Telerik.Web.UI.ImageEditor.ICacheImageProvider)">
            <summary>
            Invokes the Store method of the current ICacheImageProvider and sets the CurrentImageUrl and CurrentImageKey properties.
            </summary>
            <param name="editableImage">The editable image to store. If the image is null it would not be stored.</param>
            <param name="provider">The ICacheImageProvider to use for storing the image.</param>
            <returns>The key returned by the ICacheImageProvider.Store method. If the EditableImage is null returns string.Empty.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SaveEditableImage(Telerik.Web.UI.ImageEditor.EditableImage,Telerik.Web.UI.ImageEditor.ICacheImageProvider,System.String,System.Boolean)">
            <summary>
            Saves the EditableImage on the FileSystem.
            </summary>
            <param name="editableImage">The EditableImage to save.</param>
            <param name="provider">The ICacheImageProvider to use for saving</param>
            <param name="imageName">The file name to use for the image. If string.Empty the existing URL will be used</param>
            <param name="overwrite">The flag indicating whether the existing file should be overwritten.</param>
            <returns>Returns string.Empty if the image was saved successfully, otherwise a string indicating the problem.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SaveImage(System.Drawing.Bitmap,System.Drawing.Imaging.ImageFormat,System.Boolean,System.String)">
            <summary>
            Saves the image using the FileBrowserContentProvider.
            </summary>
            <param name="img">The image to save.</param>
            <param name="originalImageFormat">The image format to use when saving the image.</param>
            <param name="overwrite">Should we overwrite if the image exists. (true means to overwrite)</param>
            <param name="imagePath">The relative image path.</param>
            <returns>A message indicating whether the saving was successful. Empty string means the saving was successful.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateToolbar">
            <summary>
            Creates the ImageEditor's set of tools.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.GetRuntimeSkin(System.Boolean)">
            <summary>
            Finds out the actual skin that is applied to the controls.
            </summary>
            <param name="forceCalculation">true - always look for the skin, false - return the currently stored skin</param>
            <returns>The actual skin applied to the ImageEditor control.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.GetWebResourceUrl(System.String)">
            <summary>
            Calculates the actual client url of the image applied to the tool.
            </summary>
            <param name="skin">The current skin of the control.</param>
            <returns>The client url of the embedded web resource.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateToolsPanel">
            <summary>
            Creates a RadDock control that serves as a Tools container for the controls that edit the Image.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateXmlHttpPanel">
            <summary>
            Creates an XmlHttpPanel control which loads the Tool's specific controls.
            The XmlHttpPanel is added to the Dock Tools panel.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateAjaxPanelControls">
            <summary>
            Creates an UpdatePanel and adds it to the ContentContainer of the Dock Tools panel.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateAjaxLoadingPanel">
            <summary>
            Creates RadAjaxLoadingPanel to show over the dock while its updating.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateToolbarDock">
            <summary>
            Creates RadDock that holds the toolbar.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateTopLeftZones">
            <summary>
            Create Top and Left ToolBar zones.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.CreateRightBottomZones">
            <summary>
            Create Right and Bottom ToolBar zones.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.LoadToolsFile(System.Xml.XmlDocument)">
            <summary>
            Loads ImageEditor tools from the passed XmlDocument.
            </summary>
            <param name="doc">The XmlDocument from which the tools are loaded.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.EnsureToolsFileLoaded">
            <summary>
            Forces the ToolsFile to be parsed and loaded at any given time.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous request that was saved with the System.Web.UI.WebControls.WebControl.SaveViewState() method.
            </summary>
            <param name="state">An object that represents the control state to restore.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SaveViewState">
            <summary>
            Saves any state that was modified after the System.Web.UI.WebControls.Style.TrackViewState() method was invoked.
            </summary>
            <returns>An object that contains the current view state of the control; otherwise, if there is no view state associated with the control, null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.TrackViewState">
            <summary>
            Causes the control to track changes to its view state so they can be stored in the object's System.Web.UI.Control.ViewState property.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.ApplyImageOperations(System.Collections.Generic.IEnumerable{Telerik.Web.UI.ImageEditor.IImageOperation})">
            <summary>
            Applies the IImageOperation(s) to the current EditableImage in the order they appear in the operations collection.
            </summary>
            <param name="operations">Collection of IImageOperation(s) to apply.</param>
            <returns>The modified EditableImage object.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.ApplyImageOperations(System.Collections.Generic.IEnumerable{Telerik.Web.UI.ImageEditor.IImageOperation},Telerik.Web.UI.ImageEditor.EditableImage)">
            <summary>
            Applies the IImageOperation(s) to the passed EditableImage in the order they appear in the operations collection.
            </summary>
            <param name="operations">Collection of IImageOperation(s) to apply.</param>
            <param name="editableImage">The EditableImage to apply the operations to.</param>
            <returns>The modified EditableImage object.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.ExtractFileNameFromImageUrl">
            <summary>
            Extracts the file name from the value of the ImageUrl property.
            </summary>
            <returns>The file name without the extension.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SaveEditableImage(System.String,System.Boolean)">
            <summary>
            Applies the current pending changes on the current RadImageEditor's EditableImage, saves the EditableImage using the ContentProvider's SaveImage method, and invokes the ImageSaving event.
            </summary>
            <param name="imageName">The name to use if the image is saved on the FileSystem. Use string.Empty to use the existing name.</param>
            <param name="overwrite">Bool value indicating whether the existing image in the ContentProvider should be overwritten.</param>
            <returns>Returns a string message that indicates whether the saving was successful. Empty string means the saving was successful.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.SaveEditableImage(Telerik.Web.UI.ImageEditor.EditableImage,System.String,System.Boolean)">
            <summary>
            Saves the EditableImage using the ContentProvider's SaveImage method, and invokes the ImageSaving event.
            </summary>
            <param name="editableImage">The EditableImage to save.</param>
            <param name="imageName">The name to use if the image is saved on the FileSystem. Use string.Empty to use the existing name.</param>
            <param name="overwrite">Bool value indicating whether the existing image in the ContentProvider should be overwritten.</param>
            <returns>Returns a string message that indicates whether the saving was successful. Empty string means the saving was successful.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.ResetChanges">
            <summary>
            Clears all the changes currently applied to the image, and restores the original image.
            <remarks>This method should be invoked before PreRender so that the control can request the original image.</remarks>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.GetEditableImage">
            <summary>
            Gets a reference to the Telerik.Web.UI.ImageEditor.<strong>EditableImage</strong> that is currently associated with the ImageEditor control.
            </summary>
            <returns>The Telerik.Web.UI.ImageEditor.<strong>EditableImage</strong> currently associated with </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageEditor.RegisterCustomCommand(System.String)">
            <summary>
            Registers a custom command in case it is missing as a button from the toolbar.
            </summary>
            <remarks>This method should be called before PreRender</remarks>
            <param name="commandName">The name of the command</param>
        </member>
        <member name="F:Telerik.Web.UI.RadImageEditor._imageStorageKey">
            <summary>
            GUID key used to get all the image keys from the CacheProvider, related with the current instance of the ImageEditor control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.Language">
            <summary>
            Gets or sets a string containing the localization language for the RadImageEditor UI
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.IsInRadEditor">
            <summary>
            Gets or sets a bool value that indicates whether the RadImageEditor is used in the RadEditor.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.UndoStack">
            <summary>
            The collection of commands that are applied on the client, and need to be applied on the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.CurrentImageKey">
            <summary>
            Gets the unique identifier of the current EditableImage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ImageStorageKey">
            <summary>
            GUID key used to get all the image keys from the CacheProvider, related with the current instance of the ImageEditor control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ImageUrl">
            <summary>
            Gets or sets the location of an image to edit within the Image editor
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.AlternateText">
            <summary>
            Gets or sets the alternate text displayed in the edited image when the image is unavailable.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.DescriptionUrl">
            <summary>
            Gets or sets the location to a detailed description for the edited image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.Tools">
            <summary>
            Gets the collection containing RadImageEditor tools.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ToolsFile">
            <summary>
            Gets or sets a string containing the path to the XML toolbar configuration file.
            </summary>
            <remarks>
            	<para>Use "~" (tilde) as a substitution of the web-application's root
            	directory.</para>
            	<para>You can also provide this property with an absolute URL which returns a valid XML
            	toolbar configuration file, e.g. http://MyServer/MyApplication/Tools/MyToolsFile.aspx</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ActiveCommand">
            <summary>
            Gets the name of the last (active) command executed by the ImageEditor.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler that serves the cached image.
            </summary>
            <remarks>
            	<para>
            		The HTTPHandler should either be registered in the application configuration
            		file, or a file with the specified name should exist at the location, which
            		HttpHandlerUrl points to.
            	</para>
            	<para>
            		If a file is to serve the files, it should inherit the class Telerik.Web.UI.WebResource
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ImageCacheStorageLocation">
            <summary>
            Specifies where the cached imaged from the operation will be stored
            <remarks>When the image is stored in the session the HttpHandler 
            definition (in the web.config file) must be changed from type="Telerik.Web.UI.WebResource" to 
            type="Telerik.Web.UI.WebResourceSession" so that the image can be retrieved from the Session.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ToolsLoadPanelType">
            <summary>
            The panel type to use for loading the tools dialogs' content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.Localization">
            <summary>
            The Localization property specifies the strings that appear in the runtime user interface of RadImageEditor.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.LocalizationPath">
            <summary>
            Gets or sets a value indicating where the image editor will look for its .resx localization files.
            By default these files should be in the App_GlobalResources folder. However, if you cannot put
            the resource files in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource files.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadImageEditorResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the image editor localization files from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.StatusBarMode">
            <summary>
            Gets or sets a value that controls the behavior of the RadImageEditor's StatusBar.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.EnableResize">
            <summary>
            Gets or sets a bool value that indicates whether the control can be resized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.Height">
            <summary>
            Gets or sets the height of the RadImageEditor control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.Width">
            <summary>
            Gets or sets the width of the RadImageEditor control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.AllowedSavingLocation">
            <summary>
            Gets or sets a value that indicates where the user is allowed to save the image. The options available are:
            "Client", "Server" and "ClientAndServer". The default is ClientAndServer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ToolBarMode">
            <summary>
            Gets or sets value that controls the behavior of the Toolbar. The options available are:
            "Default" and "Docked".
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ToolBarPosition">
            <summary>
            Gets or sets the position of the Toolbar relative to the edited content (content area).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ImageManager">
            <summary>
            Configures the ImageEditor's ContentProvider.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.UndoLimit">
            <summary>
            Gets or sets the maximal number of operations that will be stored in the Undo stack.
            Zero (0) is the default value, meaning there is no limit on the number of operations stored.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientLoad">
            <summary>
            The name of the javascript function called when the control loads in the browser.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientResizeStart">
            <summary>
            The name of the javascript function called when the resizing is started on the control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientResizeEnd">
            <summary>
            The name of the javascript function called when the resizing on the control ends.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientCommandExecuting">
            <summary>
            The name of the javascript function called when a command is firing on the RadImageEditor. 
            This event is triggered when the ImageEditor's ToolBar buttons are clicked or the RadImageEditor.fire(commandName) method is invoked.
            The event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientCommandExecuted">
            <summary>
            The name of the javascript function called when a command is fired on the RadImageEditor.
            This event is triggered when the ImageEditor's ToolBar buttons are clicked or the RadImageEditor.fire(commandName) method is invoked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientImageChanging">
            <summary>
            The name of the javascript function called before a change is applied on the image edited. 
            The event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientImageChanged">
            <summary>
            The name of the javascript function called after a change is applied on the image edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientSaving">
            <summary>
            The name of the javascript function called before the image is saved on the client or the server.
            The event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientSaved">
            <summary>
            The name of the javascript function called after the image is saved on the client or the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientToolsDialogClosed">
            <summary>
            The name of the javascript function called when the tool's panel dialog is closed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.OnClientShortCutHit">
            <summary>
            The name of the javascript function called, when a given Keyboard ShortCut of the RadImageEditor was hit.
            The event can be cancelled.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadImageEditor.ImageChanged">
            <summary>
            Fires when the image has been changed.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadImageEditor.DialogLoading">
            <summary>
            Fires when an operation's dialog is loading its content.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadImageEditor.ImageSaving">
            <summary>
            Fires just before the image is saved on the file system. This event can be canceled and the edited image saved into a custom location.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadImageEditor.ImageLoading">
            <summary>
            Fires just before the image is loaded from the file system. This event can be canceled and the edited image loaded from a custom location.
            The event is fired only when the ImageEditor needs to load the initial image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageEditor.ShowAjaxLoadingPanel">
            <summary>
            Gets or sets a bool value that indicates whether RadAjaxLoadingPanel will be shown over the tools panel.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.ShowIndicator">
            <summary>
            Gets or sets a value indicating whether PasswordStrengthInticator will be shown
            </summary>
            <value>
            true, if you want to show PasswordStrengthInticator, otherwise false (the default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.CalculationWeightings">
            <summary>
            List of semi-colon separated numeric values used to determine the weighting of a strength characteristic. 
            There must be 4 values specified which must total 100. 
            The default weighting values are defined as 50;15;15;20. 
            This corresponds to password length is 50% of the strength calculation, Numeric criteria is 15% of strength calculation, casing criteria is 15% of calculation, and symbol criteria is 20% of calculation. 
            So the format is 'A;B;C;D' where A = length weighting, B = numeric weighting, C = casing weighting, D = symbol weighting.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.PreferredPasswordLength">
            <summary>
            Preferred length of the password.
            Default preffered length is 10
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.MinimumNumericCharacters">
            <summary>
            Minimum number of numeric characters.
            Default number of minimum numeric characters is 2
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.RequiresUpperAndLowerCaseCharacters">
            <summary>
            Specifies whether mixed case characters are required.
            By default is true
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.MinimumLowerCaseCharacters">
            <summary>
            Only in effect if RequiresUpperAndLowerCaseCharacters property is true. 
            Specifies the minimum number of lowercase characters required when requiring mixed case characters as part of your password strength considerations.
            By default MinimumLowerCaseCharacters is 2
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.MinimumUpperCaseCharacters">
            <summary>
            Only in effect if RequiresUpperAndLowerCaseCharacters property is true. 
            Specifies the minimum number of uppercase characters required when requiring mixed case characters as part of your password strength considerations.
            By default MinimumUpperCaseCharacters is 2
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.MinimumSymbolCharacters">
            <summary>
            Minimum number of symbol characters.
            By default is 2
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.OnClientPasswordStrengthCalculating">
            <summary>
            Specify the client event handler that will be executed when calculating the password strength
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.TextStrengthDescriptions">
            <summary>
            List of semi-colon separated descriptions that will be shown depending on the calculated password strength
            By default TextStrengthDescriptions is "Very Weak;Weak;Medium;Strong;Very Strong"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.TextStrengthDescriptionStyles">
            <summary>
            List of semi-colon separated names of CSS Styles that will be used to style the indicator element.
            By default TextStrengthDescriptionStyles = "riStrengthBarL0;riStrengthBarL1;riStrengthBarL2;riStrengthBarL3;riStrengthBarL4;riStrengthBarL5;"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.IndicatorElementBaseStyle">
            <summary>
            Set the CSS Style for the indicator element. This style will be set regardless of the calculated password strength.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.IndicatorElementID">
            <summary>
            Set ID of the element wtich to style and show the text. Leave this empty and such element will be created automatically.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputPasswordStrengthSettings.IndicatorWidth">
            <summary>
            Set Width of the indicator
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarKeyboardNavigationSettings.Activated">
            <summary>
            This property auto enables key hints on page load.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarKeyboardNavigationSettings.CommandKey">
            <summary>
            This property sets the key that is used to focus RadRibbonBar. It is always used in combination with FocusKey.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarKeyboardNavigationSettings.FocusKey">
            <summary>
            This property sets the key that is used to focus RadGrid. It is always used in combination with CommandKey.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRibbonBarSubComponent.RibbonBar">
            <summary>
            	Gets a reference to the RibbonBar instance.
            </summary>
            <value>
            	RadRibbonBar instance. If not set, the returned is null.
            </value>
            <remarks>
            	Use the property to get the RibbonBar instance.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadScheduler">
            <summary>RadScheduler control class.</summary>
        </member>
        <member name="T:Telerik.Web.UI.IScheduler">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.IAppointmentFactory">
            <summary>
            Supports creating new Appointment instances.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IAppointmentFactory.CreateAppointment">
            <summary>
            Creates a new Appointment instance.
            </summary>
            <returns>
            A new Appointment instance.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(Telerik.Web.UI.Appointment)">
            <summary>
            Exports an appointment to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the appointment in iCalendar format.</returns>
            <param name="appointment"> The appointment which should be exported.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(Telerik.Web.UI.Appointment,System.TimeSpan)">
            <summary>
            Exports an appointment to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the appointment in iCalendar format.</returns>
            <param name="appointment">The appointment which should be exported.</param>
            <param name="timeZoneOffset">The time zone offset to apply to the exported appointments.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(Telerik.Web.UI.AppointmentCollection)">
            <summary>
            	Exports the specified appointments to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the iCalendar representation of the supplied appointments.</returns>
            <param name="appointments">A collection of appointments which should be exported.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(System.Collections.Generic.IEnumerable{Telerik.Web.UI.Appointment})">
            <summary>
            	Exports the specified appointments to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the iCalendar representation of the supplied appointments.</returns>
            <param name="appointments">An IEnumerable of appointments which should be exported.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(Telerik.Web.UI.AppointmentCollection,System.TimeSpan)">
            <summary>
            	Exports the specified appointments to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the iCalendar representation of the supplied appointments.</returns>
            <param name="appointments">A collection of appointments which should be exported.</param>
            <param name="timeZoneOffset">The time zone offset to apply to the exported appointments.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ExportToICalendar(System.Collections.Generic.IEnumerable{Telerik.Web.UI.Appointment},System.TimeSpan)">
            <summary>
            	Exports the specified appointments to iCalendar format.
            </summary>
            <remarks>
            	The return value should be saved as a text file with an "ics" extension.
            </remarks>
            <returns>A string containing the iCalendar representation of the supplied appointments.</returns>
            <param name="appointments">An IEnumerable of appointments which should be exported.</param>
            <param name="timeZoneOffset">The time zone offset to apply to the exported appointments.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.CreateAppointment">
            <summary>
            Creates a new appointment instance.
            This method is used internally by RadScheduler and can be used by custom appointment providers.
            </summary>
            <returns>
            A new appointment instance.
            </returns>
            <remarks>
            <para>
            	Normally this is an instance of the <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> class.
            </para>
            <para>
            	This method can be overriden by inheritors to create instances of custom classes.
            </para>
            <para>
            	An alternative method for working with custom appointments is to use the
            	<see cref="P:Telerik.Web.UI.RadScheduler.AppointmentFactory">AppointmentFactory</see> property.
            </para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadScheduler.AppointmentFactory"/>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.UtcDayStart(System.DateTime)">
            <summary>
            Returns the UTC date that corresponds to midnight on the client for the selected date.
            </summary>
            <param name="utcDate">Client's date and time in UTC.</param>
            <returns>The UTC date that corresponds to midnight on the client for the selected date.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowInlineEditForm(Telerik.Web.UI.Appointment)">
            <summary>
            Shows the inline edit form.
            </summary>
            <param name="appointmentToEdit">
            	The appointment which is edited. Its properties are used to populate the edit form.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowInlineEditForm(Telerik.Web.UI.Appointment,System.Boolean)">
            <summary>
            Shows the inline edit form.
            </summary>
            <param name="appointmentToEdit">
            	The appointment which is edited. Its properties are used to populate the edit form.
            </param>
            <param name="editSeries">
            	A boolean value indicating whether to edit the recurring series.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowAdvancedEditForm(Telerik.Web.UI.Appointment)">
            <summary>
            Shows the advanced edit form.
            </summary>
            <param name="appointmentToEdit">
            	The appointment which is edited. Its properties are used to populate the edit form.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowAdvancedEditForm(Telerik.Web.UI.Appointment,System.Boolean)">
            <summary>
            Shows the advanced edit form.
            </summary>
            <param name="appointmentToEdit">
            	The appointment which is edited. Its properties are used to populate the edit form.
            </param>
            <param name="editSeries">
            	A boolean value indicating whether to edit the recurring series.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowInlineInsertForm(System.DateTime)">
            <summary>
            Shows the inline insert form.
            </summary>
            <param name="showAt">
            	Specifies the start time for the insert form. It is used to determine the row in which the form is shown.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowInlineInsertForm(Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot)">
            <summary>
            Shows the inline insert form.
            </summary>
            <param name="timeSlot">The time slot object where the insert form will be shown</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowAdvancedInsertForm(System.DateTime)">
            <summary>
            Shows the advansed insert form.
            </summary>
            <param name="showAt">
            	Specifies the start time for the insert form. It is used to determine the row in which the form is shown.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.ShowAlldayInlineInsertForm(System.DateTime)">
            <summary>
            Shows the all-day inline insert form
            </summary>
            <param name="showAt">
            	Specifies the start time for the insert form. It is used to determine the row in which the form is shown.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.GetTimeSlotFromIndex(System.String)">
            <summary>
            Retrieves a TimeSlot object from its client-side index
            </summary>
            <param name="index">String representation of the TimeSlot's index</param>
            <returns>The TimeSlot that corresponds to the passed index</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.HideEditForm">
            <summary>
            Hides the active insert or edit form (if any).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.UtcToDisplay(System.DateTime)">
            <summary>
            Converts a date time object from UTC to client date format using the <see cref="P:Telerik.Web.UI.RadScheduler.TimeZoneOffset">TimeZoneOffset</see> property.
            </summary>
            <param name="utcDate">The date to convert. Must be in UTC format.</param>
            <returns>
            	The date in client format which corresponds to the supplied UTC date
            </returns>
            <remarks>
            	RadScheduler always stores dates in UTC format to allow support for multiple time zones. 
            	The <strong>UtcToDisplay</strong> method must be used when
            	a date (e.g. <see cref="P:Telerik.Web.UI.Appointment.Start">Appointment.Start</see>) 
            	should be presented to the client in some way - e.g. displayed in a label.
            </remarks>
            <example>
            	<code lang="CS">
            		Appointment appointment = RadScheduler1.Appointments[0];
                    Label1.Text = RadScheduler1.UtcToDisplay(appointment.Start).ToString()
            	</code>
            	<code lang="VB">
            		Dim appointment As Appointment = RadScheduler1.Appointments(0)
            		Label1.Text = RadScheduler1.UtcToDisplay(appointment.Start).ToString()
            	</code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.DisplayToUtc(System.DateTime)">
            <summary>
            Converts a date time object from client date format to UTC using the <see cref="P:Telerik.Web.UI.RadScheduler.TimeZoneOffset">TimeZoneOffset</see> property.
            </summary>
            <param name="displayDate">The date to convert. Must be in client format.</param>
            <returns>
            	The date in UTC format which corresponds to the supplied client format date.
            </returns>
            <remarks>
            	RadScheduler always stores dates in UTC format to allow support for multiple time zones. The <strong>DisplayToUtc</strong> method must be used when
            	a date is supplied to RadScheduler to be persisted in some way. For example updating the <see cref="P:Telerik.Web.UI.Appointment.Start">Appointment.Start</see> property from a textbox.
            </remarks>
            <example>
            	<code lang="CS">
            		Appointment appointment = RadScheduler1.Appointments[0];
            		DateTime startInClientFormat = DateTime.Parse(TextBox1.Text);
            		appointment.Start = RadScheduler1.DisplayToUtc(startInClientFormat);
                    RadScheduler1.Update(appointment);
            	</code>
            	<code lang="VB">
            		Dim appointment As Appointment = RadScheduler1.Appointments(0)
            		Dim startInClientFormat As DateTime = DateTime.Parse(TextBox1.Text)
            		appointment.Start = RadScheduler1.DisplayToUtc(startInClientFormat)
                    RadScheduler1.Update(appointment)
            	</code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.InsertAppointment(Telerik.Web.UI.Appointment)">
            <summary>
            Inserts the specified appointment in the Appointments collection,
            expands the series (if it is recurring) and inserts persists it through the provider.
            </summary>
            <param name="appointmentToInsert">The appointment to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.UpdateAppointment(Telerik.Web.UI.Appointment)">
            <summary>
            Updates the specified appointment and persists the changes through the provider.
            </summary>
            <remarks>
            This method can be used, along with <see cref="M:Telerik.Web.UI.RadScheduler.PrepareToEdit(Telerik.Web.UI.Appointment,System.Boolean)">PrepareToEdit</see>
            to create and persist a recurrence exceptions.
            </remarks>
            <example>
            	<code lang="CS">
            		Appointment occurrence = RadScheduler1.Appointments[0];
            		Appointment recurrenceException = RadScheduler1.PrepareToEdit(occurrence, false);
            		
            		recurrenceException.Subject = "This is a recurrence exception";
            
            		RadScheduler1.UpdateAppointment(recurrenceException);
            	</code>
            	<code lang="VB">
            		Dim occurrence As Appointment = RadScheduler1.Appointments(0)
            		Dim recurrenceException as Appointment = RadScheduler1.PrepareToEdit(occurrence, False)
            
            		recurrenceException.Subject = "This is a recurrence exception"
            
            		RadScheduler1.UpdateAppointment(recurrenceException)
            	</code>
            </example>
            <param name="appointmentToUpdate">The appointment to update.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.UpdateAppointment(Telerik.Web.UI.Appointment,Telerik.Web.UI.Appointment)">
            <summary>
            Updates the specified appointment and persists the changes through the provider.
            
            Use this overload when the underlying data source requires both original and modified
            data to perform an update operation. One such example is LinqDataSource.
            </summary>
            <remarks>
            This method can be used, along with <see cref="M:Telerik.Web.UI.RadScheduler.PrepareToEdit(Telerik.Web.UI.Appointment,System.Boolean)">PrepareToEdit</see>
            to create and persist a recurrence exceptions.
            </remarks>
            <example>
            	<code lang="CS">
            		Appointment occurrence = RadScheduler1.Appointments[0];
            		Appointment recurrenceException = RadScheduler1.PrepareToEdit(occurrence, false);
            		
            		Appointment modifiedAppointment = recurrenceException.Clone();
            		modifiedAppointment.Subject = "This is a recurrence exception";
            
            		RadScheduler1.UpdateAppointment(modifiedAppointment, recurrenceException);
            	</code>
            	<code lang="VB">
            		Dim occurrence As Appointment = RadScheduler1.Appointments(0)
            		Dim recurrenceException as Appointment = RadScheduler1.PrepareToEdit(occurrence, False)
            
            		Dim modifiedAppointment = recurrenceException.Clone()
            		modifiedAppointment.Subject = "This is a recurrence exception"
            
            		RadScheduler1.UpdateAppointment(modifiedAppointment, recurrenceException)
            	</code>
            </example>
            <param name="appointmentToUpdate">The appointment to update.</param>
            <param name="originalAppointment">
            	The original appointment. Use <see cref="M:Telerik.Web.UI.Appointment.Clone">Appointment.Clone</see>
            	to obtain a copy of the appointment before updating its properties.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.PrepareToEdit(Telerik.Web.UI.Appointment,System.Boolean)">
            <summary>
            Prepares the specified appointment for editing.
            </summary>
            <remarks>
            If the specified appointment is not recurring, the method does nothing and returns the same appointment.
            If the appointment is recurring and editSeries is set to true the method returns the recurrence parent.
            Otherwise, the method clones the appointment and updates it state to recurrence exception.
            </remarks>
            <example>
            	<code lang="CS">
            		Appointment occurrence = RadScheduler1.Appointments[0];
            		Appointment recurrenceException = RadScheduler1.PrepareToEdit(occurrence, false);
            		
            		recurrenceException.Subject = "This is a recurrence exception";
            
            		RadScheduler1.UpdateAppointment(recurrenceException);
            	</code>
            	<code lang="VB">
            		Dim occurrence As Appointment = RadScheduler1.Appointments(0)
            		Dim recurrenceException as Appointment = RadScheduler1.PrepareToEdit(occurrence, False)
            
            		recurrenceException.Subject = "This is a recurrence exception"
            
            		RadScheduler1.UpdateAppointment(recurrenceException)
            	</code>
            </example>
            <param name="appointmentToEdit">The appointment to edit.</param>
            <param name="editSeries">if set to <c>true</c> [edit series].</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.DeleteAppointment(Telerik.Web.UI.Appointment,System.Boolean)">
            <summary>
            Deletes the appointment or the recurrence series it is part of.
            </summary>
            <remarks>
            When deleting an appointment that is part of recurrence series and deleteSeries is set to false
            this method will update the master appointment to produce a recurrence exception.
            </remarks>
            <param name="appointmentToDelete">The appointment to delete.</param>
            <param name="deleteSeries">if set to <c>true</c> delete complete recurrence series.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadScheduler.RemoveRecurrenceExceptions(Telerik.Web.UI.Appointment)">
            <summary>
            Removes the associated recurrence exceptions through the provider.
            </summary>
            <param name="master">The recurrence master.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.UseDefaultAdvancedInsert">
            <summary>
            Indicates whether to instantiate a clent-side object for the
            advanced insert form (applicable only in Web Service mode).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.UseDefaultAdvancedEdit">
            <summary>
            Indicates whether to instantiate a clent-side object for the
            advanced edit form (applicable only in Web Service mode).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ExportSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.Scheduler.SchedulerExportSettings"/> object that
                    allows you to set the properties of the grouping operation in a
                    Telerik RadScheduler control.
                </para>
            </summary>
            <value>
            A reference to the SchedulerExportSettings that allows you to set the properties of
            the grouping operation in a Telerik RadScheduler control.
            </value>
            <remarks>
            	<para>Use the ExportSettings property to control the settings of the grouping
                operations in a Telerik RadScheduler control. This property is read-only;
                however, you can set the properties of the SchedulerGroupingSettings object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadScheduler
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the SchedulerExportSettings object (for example,
                    GroupingSettings-ExpandTooltip).</item>
            		<item>Nest a &lt;GroupingSettings&gt; element between the opening and closing
                    tags of the Telerik RadScheduler control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, GroupingSettings.ExpandTooltip). Common settings
                usually include the tool tips for the sorting controls.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.PdfExporting">
            <summary>Fires when a scheduler is exporting.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.Appointments">
            <summary>
                Gets a collection of <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> objects that represent individual
                appointments in the <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </summary>
            <value>
                A collection of the currently loaded <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> objects.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AppointmentFactory">
            <summary>
            A factory for appointment instances.
            </summary>
            <remarks>
            <para>
            	The default factory returns instances of the
            	<see cref="T:Telerik.Web.UI.Appointment">Appointment</see> class.
            </para>
            <para>
            	RadScheduler needs to create appointment instances in various
            	stages of the control life cycle. You can use custom appointment
            	classes by either implementing an IAppointmentFactory or by overriding
            	the <see cref="M:Telerik.Web.UI.RadScheduler.CreateAppointment">CreateAppointment</see> method.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.Resources">
            <summary>
            	A collection of all resources loaded by <strong>RadScheduler</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.VisibleRangeStart">
            <summary>
            	Returns visible start date of the current view.
            </summary>
            <remarks>
            	All tasks rendered in the current view will be within the range specified by the <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeStart">VisibleRangeStart</see>
                and <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeEnd">VisibleRangeEnd</see> properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.VisibleRangeEnd">
            <summary>
            	Returns visible end date of the current view.
            </summary>
            <remarks>
            	All tasks rendered in the current view will be within the range specified by the <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeStart">VisibleRangeStart</see>
                and <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeEnd">VisibleRangeEnd</see> properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EditingRecurringSeries">
            <summary>
            Gets a value indicating whether the recurring series are being edited at the moment, as opposed to a single appointment of the series.
            </summary>
            <remarks>
            This property is also used to indicate the target of the delete and move operations.
            </remarks>
            <value>
            	<c>true</c> if the recurring series are being edited at the moment; <c>false</c> otherwise.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.RecurrenceSupport">
            <summary>
            Gets a boolean value that indicates if recurrence support has been configured for this
            instance of RadScheduler.
            </summary>
            <remarks>
            
            </remarks>
            <value>
            	<strong>True</strong> when the
            	<see cref="P:Telerik.Web.UI.RadScheduler.DataRecurrenceField">DataRecurrenceField</see> and
            	<see cref="P:Telerik.Web.UI.RadScheduler.DataRecurrenceParentKeyField">DataRecurrenceParentKeyField</see>
            	fields are set or when using a custom data provider.
            
            	<strong>False</strong> if either of the above conditions is not satisfied
            	or when the <see cref="P:Telerik.Web.UI.RadScheduler.EnableRecurrenceSupport">EnableRecurrenceSupport</see> property
            	is set to <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.RemindersSupport">
            <summary>
            Gets a boolean value that indicates if reminders support has been configured for this
            instance of RadScheduler.
            </summary>
            <remarks>
            
            </remarks>
            <value>
            	<strong>True</strong> when the
            	<see cref="P:Telerik.Web.UI.RadScheduler.DataReminderField">DataReminderField</see>
            	field is set or when using a custom data provider.
            
            	<strong>False</strong> if the above conditions is not satisfied
            	or when the <see cref="P:Telerik.Web.UI.ReminderSettings.Enabled">Reminders.Enabled</see> property
            	is set to <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.SelectedView">
            <value>
                One of the <see cref="T:Telerik.Web.UI.SchedulerViewType">SchedulerViewType</see> values. The
                default is DayView.
            </value>
            <summary>Gets or sets the current view type.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.GroupBy">
            <summary>
            Gets the name of the resource to group by.
            Can also be in the format "Date,[Resource Name]" when grouping by date.
            </summary>
            <value>The resource to group by.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableAdvancedForm">
            <summary>
            Gets or sets a value indicating whether the user can use the advanced insert/edit form.
            </summary>
            <value><strong>true</strong> if the user should be able to use the advanced insert/edit form; <strong>false </strong> otherwise. The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.StartEditingInAdvancedForm">
            <summary>
            Gets or sets a value indicating whether "advanced" mode is the default edit mode.
            </summary>
            <value><strong>true</strong> if the "advanced" mode is the default edit mode; <strong>false </strong> if "inline" is default edit mode. The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.StartInsertingInAdvancedForm">
            <summary>
            Gets or sets a value indicating whether "advanced" mode is the default insert mode.
            </summary>
            <value><strong>true</strong> if the "advanced" mode is the default insert mode; <strong>false </strong> if "inline" is default insert mode. The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DisplayDeleteConfirmation">
            <summary>
            Gets or sets a value indicating whether a delete confirmation dialog should be displayed when the user clicks the "delete" button of an appointment.
            </summary>
            <value>
            	<strong>true</strong> if the confirmation dialog should be displayed; <stong>false</stong> otherwise. The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DisplayRecurrenceActionDialogOnMove">
            <summary>
            Gets or sets a value indicating whether a confirmation dialog should be displayed when the user moves a recurring appointment.
            </summary>
            <value>
            	<strong>true</strong> if the confirmation dialog should be displayed; <stong>false</stong> otherwise. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ReadOnly">
            <summary>
            Gets or sets a value indicating whether RadScheduler is in read-only mode.
            </summary>
            <value>
            	<strong>true</strong> if RadScheduler should be read-only; <strong>false</strong> otherwise. The default value is <strong>false</strong>.
            </value>
            <remarks>
            	By default the user is able to insert, edit and delete appointments. Use the <strong>ReadOnly</strong> to disable the editing capabilities of RadScheduler.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ResourceTypes">
            <summary>
                Gets a collection of <see cref="T:Telerik.Web.UI.ResourceType">ResourceType</see> objects that represent
                the resource types used by <strong>RadScheduler</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ResourceStyles">
            <summary>
            Gets a collection of <see cref="T:Telerik.Web.UI.ResourceStyleMapping">ResourceStyleMapping</see>
            objects can be used to associate resources with particular
            cascading style sheet (CSS) classes.
            </summary>
            <remarks>
            Resources are matched by <strong>all</strong> (boolean AND) specified properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.TimeZoneOffset">
            <summary>
            Gets or sets the time zone offset to use when displaying appointments.
            </summary>
            <value>The time zone offset to use when displaying appointments.</value>
            <remarks>The default value is TimeSpan.Zero.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.VisualTimeZoneOffset">
            <summary>
            Gets or sets the time zone offset to use when determining todays date.
            </summary>
            <value>The time zone offset to use when determining todays date.</value>
            <remarks>
            	The default value is the system's time zone offset.
            	This value is ignored when TimeZoneOffset is set.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.SelectedDate">
            <summary>
                The meaning of this property is different depending on the current 
                <see cref="P:Telerik.Web.UI.RadScheduler.SelectedView">view type</see>.
                In <see cref="F:Telerik.Web.UI.SchedulerViewType.DayView">day view</see> mode SelectedDate
                gets or sets the currently displayed date.
                In <see cref="F:Telerik.Web.UI.SchedulerViewType.WeekView">week</see> and
                <see cref="F:Telerik.Web.UI.SchedulerViewType.MonthView">month</see> view modes SelectedDate 
                gets or sets the highlighted date in the current week or month.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.TimeLabelRowSpan">
            <summary>
            	Gets or sets the number of rows each time label spans.
            </summary>
            <value>
            	The number of rows each time label spans. The default value is <strong>2</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.MinutesPerRow">
            <summary>Gets or sets the number of minuties which a single row represents</summary>
            <value>
            	An integer specifying how many minutes a row represents. The default value is <strong>30</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.NumberOfHoveredRows">
            <summary>Gets or sets the number of rows that are hovered when the mouse is over the appointment area.</summary>
            <value>
            	An integer specifying the number of rows that are hovered when the mouse is over the appointment area.
            	The default value is <strong>2</strong>.
            	This value also determines the initial length of inserted appointments.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DayStartTime">
            <summary>
                Gets or sets the time used to denote the start of the day.
            </summary>
            <value>
                The time used to denote the start of the day.
            </value>
            <remarks>
                This property is ignored in <see cref="F:Telerik.Web.UI.SchedulerViewType.MonthView">month view</see> mode.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DayEndTime">
            <summary>
                Gets or sets the time used to denote the end of the day.
            </summary>
            <value>
                The time used to denote the end of the day.
            </value>
            <remarks>
                This property is ignored in <see cref="F:Telerik.Web.UI.SchedulerViewType.MonthView">month view</see> mode.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.WorkDayStartTime">
            <summary>
                Gets or sets the time used to denote the start of the work day.
            </summary>
            <value>
                The time used to denote the start of the work day.
            </value>
            <remarks>
            	The effect from this property is only visual.
                This property is ignored in <see cref="F:Telerik.Web.UI.SchedulerViewType.MonthView">month view</see> mode.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.WorkDayEndTime">
            <summary>
                Gets or sets the time used to denote the end of the work day.
            </summary>
            <value>
                The time used to denote the end of the work day.
            </value>
            <remarks>
            	The effect from this property is only visual.
                This property is ignored in <see cref="F:Telerik.Web.UI.SchedulerViewType.MonthView">month view</see> mode.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableResourceEditing">
            <summary>
            Gets or sets a value that indicates whether the resource editing in the advanced form is enabled.
            </summary>
            <value>A value that indicates whether the resource editing in the advanced form is enabled.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableCustomAttributeEditing">
            <summary>
            Gets or sets a value that indicates whether the attribute editing in the advanced form is enabled.
            </summary>
            <value>A value that indicates whether the attribute editing in the advanced form is enabled.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.FirstDayOfWeek">
            <summary>
            Gets or sets the first day of the week.
            </summary>
            <remarks>
            	Used this property to specify the first day rendered in week view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.LastDayOfWeek">
            <summary>
            Gets or sets the last day of the week.
            </summary>
            <remarks>
            This property is applied in week and month view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OverflowBehavior">
            <summary>
            Gets or sets a value specifying the way <strong>RadScheduler</strong> should behave when its content
            overflows its dimensions.
            </summary>
            <value>
            	One of the <see cref="P:Telerik.Web.UI.RadScheduler.OverflowBehavior">OverflowBehavior</see> values. The default value is OverflowBehavior.Scroll.
            </value>
            <remarks>
            	By default RadScheduler will render a scrollbar should its content exceed the specified dimensions
            	(set via the Width and Height properties). If
            	<see cref="F:Telerik.Web.UI.OverflowBehavior.Expand">OverflowBehavior.Expand</see> is set RadScheduler
            	will expand vertically. The Height property must not be set in that case.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowHoursColumn">
            <summary>
            Gets or sets a value indicating whether to render the hours column in day and week view.
            </summary>
            <value><c>true</c> if the hours column is rendered in day and week view; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowDateHeaders">
            <summary>
            Gets or sets a value indicating whether to render date headers for the current view.
            </summary>
            <value><c>true</c> if the date headers for the current view are rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowResourceHeaders">
            <summary>
            Gets or sets a value indicating whether to render resource headers for the current view.
            </summary>
            <value><c>true</c> if the resource headers for the current view are rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowHeader">
            <summary>
            Gets or sets a value indicating whether to render the header.
            </summary>
            <value><c>true</c> if the header is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowFooter">
            <summary>
            Gets or sets a value indicating whether to render the footer.
            </summary>
            <value><c>true</c> if the footer is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowNavigationPane">
            <summary>
            Gets or sets a value indicating whether to render  the navigation links..
            </summary>
            <value><c>true</c> if the header is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowViewTabs">
            <summary>
            Gets or sets a value indicating whether to render the tabs for switching between the view types.
            </summary>
            <value><c>true</c> if the tabs is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowAllDayRow">
            <summary>
            Gets or sets a value indicating whether to render  the all day pane.
            </summary>
            <value><c>true</c> if the header is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EditFormDateFormat">
            <summary>
            Gets or sets the edit form date format string.
            </summary>
            <value>The edit form date format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EditFormTimeFormat">
            <summary>
            Gets or sets the edit form time format string.
            </summary>
            <value>The edit form time format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.HoursPanelTimeFormat">
            <summary>
            Gets or sets the hours panel time format string.
            </summary>
            <value>The hours panel time format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ShowFullTime">
            <summary>
            Gets or sets a value indicating whether to display the complete day (24-hour view) or the range between DayStartTime and DayEndTime.
            </summary>
            <value><c>true</c> if showing the complete day (24-hour view); otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AppointmentStyleMode">
            <summary>
            Defines the styling mode for appointments.
            </summary>
            <value>
            <para>
            	<see cref="F:Telerik.Web.UI.AppointmentStyleMode.Auto">AppointmentStyleMode.Auto</see> -
            	Appointments with set background or border color are rendered using the Simple style - without rounded corners or gradiented background.
            	All others are rendered using their default style - with rounded corners and gradiented background.
            </para>
            <para>
            	<see cref="F:Telerik.Web.UI.AppointmentStyleMode.Simple">AppointmentStyleMode.Simple</see> -
            	Appointments are rendered using the simple style - without rounded corners or gradiented background.
            </para>
            <para>
            	<see cref="F:Telerik.Web.UI.AppointmentStyleMode.Default">AppointmentStyleMode.Default</see> -
            	Appointments rendered with rounded corners and gradiented background.
            	Custom background and border colors are supported. Gradiented backgrounds for custom colors are not available in IE6.
            </para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.GroupingDirection">
            <summary>
            Gets or sets the resource grouping direction of the RadScheduler.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableDatePicker">
            <summary>
            Gets or sets a value indicating whether to enable the date picker for quick navigation.
            </summary>
            <value><c>true</c> if the date picker for quick navigation is enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.RowHeight">
            <summary>
            Gets or sets the height of RadScheduler rows.
            </summary>
            <value>The height of a RadScheduler row</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ColumnWidth">
            <summary>
            Gets or sets the width of each content column.
            </summary>
            <value>The width of each content column</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.RowHeaderWidth">
            <summary>
            Gets or sets the width of each row header.
            </summary>
            <value>The width of each row header</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.MinimumInlineFormHeight">
            <summary>
            Gets or sets the minimum height of the inline insert/edit template.
            </summary>
            <remarks>
            The height is applied to the textbox inside the default inline template.
            It will be ignored when using custom templates for the inline form.
            </remarks>
            <value>The minimum height of the inline insert/edit template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.MinimumInlineFormWidth">
            <summary>
            Gets or sets the minimum width of the inline insert/edit template.
            </summary>
            <value>The minimum width of the inline insert/edit template.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableExactTimeRendering">
            <summary>
            Gets or sets a value indicating whether the appointment start and end time should be rendered exactly.
            </summary>
            <value>
            <c>true</c> if the appointment start and end time should be rendered exactly;
            <c>false</c> if the appointment start and end time should be snapped to the row boundaries.
            The default value is <c>false</c>.
            </value>
            <remarks>
                Currently, exact time rendering is supported only in Day, Week and MultiDay views.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.TimeSlotContextMenus">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> objects
            	that represent the time slot context menus of the <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AppointmentContextMenus">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> objects
            	that represent the Appointment context menus of the <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </summary>
            <value>A <see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">RadSchedulerContextMenuCollection</see> that
            	contains all the Appointment context menus of the <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </value>
            <remarks>
            	<para>By default, if the <strong>AppointmentContextMenus</strong> collection contains <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>s,
            	the first one is displayed on the right-click of each <see cref="T:Telerik.Web.UI.Appointment">Appointment</see>. 
                To specify a different context menu for a <see cref="T:Telerik.Web.UI.Appointment">Appointment</see>, use its
            	<see cref="P:Telerik.Web.UI.Appointment.ContextMenuID">ContextMenuID</see> property.
                </para>
            </remarks>
            <example>The following code example demonstrates how to populate the <see cref="P:Telerik.Web.UI.RadScheduler.AppointmentContextMenus">AppointmentContextMenus</see>
            collection declaratively.
            <code lang="html">
            	&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            	&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            	
            	&lt;html&gt;
            	&lt;body&gt;
            	&lt;form id="form1" runat="server"&gt;
            	&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            	&lt;br /&gt;
                &lt;telerik:RadScheduler runat="server" ID="RadScheduler1"&gt;
                &lt;AppointmentContextMenus&gt;
                   &lt;telerik:RadSchedulerContextMenu runat="server" ID="ContextMenu1"&gt;
                       &lt;Items&gt;
                           &lt;telerik:RadMenuItem Text="Open" Value="CommandEdit" /&gt;
                           &lt;telerik:RadMenuItem IsSeparator="True" /&gt;
                           &lt;telerik:RadMenuItem Text="Categorize"&gt;
                               &lt;Items&gt;
                                   &lt;telerik:RadMenuItem Text="Development" Value="1" /&gt;
                                   &lt;telerik:RadMenuItem Text="Marketing" Value="2" /&gt;
                                   &lt;telerik:RadMenuItem Text="Personal" Value="3" /&gt;
                                   &lt;telerik:RadMenuItem Text="Work" Value="4" /&gt;
                               &lt;/Items&gt;
                           &lt;/telerik:RadMenuItem&gt;
                           &lt;telerik:RadMenuItem IsSeparator="True" /&gt;
                           &lt;telerik:RadMenuItem Text="Delete" ImageUrl="Images/delete.gif" Value="CommandDelete" /&gt;
                       &lt;/Items&gt;
                   &lt;/telerik:RadSchedulerContextMenu&gt;
                &lt;/AppointmentContextMenus&gt;
                &lt;/telerik:RadScheduler&gt;
            	
            	&lt;/form&gt;
            	&lt;/body&gt;
            	&lt;/html&gt;
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ValidationGroup">
            <summary>
            Gets or sets the name of the validation group to be used for the integrated validation controls.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataSourceID">
            <summary>
                Overridden. Gets or sets the ID property of the data source control that the
                RadScheduler should use to retrieve its data source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.Provider">
            <summary>
                Gets or sets the provider instance to be used by RadScheduler. Use this property
                with providers that are created at runtime. For ASP.NET providers defined in web.config
                use the <see cref="P:Telerik.Web.UI.RadScheduler.ProviderName">ProviderName</see> property.
            </summary>
            <value>
                The provider instance to be used by RadScheduler.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ProviderName">
            <summary>
                Gets or sets the name of the current appointment provider used by RadScheduler. The provider
                must be defined in the RadScheduler section of web.config.
            </summary>
            <value>
                The name of the current appointment provider used by RadScheduler as defined in web.config.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.ProviderContext">
            <summary>
                Gets the current provider context. The context object contains
            	additional information about the currently performed operation,
            	that can be used to improve and optimize provider implementations.
            </summary>
            <value>
                The current provider context.
            	The context object can be of type
            	<see cref="T:Telerik.Web.UI.UpdateAppointmentContext">UpdateAppointmentContext</see> or
            	<see cref="T:Telerik.Web.UI.CreateRecurrenceExceptionContext">CreateRecurrenceExceptionContext</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataKeyField">
            <summary>
                Gets or sets the key field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the key field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataSubjectField">
            <summary>
                Gets or sets the subject field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the subject field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataDescriptionField">
            <summary>
                Gets or sets the description field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the description field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
            <remarks>
            	<para>This property is optional. If it's not specified the description field will not be
            	visible in the insert/edit forms.</para>
            	<para>Setting this property to a non-empty string will enable the Description field
            	regardless of the value of <see cref="P:Telerik.Web.UI.RadScheduler.EnableDescriptionField">EnableDescriptionField</see>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataReminderField">
            <summary>
                Gets or sets the reminder field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the reminder field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
            <remarks>
            	<para>This property is optional. If it's not specified the reminder drop-down will not be
            	visible in the insert/edit forms.</para>
            	<para>Setting this property to a non-empty string will enable the reminder drop-down
            	regardless of the value of <see cref="P:Telerik.Web.UI.ReminderSettings.Enabled">Reminders-Enabled</see>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataEndField">
            <summary>
                Gets or sets the end field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the end field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataStartField">
            <summary>
                Gets or sets the start field for appointments in the data source specified by the
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the start field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataRecurrenceField">
            <summary>
                Gets or sets the recurrence rule field for appointments in the data source specified by
                the <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the recurrene rule field for appointments in the data source specified by
                <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.DataRecurrenceParentKeyField">
            <summary>
                Gets or sets the recurrence parent key field for appointments in the data source specified
                by the <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see> property.
            </summary>
            <value>
                The name of the recurrence parent key field for appointments in the data source specified
                by <see cref="P:Telerik.Web.UI.RadScheduler.DataSourceID">DataSourceID</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.CustomAttributeNames">
            <summary>
            	Specifies the database fields (column names) which should be loaded as appointment attributes.
            </summary>
            <value>
            	An array of strings representing the names of the database fields which should be populated as appointment custom attributes. By default <strong>RadScheduler</strong> does not populate any
            	database fields as custom attributes.
            </value>
            <remarks>
            	You should use the <strong>CustomAttributeNames</strong> property when you want RadScheduler to populate the <see cref="P:Telerik.Web.UI.Appointment.Attributes">Attributes</see> collection of the appointments.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AppointmentComparer">
            <summary>
            Gets or sets the comparer instance used to determine the appointment ordering within the same slot.
            By default, appointments are ordered by start time and duration.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.MaximumRecurrenceCandidates">
            <summary>
            Gets or sets the maximum recurrence candidates limit.
            </summary>
            <remarks>
            This limit is used to prevent lockups when evaluating long recurring series.
            The default value should not be changed under normal conditions.
            </remarks>
            <value>The maximum recurrence candidates limit.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableRecurrenceSupport">
            <summary>
            Gets or sets a value indicating whether the user can create and edit recurring appointments.
            </summary>
            <value><strong>true</strong> if the user is allowed to create and edit recurring appointments; <strong>false </strong> otherwise. The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.EnableDescriptionField">
            <summary>
            Gets or sets a value indicating whether the user can view and edit the description field of appointments.
            </summary>
            <value>
            	<strong>true</strong> if the user is allowed to view and edit the description field of appointments;
            	<strong>false </strong> otherwise. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AllowEdit">
            <summary>
            Gets or sets a value indicating whether appointments editing is allowed.
            </summary>
            <value><c>true</c> if appointments editing is allowed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AllowDelete">
            <summary>
            Gets or sets a value indicating whether appointments deleting is allowed.
            </summary>
            <value><c>true</c> if appointments deleting is allowed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.AllowInsert">
            <summary>
            Gets or sets a value indicating whether appointments inserting is allowed.
            </summary>
            <value><c>true</c> if appointments inserting is allowed; otherwise, <c>false</c>.</value>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentCommand">
            <summary>
            Occurs when a button is clicked within the appointment template.
            </summary>
            <remarks>
            The AppointmentCommand event is raised when any button is clicked withing the appointment template.
            This event is commonly used to handle button controls with a custom CommandName value.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentCommand(object sender, AppointmentCommandEventArgs e)
            		{
            			if (e.CommandName == "Delete")
            			{
            				Delete(e.Container.Appointment);
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentCommand(sender As Object, e As AppointmentCommandEventArgs)
            			If e.CommandName = "Delete" Then
            				Delete(e.Container.Appointment)
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentContextMenuItemClicking">
            <summary>
            Occurs when an appointment context menu item is clicked, before processing default commands.
            </summary>
            <remarks>
            The AppointmentContextMenuItemClicking event is raised when an appointment context menu item is clicked, before are processing default commands.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentContextMenuItemClicked">
            <summary>
            Occurs after an appointment context menu item is clicked.
            </summary>
            <remarks>
            The AppointmentContextMenuItemClicked event is raised after an appointment context menu item is clicked.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.TimeSlotContextMenuItemClicking">
            <summary>
            Occurs when a time slot context menu item is clicked, before processing default commands.
            </summary>
            <remarks>
            The TimeSlotContextMenuItemClicking event is raised when a time slot context menu item is clicked, before are processing default commands.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.TimeSlotContextMenuItemClicked">
            <summary>
            Occurs after a time slot context menu item is clicked.
            </summary>
            <remarks>
            The TimeSlotContextMenuItemClicked event is raised after a time slot context menu item is clicked.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentInsert">
            <summary>
            Occurs when an appointment is about to be inserted in the database through the provider.
            </summary>
            <remarks>
            The insert operation can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">SchedulerCancelEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.SchedulerCancelEventArgs">SchedulerCancelEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentInsert(object sender, SchedulerCancelEventArgs e)
            		{
            			if (e.Appointment.Subject == String.Empty)
            			{
            				e.Cancel = true;
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentInsert(sender As Object, e As SchedulerCancelEventArgs)
            			If e.Appointment.Subject = String.Empty Then
            				e.Cancel = True
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentUpdate">
            <summary>
            Occurs when an appointment is about to be updated through the provider.
            </summary>
            <remarks>
            The <see cref="T:Telerik.Web.UI.AppointmentUpdateEventArgs">AppointmentUpdateEventArgs</see> hold a reference both
            to the original and the modified appointment. Any modifications on the original appointments are
            discarded.
            The update operation can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">AppointmentUpdateEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.AppointmentUpdateEventArgs">AppointmentUpdateEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentUpdate(object sender, AppointmentUpdateEventArgs e)
            		{
            			e.ModifiedAppointment.End = e.ModifiedAppointment.End.AddHours(1);
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentUpdate(sender As Object, e As AppointmentUpdateEventArgs)
            			e.ModifiedAppointment.End = e.ModifiedAppointment.End.AddHours(1)
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentDelete">
            <summary>
            Occurs when an appointment is about to be deleted from the database through the provider.
            </summary>
            <remarks>
            The delete operation can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">SchedulerCancelEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.SchedulerCancelEventArgs">SchedulerCancelEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentDelete(object sender, SchedulerCancelEventArgs e)
            		{
            			if (e.Appointment.Attributes["ReadOnly"] == "true")
            			{
            				e.Cancel = true;
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentDelete(sender As Object, e As SchedulerCancelEventArgs)
            			If e.Appointment.Attributes("ReadOnly") = "true" Then
            				e.Cancel = True
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentCreated">
            <summary>
            Occurs when an appointment template has been instantiated.
            </summary>
            <remarks>
            You can use this event to modify the appointment template before data binding.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentCreated(object sender, AppointmentCreatedEventArgs e)
            		{
            			Label testLabel = (Label) e.Container.FindControl("Test");
            			testLabel.Text = "Test";
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentCreated(sender As Object, e As AppointmentCreatedEventArgs)
            			Dim testLabel As Label = CType(e.Container.FindControl("Test"), Label)
            			testLabel.Text = "Test"
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentDataBound">
            <summary>
            Occurs when an appointment has been added to the Appointments collection from the data source.
            </summary>
            <remarks>
            You can use this event to make adjustments to the appointments as they are being loaded.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentDataBound(object sender, SchedulerEventArgs e)
            		{
            			e.Appointment.Start = e.Appointment.Start.AddHours(1);
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentDataBound(sender As Object, e As SchedulerEventArgs)
            			e.Appointment.Start = e.Appointment.Start.AddHours(1)
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentClick">
            <summary>
            Occurs when an appointment has been clicked.
            </summary>
            <remarks>
            You can use this event to perform additional actions when an appointment has been clicked.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentClick(object sender, SchedulerEventArgs e)
            		{
            			Response.Redirect("Page.aspx);
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_AppointmentClick(sender As Object, e As SchedulerEventArgs)
            			Response.Redirect("Page.aspx)
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.NavigationCommand">
            <summary>
            Occurs when the RadScheduler is about to execute a navigation command.
            </summary>
            <remarks>
            You can use this event to customize the action when the RadScheduler is about to execute a navigation command.
            The event can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">SchedulerNavigationCommandEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.SchedulerNavigationCommandEventArgs">SchedulerNavigationCommandEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_NavigationCommand(object sender, SchedulerNavigationCommandEventArgs e)
            		{
            			if (e.Command == SchedulerNavigationCommand.NavigateToNextPeriod)
            			{
            				e.Cancel = true;
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_NavigationCommand(sender As Object, e As SchedulerNavigationCommandEventArgs)
            			If e.Command = SchedulerNavigationCommand.NavigateToNextPeriod Then
            				e.Cancel = True
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.NavigationComplete">
            <summary>
            Occurs when a navigation command has been executed.
            </summary>
            <remarks>
            You can use this event to perform custom actions when a navigation command has been processed.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_NavigationComplete(object sender, SchedulerNavigationCompleteEventArgs e)
            		{
            			Label1.Text = RadScheduler1.SelectedDate;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_NavigationComplete(sender As Object, e As SchedulerNavigationCompleteEventArgs)
            			Label1.Text = RadScheduler1.SelectedDate
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.FormCreating">
            <summary>
            Occurs when an insert/edit form is being created.
            </summary>
            <remarks>
            You can use this event to perform custom actions when a form is about to be created.
            The event can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">SchedulerFormCreatingEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.SchedulerFormCreatingEventArgs">SchedulerFormCreatingEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_FormCreating(object sender, SchedulerFormCreatingEventArgs e)
            		{
            			if (e.Mode == SchedulerFormMode.Insert)
            			{
            				e.Cancel = true;
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_FormCreating(sender As Object, e As SchedulerFormCreatingEventArgs)
            			If e.Mode = SchedulerFormMode.Insert Then
            				e.Cancel = True
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.FormCreated">
            <summary>
            Occurs when an insert/edit form has been created.
            </summary>
            <remarks>
            You can use this event to make modifications to the form template.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_FormCreated(object sender, SchedulerFormCreatedEventArgs e)
            		{
            			if (e.Container.Mode == SchedulerFormMode.Insert)
            			{
            				Label startDate = (Label) e.Container.FindControl("StartDate");
            				startDate.Text = e.Container.Appointment.Start;
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_FormCreated(sender As Object, e As SchedulerFormCreatedEventArgs)
            			If e.Container.Mode = SchedulerFormMode.Insert Then
            				Dim startDate As Label = CType(e.Container.FindControl("StartDate"), Label)
            				startDate.Text = e.Container.Appointment.Start
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentCancelingEdit">
            <summary>
            Occurs when the Cancel button of an edit form is clicked, but before RadScheduler exits edit mode.
            </summary>
            <remarks>
            You can use this event to provide an event-handling method that performs a custom routine,
            such as stopping the cancel operation if it would put the appointment in an undesired state.
            To stop the cancel action set the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">AppointmentCancelingEditEventArgs.Cancel</see>
            property of <see cref="T:Telerik.Web.UI.AppointmentCancelingEditEventArgs">AppointmentCancelingEditEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_FormCreated(object sender, SchedulerFormCreatedEventArgs e)
            		{
            			if (e.Container.Mode == SchedulerFormMode.Insert)
            			{
            				TextBox startDate = (TextBox) e.Container.FindControl("StartDate");
            				if (startDate.Text == String.Empty)
            				{
            					e.Cancel = true;
            				}
            			}
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_FormCreated(sender As Object, e As SchedulerFormCreatedEventArgs)
            			If e.Container.Mode = SchedulerFormMode.Insert Then
            				Dim startDate As TextBox = CType(e.Container.FindControl("StartDate"), TextBox)
            				If startDate.Text = String.Empty Then
            					e.Cancel = true
            				End If
            			End If
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.TimeSlotCreated">
            <summary>
            Occurs when a time slot has been created.
            </summary>
            <remarks>
            You can use this event to make modifications to the time slots.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_TimeSlotCreated(object sender, TimeSlotCreatedEventArgs e)
            		{
            			e.TimeSlot.CssClass = "holidayTimeSlot";
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_TimeSlotCreated(sender As Object, e As TimeSlotCreatedEventArgs)
            			e.TimeSlot.CssClass = "holidayTimeSlot"
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.ResourceHeaderCreated">
            <summary>
            Occurs when a resource header has been created.
            </summary>
            <remarks>
            You can use this event to make modifications to the resouce headers.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_ResourceHeaderCreated(object sender, ResourceHeaderCreatedEventArgs e)
            		{
            			e.Container.Controls.Add(new LiteralControl("Test"));
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_ResourceHeaderCreated(sender As Object, e As ResourceHeaderCreatedEventArgs)
            			e.Container.Controls.Add(new LiteralControl("Test"))
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.OccurrenceDelete">
            <summary>
            Occurs when an occurrence is about to be removed.
            </summary>
            <remarks>
            The <see cref="T:Telerik.Web.UI.OccurrenceDeleteEventArgs">OccurrenceDeleteEventArgs</see> hold a reference both
            to the master and the occurrence appointment.
            The operation can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">Cancel</see>
            property of <see cref="T:Telerik.Web.UI.OccurrenceDeleteEventArgs">OccurrenceDeleteEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_OccurrenceDelete(object sender, OccurrenceDeleteEventArgs e)
            		{
            			e.Cancel = true;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_OccurrenceDelete(sender As Object, e As OccurrenceDeleteEventArgs)
            			e.Cancel = true
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.RecurrenceExceptionCreated">
            <summary>
            Occurs when an appointment that represents a recurrence exception is about to be created.
            </summary>
            <remarks>
            The <see cref="T:Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs">RecurrenceExceptionCreatedEventArgs</see> hold a reference both
            to the master and the exception appointment.
            The operation can be cancelled by setting the
            <see cref="P:System.ComponentModel.CancelEventArgs.Cancel">Cancel</see>
            property of <see cref="T:Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs">RecurrenceExceptionCreatedEventArgs</see> to true.
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_RecurrenceExceptionCreated(object sender, RecurrenceExceptionCreatedEventArgs e)
            		{
            			e.Cancel = true;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_RecurrenceExceptionCreated(sender As Object, e As RecurrenceExceptionCreatedEventArgs)
            			e.Cancel = true
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.ResourcesPopulating">
            <summary>
            Occurs when the scheduler is about to request resources from the Web Service.
            </summary>
            <remarks>
            <para>
            	Resources need to be populated from the server when using resource grouping.
            	Doing so also reduces the client-side initialization time.
            </para> 
            <para>
            	This operation requires the <see cref="T:System.Net.WebPermission">WebPermission</see> to be granted
            	for the Web Service URL. This permission is not granted by default in <b>Medium Trust</b>.
            </para>
            <para>
            	You can disable the population of the resources from the server and still use
            	client-side rendering for grouped views. To do so you need to set the
            	<see cref="P:Telerik.Web.UI.SchedulerWebServiceSettings.ResourcePopulationMode">WebServiceSettings.ResourcePopulationMode</see>
            	to <see cref="F:Telerik.Web.UI.SchedulerResourcePopulationMode.Manual">Manual</see> and
            	populate the resources from the OnInit method of the page.
            </para>
            <para>
            	The <see cref="T:Telerik.Web.UI.ResourcesPopulatingEventArgs">ResourcesPopulatingEventArgs</see>
            	contains additional information about the request that is about to be made.
            	You can use its properties to modify the URL, supply credentials and so on.
            </para>
            <para>
            	The operation can be cancelled by setting the
            	<see cref="P:System.ComponentModel.CancelEventArgs.Cancel">ResourcesPopulatingEventArgs.Cancel</see>
            	property of <see cref="T:Telerik.Web.UI.ResourcesPopulatingEventArgs">ResourcesPopulatingEventArgs</see> to true.
            </para>
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_ResourcesPopulating(object sender, ResourcesPopulatingEventArgs e)
            		{
            			e.Cancel = true;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_ResourcesPopulating(sender As Object, e As ResourcesPopulatingEventArgs)
            			e.Cancel = true
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.AppointmentsPopulating">
            <summary>
            Occurs when the scheduler is about to request appointments from the provider / data source.
            </summary>
            <remarks>
            <para>
            	You can use this event to supply additional information to the providers' GetAppointments(ISchedulerInfo) method.
            </para>
            <para>
            	In order to send additional data to the provider you need to inherit <see cref="T:Telerik.Web.UI.SchedulerInfo"/>
            	or implement <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> from scratch, adding your custom properties in the process.
            	Replace the <see cref="P:Telerik.Web.UI.AppointmentsPopulatingEventArgs.SchedulerInfo"/> object with your implementation
            	and access it from the providers' GetAppointments(ISchedulerInfo) method.
            </para>
            <para>
            	The operation can be cancelled by setting the
            	<see cref="P:System.ComponentModel.CancelEventArgs.Cancel">AppointmentsPopulatingEventArgs.Cancel</see>
            	property of <see cref="T:Telerik.Web.UI.AppointmentsPopulatingEventArgs"/> to true.
            </para>
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_AppointmentsPopulating(object sender, AppointmentsPopulatingEventArgs e)
            		{
            			MySchedulerInfo info = new MySchedulerInfo(e.SchedulerInfo); // Copy existing data
            			info.UserID = 42;
            			
                        e.ScheduulerInfo = info;
            		}
            	</code>
            	<code lang="VB">
            	    Private Sub RadScheduler1_AppointmentsPopulating(sender As Object, e As AppointmentsPopulatingEventArgs)
            	    	Dim info As New MySchedulerInfo(e.SchedulerInfo)
            	    	' Copy existing data
            	    	
                        info.UserID = 42
                        e.ScheduulerInfo = info
                    End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.ReminderSnooze">
            <summary>
            Occurs when a reminder has been snoozed.
            </summary>
            <remarks>
            <para>
            	The <see cref="T:Telerik.Web.UI.ReminderSnoozeEventArgs">event arguments</see> contain:
            	<list type="bullet">
            	    <item>The snoozed <see cref="P:Telerik.Web.UI.ReminderSnoozeEventArgs.Reminder">reminder</see></item>
            	    <item>  The <see cref="P:Telerik.Web.UI.ReminderSnoozeEventArgs.Reminder">minutes</see> the reminder was snoozed for.
            	            Positive values indicate that the reminder will be snoozed for the next N minutes;
            	            Negative values indicate that the reminder is snoozed until -N minutes before the appointment start.</item>
            	    <item>The <see cref="P:Telerik.Web.UI.SchedulerEventArgs.Appointment">appointment</see> the reminder belongs to</item>
            	</list>
            </para>
            <para>
            	The operation can be cancelled by setting the
            	<see cref="P:System.ComponentModel.CancelEventArgs.Cancel">ReminderSnoozeEventArgs.Cancel</see>
            	property of <see cref="T:Telerik.Web.UI.ReminderSnoozeEventArgs">ReminderSnoozeEventArgs</see> to true.
            	If the operation is not cancelled RadScheduler will update the appointment.
            </para>
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_ReminderSnooze(object sender, ReminderSnoozeEventArgs e)
            		{
            			e.Cancel = true;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_ReminderSnooze(sender As Object, e As ReminderSnoozeEventArgs)
            			e.Cancel = true
            		End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadScheduler.ReminderDismiss">
            <summary>
            Occurs when a reminder has been dismissed.
            </summary>
            <remarks>
            <para>
            	The <see cref="T:Telerik.Web.UI.ReminderSnoozeEventArgs">event arguments</see> contain:
            	<list type="bullet">
            	    <item>The dismissed reminder</item>
            	    <item>The original <see cref="P:Telerik.Web.UI.SchedulerCancelEventArgs.Appointment">appointment</see> with non-modified reminders</item>
            	    <item>The modified <see cref="P:Telerik.Web.UI.ReminderDismissEventArgs.ModifiedAppointment">appointment</see> with updated reminders</item>
            	    <item>The modified <see cref="P:Telerik.Web.UI.ReminderDismissEventArgs.ModifiedAppointment">appointment</see> with updated reminders</item>
            	</list>
            </para>
            <para>
            	The operation can be cancelled by setting the
            	<see cref="P:System.ComponentModel.CancelEventArgs.Cancel">ReminderDismissEventArgs.Cancel</see>
            	property of <see cref="T:Telerik.Web.UI.ReminderDismissEventArgs">ReminderDismissEventArgs</see> to true.
            	If the operation is not cancelled RadScheduler will update the appointment.
            </para>
            </remarks>
            <example>
            	<code lang="CS">
            		void RadScheduler1_ReminderDismiss(object sender, ReminderDismissEventArgs e)
            		{
            			e.Cancel = true;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadScheduler1_ReminderDismiss(sender As Object, e As ReminderDismissEventArgs)
            			e.Cancel = true
            		End Sub
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentMoveStart">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is about to be moved.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientAppointmentMoveStartHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentMoveStart="onClientAppointmentMoveStartHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentMoveStart</strong> client-side event
                handler is called when an appointment is about to be moved.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with four properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>set_cancel()</strong>, set to true to cancel the move operation.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentMoving">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is being moved.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientAppointmentMovingHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var targetSlot = eventArgs.get_targetSlot();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentMoving="onClientAppointmentMovingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentMoving</strong> client-side event
                handler is called when an appointment is being moved.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with four properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_targetSlot()</strong>, the slot that the appointment currently occupies.</item>
            				<item><strong>set_cancel()</strong>, set to true to cancel the move operation.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentMoveEnd">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment has been moved.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientAppointmentMoveEndHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var newStartTime = eventArgs.get_newStartTime();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentMoveEnd="onClientAppointmentMoveEndHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>
            		If specified, the <strong>OnClientAppointmentMoveEnd</strong> client-side event
            		handler is called when an appointment has been moved.
            	</para>
                <para>
            		The event will also be fired when the move operation has been aborted by the
            		user. In this case the get_isAbortedByUser() property of the event arguments will
            		be set to "true".
            	</para>
                <para>
            		The event will also fire if the appointment is dropped in its original location,
            		but no postback will occur as the appointment is not altered.
            	</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with six properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_newStartTime()</strong>, the new start time of the appointment.</item>
            				<item><strong>get_editingRecurringSeries()</strong>, a boolean value indicating whether the user has selected to edit the whole series.</item>
            				<item><strong>get_targetSlot()</strong>, the target slot that the appointment has been moved to.</item>
            				<item><strong>get_isAbortedByUser()</strong>, indicates whether the move operation has been aborted as a result of user action.</item>
            				<item><strong>set_cancel()</strong>, set to true to cancel the move operation.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRecurrenceActionDialogShowing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the recurrence action confirmation dialog is about to be shown.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientRecurrenceActionDialogShowingHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var action = eventArgs.get_recurrenceAction();<br/>
            		<br/>
            		if (action == Telerik.Web.UI.RecurrenceAction.Edit)<br/>
            		{<br/>
            			alert("Overriding recurrence action dialog to 'Edit series' for appointment '" + appointment.get_subject() + "'");
            			eventArgs.set_cancel(true);<br/>
            			eventArgs.set_editSeries(true);<br/>
            		}<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRecurrenceActionDialogShowing="onClientRecurrenceActionDialogShowingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRecurrenceActionDialogShowing</strong> client-side event
                handler is called when the recurrence action confirmation dialog is about to be shown.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>set_cancel()</strong>, set to true to suppress the confirmation dialog.</item>
            				<item><strong>set_editSeries()</strong>, set to true or false to override the result from the dialog (only if it has been cancelled by calling eventArgs.set_cancel(true)).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRecurrenceActionDialogClosed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the recurrence action confirmation dialog has been closed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientRecurrenceActionDialogClosedHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var editSeries = eventArgs.get_editSeries();<br/>
            		<br/>
            		alert("The user has set editSeries to '" + editSeries + "' for appointment '" + appointment.get_subject() + "'");
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRecurrenceActionDialogClosed="onClientRecurrenceActionDialogClosedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRecurrenceActionDialogClosed</strong> client-side event
                handler is called when the recurrence action confirmation dialog has been closed.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_editSeries()</strong>, the selected option from the dialog.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientFormCreated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an edit/insert form has been created.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientFormCreatedHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var formElement = eventArgs.get_formElement();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientFormCreated="onClientFormCreatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientFormCreated</strong> client-side event
                handler is called when an edit/insert form has been created.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_formElement()</strong>, the DOM element of the form.</item>
            				<item><strong>get_mode()</strong>, enumerable of type Telerik.Web.UI.SchedulerFormMode.
            				See <see cref="T:Telerik.Web.UI.SchedulerFormMode">SchedulerFormMode</see> for the list of possible values.</item>
            				<item><strong>get_editingRecurringSeries()</strong>, a boolean indicating if the user
            				has chosen to edit the recurring series (true) or a single occurrence (false).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment has been right-clicked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientAppointmentContextMenuHandler(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		// ... <br/>
            		eventArgs.get_domEvent().preventDefault(); // Prevent displaying the browser menu<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentContextMenu="onClientAppointmentContextMenuHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentContextMenu</strong> client-side event
                handler is called when an appointment has been right-clicked.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_domEvent()</strong>, the original DOM event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientTimeSlotContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an empty time slot has been right-clicked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientTimeSlotContextMenuHandler(sender, eventArgs)<br/>
                {<br/>
            		var time = eventArgs.get_time();<br/>
            		// ... <br/>
            		eventArgs.get_domEvent().preventDefault(); // Prevent displaying the browser menu<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientTimeSlotContextMenu="onClientTimeSlotContextMenuHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentContextMenu</strong> client-side event
                handler is called when an empty time slot has been right-clicked.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with four properties:
            			<list type="bullet">
            				<item><strong>get_targetSlot()</strong>, the target slot.</item>
            				<item><strong>get_time()</strong>, the time that corresponds to the slot.</item>
            				<item><strong>get_isAllDay()</strong>, a boolean indicating if this is an all-day slot (the time should be discarded in this case).</item>
            				<item><strong>get_domEvent()</strong>, the original DOM event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentsPopulating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler is about to request appointments from the Web Service.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentsPopulatingHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Data loading");<br/>
            		eventArgs.get_schedulerInfo().CustomProperty = "My Data";
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentsPopulating="clientAppointmentsPopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentsPopulating</strong> client-side event
                handler is called when the scheduler is about to request appointments.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised before
            	the appointments are retrieved from the data service.
            	The event will be raised again each time new data is about to be retrieved from the web service.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentsPopulated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler has received appointments from the Web Service.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentsPopulatedHandler(sender)<br/>
                {<br/>
            		alert("Appointments populated");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentsPopulated="clientAppointmentsPopulatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentsPopulated</strong> client-side event
                handler is called when the scheduler has received appointments.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised after
            	the appointments are retrieved from the data service.
            	The event will be raised again each time new data has been retrieved from the web service.</para>
            	<para>One parameter is passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentDataBound">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is received from the Web Service and is about to be rendered.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentDataBoundHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Appointment loaded");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentDataBound="clientAppointmentDataBoundHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentDataBound</strong> client-side event
                handler is called when an appointment is received and is about to be rendered.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised after
            	the appointments are retrieved from the data service.
            	The event will be raised for each appointment that has been retrieved from the web service.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment;</item>
            				<item><strong>get_data()</strong>, the original data object retrieved from the web service.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentSerialized">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment has been serialized to a data object and is about to be sent to the Web Service.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentSerializedHandler(sender, eventArgs)<br/>
                {<br/>
            		eventArgs.get_data().myProperty = 1234;<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentSerialized="clientAppointmentSerializedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentSerialized</strong> client-side event
                handler is called when an appointment has been serialized to a data object and
                is about to be sent to the Web Service.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised before
            	the appointment is sent to the data service.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment;</item>
            				<item><strong>get_data()</strong>, the constructed data object that will be sent to the web service.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentCreated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is received from the Web Service and hase been rendered.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentCreatedHandler(sender, eventArgs)<br/>
                {<br/>
            		eventArgs.get_appointment().get_element().style.border = "1px solid red";<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentCreated="clientAppointmentCreatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentCreated</strong> client-side event
                handler is called when an appointment is received and has been rendered.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised after
            	the appointments are retrieved from the data service.
            	The event will be raised for each appointment that has been retrieved from the web service.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the appointment that has been rendered.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientResourcesPopulating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler is about to request resources from the Web Service.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientResourcesPopulatingHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Resources loading");<br/>
            		eventArgs.get_schedulerInfo().CustomProperty = "My Data";
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientResourcesPopulating="clientResourcesPopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientResourcesPopulating</strong> client-side event
                handler is called when the scheduler is about to request resources.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised before
            	the resources are retrieved from the data service.
            	The event will be raised only once, at the time of the initial load.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientResourcesPopulated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler has received resources from the Web Service.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientResourcesPopulatedHandler(sender)<br/>
                {<br/>
            		alert("Resources loaded");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientResourcesPopulated="clientResourcesPopulatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientResourcesPopulated</strong> client-side event
                handler is called when the scheduler has received resources.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised after
            	the resources have been retrieved from the data service.
            	The event will be raised only once, at the time of the initial load.</para>
            	<para>One parameter is passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientDataBound">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler has been populated with data.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientDataBoundHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Data loaded");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientDataBound="clientDataBoundHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientDataBound</strong> client-side event
                handler is called when the scheduler has been populated with data.</para>
            	<para>In the case of <b>server-side binding</b>, the event will be raised
            	immediately after the control is initialized.</para>
            	<para>When <b>client-side binding</b> is used, the event will be raised when
            	both the appointments and the resources	are retrieved from the data service.
            	The event will be raised again each time new data is retrieved from the web service.</para>
            	<para>One parameter is passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRequestSuccess">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a request to the Web Service has succeeded.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientRequestSuccessHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Operation code: " + eventArgs.get_result().Code);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRequestSuccess="clientRequestSuccessHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRequestSuccess</strong> client-side event
                handler is called when a request to the Web Service has succeeded.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_result()</strong>, the object received from the server as.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRequestFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a request to the Web Service has failed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientRequestFailedHandler(sender, eventArgs)<br/>
                {<br/>
            		alert("Request failed!");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRequestFailed="clientRequestFailedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRequestFailed</strong> client-side event
                handler is called when a request to the Web Service has failed.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_errorMessage()</strong>, the error message sent from the server.</item>
            				<item><strong>set_cancel()</strong>, set to true to suppress the default action (alert message).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentWebServiceInserting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is about to be stored via Web Service call.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentWebServiceInserting(sender, eventArgs)<br/>
                {<br/>
            		alert("Insert cancelled");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentWebServiceInserting="clientAppointmentWebServiceInserting"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentWebServiceInserting</strong> client-side event
                handler is called when an appointment is about to be stored via Web Service call.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the appointment that is about to be inserted.</item>
            				<item><strong>set_cancel()</strong>, set to true cancel the operation.</item>
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentWebServiceDeleting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is about to be deleted via Web Service call.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentWebServiceDeleting(sender, eventArgs)<br/>
                {<br/>
            		alert("Delete cancelled");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentWebServiceDeleting="clientAppointmentWebServiceDeleting"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentWebServiceDeleting</strong> client-side event
                handler is called when an appointment is about to be deleted via Web Service call.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the appointment that is about to be deleted.</item>
            				<item><strong>get_editingRecurringSeries()</strong>, indicates whether the recurring series are being deleted.</item>
            				<item><strong>set_cancel()</strong>, set to true cancel the operation.</item>
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentWebServiceUpdating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment is about to be updated via Web Service call.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientAppointmentWebServiceUpdating(sender, eventArgs)<br/>
                {<br/>
            		alert("Update cancelled");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentWebServiceUpdating="clientAppointmentWebServiceUpdating"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentWebServiceUpdating</strong> client-side event
                handler is called when an appointment is about to be updated via Web Service call.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the appointment that is about to be updated.</item>
            				<item><strong>set_cancel()</strong>, set to true cancel the operation.</item>
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRecurrenceExceptionCreating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a recurrence exception is about to be created via Web Service call.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientRecurrenceExceptionCreating(sender, eventArgs)<br/>
                {<br/>
            		alert("Operation cancelled");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRecurrenceExceptionCreating="clientRecurrenceExceptionCreating"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRecurrenceExceptionCreating</strong> client-side event
                handler is called when a recurrence exception is about to be created via Web Service call.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the appointment that represents the recurrence exception that is about to be stored.</item>
            				<item><strong>set_cancel()</strong>, set to true cancel the operation.</item>
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientRecurrenceExceptionsRemoving">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            recurrence exceptions are about to be removed via Web Service call.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientRecurrenceExceptionsRemoving(sender, eventArgs)<br/>
                {<br/>
            		alert("Operation cancelled");<br/>
            		eventArgs.set_cancel(true);
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientRecurrenceExceptionsRemoving="clientRecurrenceExceptionsRemoving"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientRecurrenceExceptionsRemoving</strong> client-side event
                handler is called when recurrence exceptions are about to be removed via Web Service call.</para>
            	<para>In the case of <b>server-side binding</b>, the event will not be raised.</para>
            	<para>When <b>client-side binding is used</b>, the event will be raised when the user
            	chooses to remove the recurrence exceptions of a given series through the advanced form.
            	</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the master appointment that represents the recurrence series.</item>
            				<item><strong>set_cancel()</strong>, set to true cancel the operation.</item>
            				<item><strong>get_schedulerInfo()</strong>, the schedulerInfo object that will be passed to the web service method.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientNavigationCommand">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the scheduler is about to execute a navigation command.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientNavigationCommandHandler(sender, eventArgs)<br/>
                {<br/>
            		if (eventArgs.get_command() == Telerik.Web.UI.SchedulerNavigationCommand.NavigateToNextPeriod)<br/>
            		alert("Navigating to next period");
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientNavigationCommand="clientNavigationCommandHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientNavigationCommand</strong> client-side event
                handler is called when the scheduler is about to execute a navigation command.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_command()</strong>, the navigation command that is being processed.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientNavigationComplete">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a navigation command has been completed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function clientNavigationCompleteHandler(sender, eventArgs)<br/>
                {<br/>
            		if (eventArgs.get_command() == Telerik.Web.UI.SchedulerNavigationCommand.SwitchToDayView)<br/>
            		alert("Displaying day view");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnNavigationComplete="clientNavigationCompleteHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnNavigationComplete</strong> client-side event
                handler is called when a navigation command has been completed.</para>
            	<para>The event will be raised only when <b>client-side binding is used</b>.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with one properties:
            			<list type="bullet">
            				<item><strong>get_command()</strong>, the navigation command that is being processed.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentContextMenuItemClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an apointment context menu item is clicked, before RadScheduler processes the click event.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function appointmentContextMenuItemClicking(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var clickedItem = eventArgs.get_item();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentContextMenuItemClicking="appointmentContextMenuItemClicking"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentContextMenuItemClicking</strong>
            	client-side event handler is called when an apointment context menu item is clicked,
            	before RadScheduler processes the click event.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_item()</strong>, the clicked menu item.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled. Cancelling it will prevent any further processing of the command.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientAppointmentContextMenuItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an apointment context menu item is clicked, after RadScheduler has processed the event.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function appointmentContextMenuItemClicked(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appointment();<br/>
            		var clickedItem = eventArgs.get_item();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientAppointmentContextMenuItemClicked="appointmentContextMenuItemClicked"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientAppointmentContextMenuItemClicking</strong>
            	client-side event handler is called when an apointment context menu item is clicked,
            	after RadScheduler has processed the event.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_item()</strong>, the clicked menu item.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientTimeSlotContextMenuItemClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a time slot context menu item is clicked, before RadScheduler processes the click event.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function appointmentTimeSlotMenuItemClicking(sender, eventArgs)<br/>
                {<br/>
            		var timeSlot = eventArgs.get_slot();<br/>
            		var clickedItem = eventArgs.get_item();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientTimeSlotContextMenuItemClicking="appointmentTimeSlotMenuItemClicking"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientTimeSlotContextMenuItemClicking</strong>
            	client-side event handler is called when a time slot context menu item is clicked,
            	before RadScheduler processes the click event.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_slot()</strong>, the instance of the time slot.</item>
            				<item><strong>get_item()</strong>, the clicked menu item.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled. Cancelling it will prevent any further processing of the command.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientTimeSlotContextMenuItemClicked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            a time slot context menu item is clicked, after RadScheduler has processed the event.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function appointmentTimeSlotMenuItemClicked(sender, eventArgs)<br/>
                {<br/>
            		var timeSlot = eventArgs.get_slot();<br/>
            		var clickedItem = eventArgs.get_item();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientTimeSlotContextMenuItemClicked="appointmentTimeSlotMenuItemClicked"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientTimeSlotContextMenuItemClicking</strong>
            	client-side event handler is called when a time slot context menu item is clicked,
            	after RadScheduler has processed the event.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with two properties:
            			<list type="bullet">
            				<item><strong>get_slot()</strong>, the instance of the time slot.</item>
            				<item><strong>get_item()</strong>, the clicked menu item.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientReminderTriggering">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment reminder is due and is about to be triggered.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function reminderTriggering(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appoitment();<br/>
            		var reminder = eventArgs.get_reminder();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientReminderTriggering="reminderTriggering"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientReminderTriggering</strong>
            	client-side event handler is called when an appointment reminder is about to be triggered,
            	before the pop-up dialog is shown.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_reminder()</strong>, the reminder.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled. Doing so effectively ignores the reminder.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientReminderSnoozing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment reminder is about to be snoozed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function reminderSnoozing(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appoitment();<br/>
            		var reminder = eventArgs.get_reminder();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientReminderSnoozing="reminderSnoozing"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientReminderSnoozing</strong>
            	client-side event handler is called when an appointment reminder has been snoozed by the user,
            	before the command is sent to the server.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_reminder()</strong>, the snoozed reminder.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScheduler.OnClientReminderDismissing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            an appointment reminder is about to be dismissed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function reminderDismissing(sender, eventArgs)<br/>
                {<br/>
            		var appointment = eventArgs.get_appoitment();<br/>
            		var reminder = eventArgs.get_reminder();<br/>
            		// ... <br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadScheduler ID="RadScheduler1"<br/>
                runat="server"<br/>
            		<strong>OnClientReminderDismissing="reminderDismissing"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadScheduler&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientReminderDismissing</strong>
            	client-side event handler is called when an appointment reminder has been dismissed by the user,
            	before the command is sent to the server.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the scheduler client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_appointment()</strong>, the instance of the appointment.</item>
            				<item><strong>get_reminder()</strong>, the reminder.</item>
            				<item><strong>set_cancel()</strong>, used to cancel the event.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.DateFormat">
            <summary>
            Gets or sets the date format string.
            </summary>
            <remarks>
            The default value of this property is inferred from the
            <strong>Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern</strong>
            property.
            </remarks>
            <value>The date format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.SharedCalendarID">
            <summary>
                Gets or sets the ID of the calendar that will be used for picking dates.
                This property allows you to use an existing RadCalendar instance for the
                RecurrenceEditor date picker.
            </summary>
            <remarks>
                The RecurrenceEditor will look for the RadCalendar instance in a way similar to how
                ASP.NET validators work. It will not go beyond the current naming container which
                means that you will not be able to configure a calendar that is inside a control in
                another naming container. You can still share a calendar, but you will have to pass
                a direct object reference via the <see cref="P:Telerik.Web.UI.RecurrenceEditor.SharedCalendar">SharedCalendar</see>
                property.
            </remarks>
            <value>
                The string ID of the RadCalendar control if set; otherwise String.Empty.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.SharedCalendar">
            <summary>
                Gets or sets the reference to the calendar that will be used for picking dates.
                This property allows you to use an existing RadCalendar instance for the
                RecurrenceEditor date picker.
            </summary>
            <value>
                The instance of the RadCalendar control if set; otherwise null.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.ZIndex">
            <summary>
            Gets or sets a value indicating the base z-index of the recurrence editor.
            </summary>
            <value>
            An integer value that specifies the desired base z-index.
            The default value is <strong>2500</strong>.
            </value>
            <remarks>
            The z-index value is used to position any detachable elements (like RadCalendar pop-ups)
            over other elements in the form.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.FirstDayOfWeek">
            <summary>
                Gets or sets the first day of the week.
            </summary>
            <remarks>
            	This property is used when building Monthly and Yearly recurrence rules.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.StartDate">
            <summary>
            The start date of the first occurrence.
            </summary>
            <remarks>
            The StartDate and <see cref="P:Telerik.Web.UI.RecurrenceEditor.EndDate">EndDate</see> must be set
            in order to obtain the recurrence rule.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.EndDate">
            <summary>
            The end date of the first occurrence.
            </summary>
            <remarks>
            The <see cref="P:Telerik.Web.UI.RecurrenceEditor.StartDate">StartDate</see> and EndDate must be set
            in order to obtain the recurrence rule.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.RecurrenceRule">
            <summary>
            The currently selected recurrence rule.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceEditor.RecurrenceRuleText">
            <summary>
            The currently selected recurrence rule (as text).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ReminderDialog.ZIndex">
            <summary>
            Gets or sets a value indicating the base z-index of the reminder dialog.
            </summary>
            <value>
            An integer value that specifies the desired base z-index.
            The default value is <strong>2500</strong>.
            </value>
            <remarks>
            The z-index value is used to position any detachable elements
            over other elements in the form.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Initialize">
            <summary>
            If the provider is created with code, put the initialization logic of the provider in this method.
            Optionally you can set the IsInitialized property to true after the initialization finishes.
            The <see cref="T:Telerik.Web.UI.ScriptCacheProviderManager"/> calls this method when the Provider property is set 
            if the IsInitialized property of the provider returns false.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Store(System.String,System.String)">
            <summary>
            Stores the combined web resources output for a given unique URL in cache.
            </summary>
            <param name="resourceUid">The unqiue URL of the requested combination of web resources.</param>
            <param name="output">The combined output of the requested web resources.</param>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Associate(System.String,System.String)">
            <summary>
            Associates the given unique key with a URL of a combination of web resources.
            One key can have many URLs associated with it.
            </summary>
            <param name="pageKey">The unique key with which the URL will be associated. The key is usually a unique identifier of a web page.</param>
            <param name="resourceUid">The URL of the requested combination of web resources.</param>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.AreAssociated(System.String,System.String)">
            <summary>
            Checks whether the given unique key and URL are associated in cache.
            </summary>
            <param name="pageKey">The unique key with which the URL will be associated. The key is usually a unique identifier of a web page.</param>
            <param name="resourceUid">The URL of the requested combination of web resources.</param>
            <returns>True if the key and URL are associated in cache; false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Get(System.String)">
            <summary>
            Gets the combined web resources output from cache for a given URL.
            The method reads the content of the entry in the cache. If you want to verify whether an entry exists, use the Exists method.
            </summary>
            <param name="resourceUid">The URL of the requested combination of web resources.</param>
            <returns>The combined output of the requested web resources from the cache. 
            Returns null if there is no entry for the requested URL in the cache.</returns>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Exists(System.String)">
            <summary>
            Checks whether there is an entry for the requested URL in the cache.
            </summary>
            <param name="resourceUid">The URL of the requested combination of web resources.</param>
            <returns>True if there is an entry in the cache; false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Invalidate(System.String)">
            <summary>
            Deletes all URL entries for the given key from cache.
            </summary>
            <param name="pageKey">The unique key with which URLs are associated.
            (The key is usually a unique identifier of a web page.)</param>
        </member>
        <member name="M:Telerik.Web.UI.WebResourceCacheProvider.Invalidate">
            <summary>
            Clears the cache.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadScriptReference">
            <summary>
            This type of script reference allows the user to exclude a script reference from 
            combining by RadScriptManager (when RadScriptManager.EnableScriptCombine is set to true).
            The property Combine (true by default) controls this behavior.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptReference.Combine">
            <summary>
            Set this property to tell RadScriptManager whether to combine the script reference or serve it as a separate resource.
            True by default.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptReference.OutputPosition">
            <summary>
            Set this property to one of the available values -  
                ScriptReferenceOutputPosition.Beggining, 
                ScriptReferenceOutputPosition.Same,
                ScriptReferenceOutputPosition.End - 
            to move the current script to the beginning of the whole script block, remain on its place in the order of registration or 
            move at the end of the script block. ScriptReferenceOutputPosition.Same by default.
            </summary>
        </member>
        <member name="T:Telerik.Web.TelerikToolboxCategoryAttribute">
            <summary>
            This attribute should be used on classes which will be present in the Visual Studio toolbox - 
            i.e. the ones that should also have a <see cref="T:System.Drawing.ToolboxBitmapAttribute"/> attribute.
            </summary>
        </member>
        <member name="M:Telerik.Web.TelerikToolboxCategoryAttribute.#ctor(System.String)">
            <summary>
            Creates a new instance of the TelerikToolboxCategoryAttribute attribute with the specified title.
            </summary>
            <param name="_categoryTitle">The title of the category where the control will be placed</param>
        </member>
        <member name="P:Telerik.Web.TelerikToolboxCategoryAttribute.CategoryTitle">
            <summary>
            The title of the category where the control will be placed
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.StatusBarMode">
            <summary>
            Specifies the possible values for the <strong>StatusBarMode</strong> property of the RadImageEditor control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.StatusBarMode.Bottom">
             <summary>
            The StatusBar is rendered below the editable area of the ImageEditor
             </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.StatusBarMode.Top">
            <summary>
            The StatusBar is rendered above the editable area of the ImageEditor and below the ToolBar.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ImageEditor.StatusBarMode.Hidden">
            <summary>
            The StatusBar is not rendered at all.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.ImageEditorCacheHandler.WriteFile(System.Byte[],System.String,System.String,System.Web.HttpResponse)">
            <summary>
            Sends a byte array to the client
            </summary>
            <param name="content">binary file content</param>
            <param name="fileName">the filename to be sent to the client</param>
            <param name="contentType">the file content type</param>
            <param name="response">The Response object to which the image is sent.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.ICacheImageProvider.ClearImages(System.String)">
            <summary>
            Clears the images in the provider up to the image key passed. The image that corresponds to the key is not cleared.
            </summary>
            <param name="imageKey">The key up to which the images are cleared.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.CacheImageProvider.SaveImage(Telerik.Web.UI.ImageEditor.EditableImage,System.String,System.String,System.Boolean)">
            <summary>
            Saves the current image on the FileSystem and returns a string.Empty if the saving was successful.
            </summary>
            <param name="editableImage">The EditableImage to save.</param>
            <param name="imageName">The name of the image.</param>
            <param name="physicalPath">The full physical path (including the file name) where the image will be saved.</param>
            <param name="overwrite">Should we overwrite the file if it exists.</param>
            <returns>String.Empty if the operation was successful, else a string indicating the problem.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.CacheImageProvider.SaveImage(Telerik.Web.UI.ImageEditor.EditableImage,System.String,System.Boolean)">
            <summary>
            Saves the current image on the FileSystem and returns a string.Empty if the saving was successful.
            </summary>
            <param name="editableImage">The EditableImage to save.</param>
            <param name="physicalPath">The full physical path (including the file name) where the image will be saved.</param>
            <param name="overwrite">Should we overwrite the file if it exists.</param>
            <returns>String.Empty if the operation was successful, else a string indicating the problem.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.CacheImageProvider.GetFile(System.String)">
            <summary>
            Gets a file from the FileSystem.
            </summary>
            <param name="physicalPath">The physicalPath of the file.</param>
            <returns>The file stream.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.CacheImageProvider.DeleteFile(System.String)">
            <summary>
            Deletes a file from the FileSystem and returns a string.Empty if the action was successful.
            </summary>
            <param name="physicalPath">The physical path to the file.</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.DialogsStrings.IsInRadEditor">
            <summary>
            Gets or sets a value that indicates whether the current instance of the ImageEditor is used in some of the RadEditor's dialogs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.MainStrings.IsInRadEditor">
            <summary>
            Gets or sets a value that indicates whether the current instance of the ImageEditor is used in some of the RadEditor's dialogs.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.Serialization.ImageOperationCollection.Sort">
            <summary>
            Sorts the current collection of IImageOperation(s) on their Index property.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolStrip">
            <summary>
            Represents a single ImageEditor ToolStrip.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolBase">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolBase.IsSeparator">
            <summary>
            Gets or sets a bool value that indicates whether the tool is a separator.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.#ctor">
            <summary>
            Creates an ImageEditor ToolStrip.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.#ctor(System.String)">
            <summary>
            Creates an ImageEditor ToolStrip with the specified command name.
            </summary>
            <param name="commandName">The CommandName of the ToolStrip.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.#ctor(System.String,System.String)">
            <summary>
            Creates an ImageEditor ToolStrip with the specified command name.
            </summary>
            <param name="commandName">The CommandName of the ToolStrip.</param>
            <param name="shortCut">The ShortCut of the ToolStrip.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolStrip.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.Tools">
            <summary>
            Gets the collection of ImageEditorTool objects, inside the tool strip.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.IsSeparator">
            <summary>
            The ImageEditorTool should not be used as a tool separator.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.CommandName">
            <summary>
            Gets or sets the name of the command fired when the tool is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.Text">
            <summary>
            Gets or sets the text displayed in the tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.ToolTip">
            <summary>
            Gets or sets the ToolTip of the ImageEditor tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.CssClass">
            <summary>
            Gets or sets the CSS class applied to the ImageEditor tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.ImageUrl">
            <summary>
            Gets or sets the location of an image (icon) to display in the ImageEditor tool
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.Enabled">
            <summary>
            Gets or sets a value indicating whether this ImageEditor tool is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolStrip.ShortCut">
            <summary>
            Gets or sets the keyboard shortcut which will invoke the associated RadImageEditor command.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditor.EditableImage">
            <summary>
            Represents an Image that can be edited.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.#ctor(System.IO.Stream)">
            <summary>
            Creates an instance of the EditableImage class from a given Stream.
            </summary>
            <param name="stream">The Stream from which the editable image will be created.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.#ctor(System.String)">
            <summary>
            Creates an instance of the EditableImage class from a specified location.
            </summary>
            <param name="imagePath">A physical path to the image.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.#ctor(System.Drawing.Image)">
            <summary>
            Creates an instance of the EditableImage class from a given Image object.
            </summary>
            <param name="image">The image object from which EditableImage will be created.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.#ctor(System.Drawing.Image,Telerik.Web.UI.ImageEditor.IGraphicsCore)">
            <summary>
            Creates an instance of the EditableImage class from a given Image object, and the Graphics core used for image manipulation.
            </summary>
            <param name="image">The image object from which EditableImage will be created.</param>
            <param name="core">The IGraphicsCore object to use for image manipulation.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.ChangeOpacity(System.Double)">
            <summary>
            Changes the transparency of the current image.
            </summary>
            <param name="opacity">A double value between 0.00 - 1.00, representing the opacity. Passing 1 means no opacity.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Resize(System.Drawing.Size)">
            <summary>
            Resizes the image to the size specified.
            </summary>
            <param name="size">The new dimensions (size) of the image.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Resize(System.Int32,System.Int32)">
            <summary>
            Resizes the image to the width and height specified.
            </summary>
            <param name="width">The new width to apply.</param>
            <param name="height">The new height to apply.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Flip(Telerik.Web.UI.ImageEditor.FlipDirection)">
            <summary>
            Flips the image in the specified direction.
            </summary>
            <param name="direction">The flipping direction. (Possible values: Vertical, Horizontal and Both)</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Rotate(Telerik.Web.UI.ImageEditor.Rotation)">
            <summary>
            Rotates the image clockwise, in the specified rotation direction.
            </summary>
            <param name="rotate">The rotation direction.(Possible values of clockwise rotation: Rotate90, Rotate180 and Rotate270).</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Crop(System.Drawing.Rectangle)">
            <summary>
            Crop the image into the given rectangle.
            </summary>
            <param name="rectange">The rectangle to crop the image into.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.AddText(System.Drawing.Point,Telerik.Web.UI.ImageEditor.ImageText)">
            <summary>
            Adds text to the image.
            </summary>
            <param name="position">The position of the text.</param>
            <param name="text">The Image text to add.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.InsertImage(System.Drawing.Point,System.Drawing.Image)">
            <summary>
            Inserts additional image into the editable image.
            </summary>
            <param name="position">The position of the inserted image.</param>
            <param name="imgToInsert">The image that will be inserted.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.ApplyImageOperations(System.Collections.Generic.IEnumerable{Telerik.Web.UI.ImageEditor.IImageOperation})">
            <summary>
            Applies the IImageOperation(s) to the current image in the order they appear in the operations collection.
            </summary>
            <param name="operations">Collection of IImageOperation(s) to apply.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.FixGifColors">
            <summary>
            Fixes a problem with the Gif file format support in the .NET framework.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Dispose">
            <summary>
            Disposes the EditableImage object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.GetFile(System.String)">
            <summary>
            Gets a file from the FileSystem.
            </summary>
            <param name="physicalPath">The physicalPath of the file.</param>
            <returns>The file stream.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditor.EditableImage.Clone">
            <summary>
            Creates an identical object of the editable image.
            </summary>
            <returns>The cloned editable image.</returns>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.Width">
            <summary>
            Gets the width of the image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.Height">
            <summary>
            Gets the height of the image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.Size">
            <summary>
            Gets the size of the image. (Pair of width and height of the image.)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.Image">
            <summary>
            Gets the actual Bitmap that is being edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.Format">
            <summary>
            Gets the format of the image being edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.RawFormat">
            <summary>
            Gets the ImageFormat of the image being edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditor.EditableImage.IsDisposed">
            <summary>
            Gets a bool value that indicates whether the dispose method of the EditableImage has been called.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolSeparator">
            <summary>
            A special ImageEditorTool object, which is rendered as a separator by the default.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolSeparator.#ctor">
            <summary>
            Creates a tool separator.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolSeparator.IsSeparator">
            <summary>
            The ImageEditorSeparator is a separator.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolsFileLoader">
            <summary>
            Parses the ToolsFileContent property of RadImageEditor and initializes the corresponding
            collections.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolsFileLoader.LoadTools(Telerik.Web.UI.ImageEditorToolGroupCollection)">
            <summary>
            Initializes the Tools collection from the ToolsFileContent property of RadImageEditor.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadNotification">
            <summary>
            Telerik Notification control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ContentTemplate">
            <summary>
            Gets or sets the System.Web.UI.ITemplate that contains the controls which will be 
            placed in the control content area.
            </summary>
            <remarks>
            You cannot set this property twice, or when you added controls to the ContentContainer. If you set
            ContentTemplate, Text and ContentIcon properties will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.NotificationMenu">
            <summary>
            Gets the context title menu
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ContentContainer">
            <summary>
            Gets the control, where the ContentTemplate will be instantiated in.
            </summary>
            <remarks>
            You can use this property to programmatically add controls to the content area. If you add controls
            to the ContentContainer the Text and ContentIcon properties will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.WebMethodName">
            <summary>
             Gets or sets the web method name in the web service used to populate content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.WebMethodPath">
            <summary>
            Gets or sets the path to the web service used to populate content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.WcfRequestMethod">
            <summary>
            Gets or sets the request method for WCF Service used to populate content GET, POST, PUT, DELETE
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.WcfServicePath">
            <summary>
            Gets or sets a string value that indicates the virtual path of the WCF Service used to populate content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.WcfServiceMethod">
            <summary>
            Gets or sets a string value that indicates the WCF Service method used to populate content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.LoadContentOn">
            <summary>
            Gets or sets when the content should be loaded
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ShowInterval">
            <summary>
            Gets or sets when the interval after which the notification will automatically show
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.UpdateInterval">
            <summary>
            Gets or sets when the interval after which the notification will automatically update the content"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.AutoCloseDelay">
            <summary>
            Get/Set the delay after which the notification will hide if not explicitly closed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.VisibleTitlebar">
            <summary>Gets or sets a value indicating whether the notification has a titlebar visible.</summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.TitleIcon">
            <summary>Gets or sets the title icon</summary>
            <value>The default value is <strong>info</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ContentIcon">
            <summary>Gets or sets the content icon</summary>
            <value>The default value is <strong>info</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ShowSound">
            <summary>Gets or sets the sound to be played on show</summary>
            <value>The default value is <strong>none</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ShowCloseButton">
            <summary>Gets or sets whether the close [X] button should be visible</summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.CloseButtonToolTip">
            <summary>Gets or sets the content of the close button tooltip</summary>
            <value>The default value is <strong>Close</strong></value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ShowTitleMenu">
            <summary>Gets or sets whether the title menu should be visible</summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.TitleMenuToolTip">
            <summary>Gets or sets  the content of the the tooltip for the title menu</summary>
            <value>The default value is <strong>Menu</strong></value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Position">
            <summary>
            Get/Set the top/left position of the notification relative to the browser
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Animation">
            <summary>
            Get/Set the animation effect of the notification
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.AnimationDuration">
            <summary>
            Sets/gets the duration of the animation in milliseconds.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OffsetX">
            <summary>
            Get/Set the notification's horizontal offset. Works in cooperation with the Position property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OffsetY">
            <summary>
             Get/Set the notification's vertical offset. Works in cooperation with the Position property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.VisibleOnPageLoad">
            <summary>
            Gets or sets a value indicating whether the notification will open automatically when its parent [aspx] page is loaded on the client.
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Overlay">
            <summary>Gets or sets a value indicating whether the notification will create an overlay element.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Pinned">
            <summary>
            Gets or sets a value indicating whether the notification is pinned (when true it does not scroll with the page).
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Width">
            <summary>
            Get/Set the Width of the notification
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Height">
            <summary>
            Get/Set the Height of the notification
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Text">
            <summary>
            Get/Set the Text that will appear in the notification (if there is no ContentTemplate used).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Title">
            <summary>
            Get/Set the Text that will appear in the notification (if there is no ContentTemplate used).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Value">
            <summary>
            Get/Set the an optional Value to pass.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.KeepOnMouseOver">
            <summary>
            Gets or sets a value indicating whether the notification should stay on the screen when hovered (autoclose is delayed until the mouse goes outside the popup).
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Enabled">
            <summary>
            Gets or sets a value indicating whether the notification is enabled
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.EnableRoundedCorners">
            <summary>
            Gets or sets a value indicating whether the notification should have rounded corners
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.EnableShadow">
            <summary>
            Gets or sets a value indicating whether the notification should have shadow
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.ContentScrolling">
            <summary>
            Get/Set overflow of the notification's content area
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.Opacity">
            <summary>Gets or sets a value indicating what should be the opacity of the notification. The value must be between 0 (transparent) and 100 (opaque).</summary>
            <value>The default value is <strong>100</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientShowing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadNotification</strong> shows.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShowing</strong>
            		<font color="black">client-side event handler is called before the <strong>RadNotification</strong>
                is shown.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadNotification object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShowing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientShowing(sender, args)<br/>
                         {<br/>
                         var notification = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShowing="OnClientShowing"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientShown">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            the just after the RadNotification is shown.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShown</strong>
            		<font color="black">client-side event handler is called after the notification is shown
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadNotification object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShown</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientShown(sender, args)<br/>
                         {<br/>
                         var notification = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShown="OnClientShown"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientHiding">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadNotification</strong> is to be hidden.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientHiding</strong> client-side event handler is
                called before the notification is hidden on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the notification client object;</item>
            		<item><strong>eventArgs</strong></item>
            	</list>
            	<para>The <strong>OnClientHiding</strong> event can be cancelled. To do so,
                set the cancel property to <strong>false</strong> from the event handler (e.g.
                eventArgs.set_cancel(true);).</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientHiding</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientShowingHandler(sender, eventArgs)<br/>
                         {<br/>
                             var shouldHide = confirm("Do you want to hide the notification?")
             			     eventArgs.set_cancel(!shouldHide);<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientHiding="onClientHidingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientHidden">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadNotification</strong> is hidden.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientHidden</strong> client-side event handler is
                called after the notification is hidden on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the notification client object;</item>
            		<item><strong>eventArgs</strong></item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientHidden</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientHiddenHandler(sender, eventArgs)<br/>
                         {<br/>
             			     var notification = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientHidden="onClientHiddenHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientUpdating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the content of <strong>RadNotification</strong>  is to be updated.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientUpdating</strong> client-side event handler is
                called before the content of the notification is updated. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the notification client object;</item>
            		<item><strong>eventArgs</strong></item>
            	</list>
            	<para>The <strong>OnClientUpdating</strong> event can be cancelled. To do so,
                set the cancel property to <strong>false</strong> from the event handler (e.g.
                eventArgs.set_cancel(true);).</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientUpdating</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientUpdatingHandler(sender, eventArgs)<br/>
                         {<br/>
                             var shouldUpdate = confirm("Do you want to update the content of the notification?")
             			     eventArgs.set_cancel(!shouldUpdate);<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientUpdating="onClientUpdatingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
            
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientUpdated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the content of <strong>RadNotification</strong> is updated.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientUpdated</strong> client-side event handler is
                called after the content of the notification is updated. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the notification client object;</item>
            		<item><strong>eventArgs</strong></item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientUpdated</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientUpdatedHandler(sender, eventArgs)<br/>
                         {<br/>
             			     var notification = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadNotification ID="RadNotification1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientUpdated="onClientUpdatedHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadNotification&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadNotification.OnClientUpdateError">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the  call to the WebService or the callback is interrupted by an error.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolGroupCollection">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorTool">
            <summary>
            Represents a single ImageEditor tool.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorTool.#ctor">
            <summary>
            Creates an ImageEditor tool.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorTool.#ctor(System.String)">
            <summary>
            Creates an ImageEditor tool with the specified command name.
            </summary>
            <param name="commandName">The CommandName of the tool.</param>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorTool.#ctor(System.String,System.String)">
            <summary>
            Creates an ImageEditor tool with the specified command name.
            </summary>
            <param name="commandName">The CommandName of the tool.</param>
            <param name="shortCut">The ShortCut of the tool.</param>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.IsSeparator">
            <summary>
            The ImageEditorTool should not be used as a tool separator.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.CommandName">
            <summary>
            Gets or sets the name of the command fired when the tool is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.Text">
            <summary>
            Gets or sets the text displayed in the tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.ToolTip">
            <summary>
            Gets or sets the ToolTip of the ImageEditor tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.CssClass">
            <summary>
            Gets or sets the CSS class applied to the ImageEditor tool.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.ImageUrl">
            <summary>
            Gets or sets the location of an image (icon) to display in the ImageEditor tool
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.Enabled">
            <summary>
            Gets or sets a value indicating whether this ImageEditor tool is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.IsToggleButton">
            <summary>
            Gets or sets a value indicating whether the ImageEditor tool can be toggled or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorTool.ShortCut">
            <summary>
            Gets or sets the keyboard shortcut which will invoke the associated RadImageEditor command.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolBaseCollection">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolCollection">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ImageEditorToolGroup">
            <summary>
            Represents logical group of ImageEditorTool objects.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.GetAllTools">
            <summary>
            Gets all tools inside the group.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.FindTool(System.String)">
            <summary>
            Finds the tool with the given name.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.Contains(System.String)">
            <summary>
            Determines whether the group a tool with the specified name.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.ImageEditorToolGroup.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.ImageEditorToolGroup.Tools">
            <summary>
            Gets the children of the ImageEditorToolGroup.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.FileExplorer.FileExplorerShortcut">
            <summary>
            Represents an object used to manage the keyboard navigation of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusFileExplorer">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusTreeView">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the TreeView of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusToolBar">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the ToolBar of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusGrid">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the Grid of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusAddressBar">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the Address of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.PopupWindowClose">
            <summary>
            Gets or sets the keyboard shortcut used to close the RadWindow that is opened to view/upload/delete/create a file in the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.FocusGridPagingSlider">
            <summary>
            Gets or sets the keyboard shortcut used to bring the focus to the Slider used for paging in the Grid of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.ContextMenu">
            <summary>
            Gets or sets the keyboard shortcut used to open the context menu.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.Back">
            <summary>
            Gets or sets the keyboard shortcut used to navigate one view Back (if possible) of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.Forward">
            <summary>
            Gets or sets the keyboard shortcut used to navigate one view Forward (if possible) of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.Open">
            <summary>
            Gets or sets the keyboard shortcut used to open the selected file or folder.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.Refresh">
            <summary>
            Gets or sets the keyboard shortcut used to refresh the content of the FileExplorer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.NewFolder">
            <summary>
            Gets or sets the keyboard shortcut used to create new folder in the FileExplorer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.Delete">
            <summary>
            Gets or sets the keyboard shortcut used to delete the currently selected file or folder in the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.FileExplorer.FileExplorerShortcut.UploadFile">
            <summary>
            Gets or sets the keyboard shortcut used to upload a new file to the FileExplorer control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadNotificationContextMenu">
            <summary>
            	A context menu control used with the <see cref="T:Telerik.Web.UI.RadNotification"/> control.
            	The menu could have title icon as target if ShowTitleMenu is set to true. A custom target could also be set.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadContextMenu">
            <summary>A navigation control used to create context menus.</summary>
            <remarks>
            	<para>
                    The <b>RadContextMenu</b> control is used to display context-aware options for various targets. Those targets
            		are specified through the <see cref="P:Telerik.Web.UI.RadContextMenu.Targets"/> property. RadContextMenu supports the following targets:
                </para>
            	<list type="bullet">
            		<item>
            			<see cref="T:Telerik.Web.UI.ContextMenuControlTarget"/> - Used to associate a context menu with an ASP.NET Server control. 
            			Accepts the control ID as an argument.
            		</item>
            		<item>
            			<see cref="T:Telerik.Web.UI.ContextMenuElementTarget"/> - Used to associate a context menu with an HTML element. Accepts
            			the HTML element id as an argument.
            		</item>
            		<item>
            			<see cref="T:Telerik.Web.UI.ContextMenuDocumentTarget"/> - Used to specify document-wide context menu.
            		</item>
            		<item>
            			<see cref="T:Telerik.Web.UI.ContextMenuTagNameTarget"/> - Used to associate a context menu with all elements with the specified
            			tag name (e.g. IMG, INPUT).
            		</item>
            	</list>
            </remarks>	
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.DescribeTargets(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.ResolveControlTargetIds">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.LoadTargetsViewState(System.Object[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.SaveTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadContextMenu.TrackTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.Targets">
            <summary>
            Gets the collection containing the targets to which right-click
                <strong>RadContextMenu</strong> will attach.
            </summary>
            <value>A <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>
                containing the targets to which RadContextMenu will attach.</value>
            <remarks>
            	<para>RadContextMenu can attach to four target types: ASP.NET control, element on the page,
            		document, set of client-side elements, specified by tagName.</para>
            </remarks>
            <example>
                This example demonstrates how to specify that the RadContextMenu will be displayed
            		when a specific textbox and all images on the page clicked.
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
            			&lt;img src="http://demos.telerik.com/aspnet-ajax/Common/Img/qsfRentCarDemoThumb.gif" /&gt;<br/>
            			&lt;img src="http://demos.telerik.com/aspnet-ajax/Common/Img/qsfSalesDashboardDemoThumb.gif" /&gt;<br/>
                        &lt;asp:TextBox ID="TextBox1" runat="server"/gt;<br/>
                        &lt;Telerik:RadContextMenu ID="RadContextMenu1"<br/>
                          runat= "server"&gt;<br/>
                            &lt;Targets&gt;<br/>
                                &lt;Telerik:RadContextMenuControlTarget ControlID="TextBox1"/&gt;<br/>
                                &lt;Telerik:RadContextMenuTagNameTarget TagName="img"/&gt;<br/>
                            &lt;/Targets&gt;<br/>
                        &lt;/Telerik:RadContextMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.OnClientShowing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadContextMenu</strong> is to be displayed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShowing</strong> client-side event handler is
                called before the context menu is shown on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties,
                          <strong>get_cancel()/set_cancel(cancel)</strong> and
            			  <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>The <strong>OnClientShowing</strong> event can be cancelled. To do so,
                set the cancel property to <strong>false</strong> from the event handler (e.g.
                eventArgs.set_cancel(true);).</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShowing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         var shouldDisplayContextMenu = confirm("Do you want to enable context menus on this page?");
                         function onClientShowingHandler(sender, eventArgs)<br/>
                         {<br/>
             			     eventArgs.set_cancel(!shouldDisplayContextMenu);<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadContextMenu ID="RadContextMenu1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShowing="onClientShowingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadContextMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.OnClientShown">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadContextMenu</strong> is displayed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShown</strong> client-side event handler is
                called after the context menu is shown on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>get_domEvent</strong>
            			(a reference to the browser event).</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShown</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;input type="text" id="txtContextMenuState" value="hidden" /&gt;
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientShownHandler(sender, eventArgs)<br/>
                         {<br/>
             			     document.getElementById("txtContextMenuState").value = "shown";<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadContextMenu ID="RadContextMenu1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShown="onClientShownHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadContextMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.OnClientHiding">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadContextMenu</strong> is to be hidden.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientHiding</strong> client-side event handler is
                called before the context menu is hidden on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with two properties,
                          <strong>get_cancel()/set_cancel(cancel)</strong> and
            			  <strong>get_domEvent</strong> (a reference to the browser event).</item>
            	</list>
            	<para>The <strong>OnClientHiding</strong> event can be cancelled. To do so,
                set the cancel property to <strong>false</strong> from the event handler (e.g.
                eventArgs.set_cancel(true);).</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientHiding</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientShowingHandler(sender, eventArgs)<br/>
                         {<br/>
                             var shouldHide = confirm("Do you want to hide the context menu?")
             			     eventArgs.set_cancel(!shouldHide);<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadContextMenu ID="RadContextMenu1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientHiding="onClientHidingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadContextMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.OnClientHidden">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadContextMenu</strong> is hidden.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientHidden</strong> client-side event handler is
                called after the context menu is hidden on the client. Two parameters are passed to the
                handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property, <strong>get_domEvent</strong>
            			(a reference to the browser event).</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientHidden</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;input type="text" id="txtContextMenuState" /&gt;
                        &lt;script type="text/javascript"&gt;<br/>
                         function onClientHiddenHandler(sender, eventArgs)<br/>
                         {<br/>
             			     document.getElementById("txtContextMenuState").value = "hidden";<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;Telerik:RadContextMenu ID="RadContextMenu1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientHidden="onClientHiddenHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/Telerik:RadContextMenu&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.Flow">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.RadContextMenu.EnableSelection">
            <summary>
            	Gets or sets a value indicating if the currently selected item will be tracked and highlighted.		
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RibbonBarStyles">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.SchedulerExportSettings">
            <summary>
            Container of misc. grouping settings of RadScheduler control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerExportSettings.FileName">
            <summary>
            A string specifying the name (without the extension) of the file that will be
            created. The file extension is automatically added based on the method that is
            used.
            </summary>       
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerExportSettings.OpenInNewWindow">
            <summary>Opens the exported Scheduler in a new instead of the same page.</summary>      
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.SchedulerPaperSize">
            <summary>
            Represents the paper size used when exporting to PDF.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.SchedulerPdfSettings">
            <summary>
            Container of misc. grouping settings of RadScheduler control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerPdfSettings.PaperSize">
            <summary>
            Gets or sets the physical paper size that RadScheduler will use when exporting to PDF.
            </summary>
            <remarks>
            It will be overriden by setting PageWidth and PageHeight explicitly.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerPdfSettings.PageWidth">
            <summary>
            Gets or sets the page width that RadScheduler will use when exporting to PDF.
            </summary>
            <remarks>
            This setting will override any predefined value that comes from the PaperSize property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerPdfSettings.PageHeight">
            <summary>
            Gets or sets the page height that RadScheduler will use when exporting to PDF.
            </summary>
            <remarks>
            This setting will override any predefined value that comes from the PaperSize property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.SchedulerPdfSettings.FontType">
            <summary>
            	<para class="">This property describes the different types of font embedding: Link,
                Embed and Subset.</para>
            </summary>
            <remarks>
                Possible values: 
                <list type="bullet">
            		<item>
            			<div class="">
            				<strong>Link</strong><br/>
                            The font program is referenced by name in the rendered PDF. Anyone who
                            views a rendered PDF with a linked font program must have that font
                            installed on their computer otherwise it will not display correctly.
                        </div>
            		</item>
            		<item>
            			<div class="">
            				<strong>Embed</strong><br/>
                            The entire font program is embedded in the rendered PDF. Embedding the
                            entire font program guarantees the PDF will display as intended by the
                            author on all computers, however this method does possess several
                            disadvantages:
                        </div>
            			<ol>
            				<li>
            					<div class="">
                                    Font programs can be extremely large and will significantly
                                    increase the size of the rendered PDF. For example, the MS
                                    Gothic TrueType collection is 8MB!
                                </div>
            				</li>
            				<li>
            					<div class="">
                                    Certain font programs cannot be embedded due to license
                                    restrictions. If you attempt to embed a font program that
                                    disallows embedding, RadScheduler will substitute the font with a
                                    base 14 font and generate a warning message.
                                </div>
            				</li>
            			</ol>
            		</item>
            		<item>
            			<div class="">
            				<strong>Subset (default value)<br/></strong>Subsetting a font will
                            generate a new font that is embedded in the rendered PDF that contains
                            only the chars referenced by RadScheduler. For example, if a particular
                            RadScheduler utilised the Verdana font referencing only the character 'A', a
                            subsetted font would be generated at run-time containing only the
                            information necessary to render the character 'A'.<br/>
            				<br/>
                            Subsetting provides the benefits of embedding and significantly reduces
                            the size of the font program. However, small processing overhead is
                            incurred to generated the subsetted font.
                        </div>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.IRadSiteMapNodeContainer">
            <summary>
                Defines properties that node containers (<see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see>,
                <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see>) should implement.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadSiteMapNodeContainer.Owner">
            <summary>Gets the parent <see cref="T:Telerik.Web.UI.IRadSiteMapNodeContainer">IRadSiteMapNodeContainer</see>.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadSiteMapNodeContainer.Nodes">
            <summary>Gets the collection of child items.</summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection">RadSiteMapNodeCollection</see> that represents the child
                items.
            </value>
            <remarks>
            Use this property to retrieve the child items. You can also use it to
            programmatically add or remove items.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMap.OnNodeDataBound(Telerik.Web.UI.RadSiteMapNodeEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadSiteMapNodeEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMap.OnNodeCreated(Telerik.Web.UI.RadSiteMapNodeEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadSiteMap.NodeCreated"/> event.
            </summary>
            <param name="e">The <see cref="T:Telerik.Web.UI.RadSiteMapNodeEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMap.ClearSelectedNode">
            <summary>
            This methods clears the selected nodes of the current RadSiteMap instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMap.GetAllNodes">
            <summary>
            Gets a linear list of all nodes in the <strong>RadSiteMap</strong> control.
            </summary>
            <returns>An <see cref="T:System.Collections.Generic.IList`1">IList&lt;RadSiteMapNode&gt;</see> containing all nodes (from all hierarchy levels).</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.Nodes">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/> object that contains the root nodes of the current RadSiteMap control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/> that contains the root nodes of the current RadSiteMap control. By default
            	the collection is empty (RadSiteMap has no children).
            </value>
            <remarks>
            	Use the <b>nodes</b> property to access the root nodes of the RadSiteMap control. You can also use the <b>nodes</b> property to
            	manage the root nodes - you can add, remove or modify nodes.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a root node.
                <code lang="CS">
            		RadSiteMap1.Nodes[0].Text = "Example";
            		RadSiteMap1.Nodes[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadSiteMap1.Nodes(0).Text = "Example"
            		RadSiteMap1.Nodes(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.SelectedNode">
            <summary>
            Gets a collection of RadSiteMapNode objects that represent the node in the control
            that is currently selected.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.DefaultLevelSettings">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.SiteMapLevelSetting">SiteMapLevelSetting</see>
            object to be used when no specific settings have been defined for a given level.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.SiteMapLevelSetting">SiteMapLevelSetting</see> object.
            </value>
            <remarks>
            Individual levels can be customized using the <see cref="P:Telerik.Web.UI.RadSiteMap.LevelSettings">LevelSettings</see>
            collection. Levels not specified in this collection will get the default settings.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.LevelSettings">
            <summary>
            Gets the collection of <see cref="P:Telerik.Web.UI.RadSiteMap.LevelSettings">LevelSettings</see> objects that
            define the appearance of the nodes according to their level in the hierarchy.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.SiteMapLevelSettingCollection">SiteMapLevelSettingCollection</see>
            containing <see cref="P:Telerik.Web.UI.RadSiteMap.LevelSettings">LevelSettings</see> that define the
            appearance of the nodes according to their level in the hierarchy.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.ShowNodeLines">
            <summary>
            Gets or sets a value indicating whether to render node lines in a fashion similar to RadTreeView.
            </summary>
            <remarks>
            Node lines are supported in List rendering mode without columns.
            </remarks>
            <value>
            <strong>true</strong> if node lines should be rendered;
            <strong>false </strong> otherwise.
            The default value is <strong>false</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.DataBindings">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadSiteMapNodeBindingCollection"/> objects that define the relationship 
            	between a data item and the tree node it is binding to. 
            </summary>
            <returns>
            	A <see cref="T:Telerik.Web.UI.RadSiteMapNodeBindingCollection"/> that represents the relationship between a data item and the tree node it is binding to.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMap.EnableTextHTMLEncoding">
            <summary>
            	Gets or sets a value indicating whether the html encoding will be applied when the site map items are rendered.
            </summary>
            <remarks>
            	By default RadSiteMap will not apply a html encoding when the site map items are rendered.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadSiteMap.NodeDataBound">
            <summary>
            Occurs when node is data bound.
            </summary>
            <remarks>
            Use the NodeDataBound event to set additional properties of the databound nodes.
            </remarks>
            <example>
            <code lang="CS">
            protected void RadSiteMap1_NodeDataBound(object sender, RadSiteMapNodeEventArgs e)
            {
                e.Node.ToolTip = (string)DataBinder.Eval(e.Node.DataItem, "ToolTipColumn");
            }
            </code>
            <code lang="VB">
            Protected Sub RadSiteMap1_NodeDataBound(sender As Object, e As RadSiteMapNodeEventArgs)
            	e.Node.ToolTip = DirectCast(DataBinder.Eval(e.Node.DataItem, "ToolTipColumn"), String)
            End Sub
            </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadSiteMap.NodeCreated">
            <summary>
            Occurs when node is created.
            </summary>
            <remarks>
            The NodeCreated event occurs before <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound"/> and after postback if ViewState is enabled. 
            NodeCreated is not raised for items defined inline in the ASPX.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadSiteMap.TemplateNeeded">
            <summary>Occurs before template is being applied to the node.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the node, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for nodes
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property of the nodes. 
                <code lang="CS">
            		 protected void RadSiteMap1_TemplateNeeded(object sender, Telerik.Web.UI.RadSiteMapNodeEventArgs e)
            		 {
            		    string value = e.Node.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              textBoxTemplate.InstantiateIn(e.Node);        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadSiteMap1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadSiteMapNodeEventArgs) Handles RadSiteMap1.TemplateNeeded
                         Dim value As String = e.Node.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 textBoxTemplate.InstantiateIn(e.Node)
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.TargetControl.Enabled">
            <summary>
            Gets or sets a value indicating whether skinning should be enabled or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButtonBase.SocialNetType">
            <summary>
            Get/Set the the social net type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButtonBase.UrlToShare">
            <summary>
            Get/Set the url to share. The default value is empty string which results in sharing the page on which the button resides
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButtonBase.TitleToShare">
            <summary>
            Get/Set the title of the shared message. The default value is the title of the current page or the url itself
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.ToolTip">
            <summary>
            Get/Set the the text of the button label.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.LabelText">
            <summary>
            Get/Set the the text of the button label.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.CustomIconUrl">
            <summary>
            Get/Set the the url of a custom icon for the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.CustomIconWidth">
            <summary>
            Get/Set the width of a button's custom icon
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.CustomIconHeight">
            <summary>
            Get/Set the height of a button's custom icon
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.DialogWidth">
            <summary>
            Get/Set the width of the social dialog popup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.DialogHeight">
            <summary>
            Get/Set the height of the social dialog popup 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.DialogTop">
            <summary>
            Get/Set the top of the social dialog. Default is center
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.DialogLeft">
            <summary>
            Get/Set the left of the social dialog popup. Default is center
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialButton.CssClass">
            <summary>
            Get/Set custom CssClass for the social button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.ButtonType">
            <summary>
            Get/Set the type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.SocialNetType">
            <summary>
            Get/Set the the social net type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.ShowFaces">
            <summary>
            Get/Set whether profile pictures should be displayed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.ButtonLayout">
            <summary>
            Get/Set the button layout
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.ColorScheme">
            <summary>
            Get/Set the color sheme of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.Width">
            <summary>
            Get/Set the width of the button - used when annotation is displayed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.Font">
            <summary>
            Get/Set the font for the button 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFacebookButton.ReferralsLabel">
            <summary>
            Get/Set the label for referrals
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTwitterButton.SocialNetType">
            <summary>
            Get/Set the the social net type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTwitterButton.CounterMode">
            <summary>
            Get/Set the counter mode for the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGoogleButton.SocialNetType">
            <summary>
            Get/Set the the social net type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGoogleButton.ButtonSize">
            <summary>
            Get/Set the size of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGoogleButton.AnnotationType">
            <summary>
            Get/Set the annotation type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGoogleButton.Width">
            <summary>
            Get/Set the width of the button - used when annotation is displayed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompactButton.SocialNetType">
            <summary>
            Get/Set the the social net type of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompactButton.DialogTitle">
            <summary>
            Get/Set the title of the compact dialog
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompactButton.DialogWidth">
            <summary>
            Get/Set the width of the social dialog popup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompactButton.DialogHeight">
            <summary>
            Get/Set the height of the social dialog popup 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Add(`0)">
            <summary>
            Adds the specified item.
            </summary>
            <param name="item">The item.</param>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Contains(`0)">
            <summary>
            Determines whether the collection contains the specified item.
            </summary>
            <param name="item">The item.</param>
            <returns>
            	<c>true</c> if the collection contains the specified item; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.CopyTo(`0[],System.Int32)">
            <summary>
            Copies the collection items to the specified array.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Adds the specified items to the collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.IndexOf(`0)">
            <summary>
            Gets the index of the specified item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Insert(System.Int32,`0)">
            <summary>
            Inserts the specified item at the specified index.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Remove(`0)">
            <summary>
            Removes the specified item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.RemoveAt(System.Int32)">
            <summary>
            Removes the item at the specified index.
            </summary>
            <param name="index">The zero-based index of the item to remove.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">index is not a valid index in the <see cref="T:System.Collections.IList"></see>. </exception>
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Clear">
            <summary>
            Clears the collection of items
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.GetKnownTypes">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.CreateKnownType(System.Int32)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.SetDirtyObject(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.Item(System.Int32)">
            <summary>
            Gets or sets the button at the specified index.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.GenericSocialButtonsCollection`1.List">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadSocialShare">
            <summary>
            Telerik Social Share control
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadSocialShare._compactButtons">
            <summary>
            Compact buttons collection
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadSocialShare._mainButtons">
            <summary>
            Main buttons collection
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadSocialShare._emailSettings">
            <summary>
            Email settings
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.Orientation">
            <summary>
            Get/Set orientation of the buttons
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.DialogWidth">
            <summary>
            Get/Set the width of the social dialog popup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.DialogHeight">
            <summary>
            Get/Set the height of the social dialog popup 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.DialogTop">
            <summary>
            Get/Set the top of the social dialog. Default is center
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.DialogLeft">
            <summary>
            Get/Set the left of the social dialog popup. Default is center
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.Width">
            <summary>
            Get/Set the width of the social share control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.Height">
            <summary>
            Get/Set the height of the social share control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.UrlToShare">
            <summary>
            Get/Set the url to share. The default value is empty string which results in sharing the page on which the button resides
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.TitleToShare">
            <summary>
            Get/Set the title of the shared message. The default value is the title of the current page or the url itself
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSocialShare.HideIframesOnDialogMove">
            <summary>
            Get/Set whether IFRAMEs should be hidden while dialog (compact popup or send email) is moved. The default value is true
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.RadSocialShareEmailSettings.FromEmail">
            <summary>
            Get/Set the email address which sends the mail message
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.RadSocialShareEmailSettings.SMTPServer">
            <summary>
            Get/Set the SMTP server
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.RadSocialShareEmailSettings.UserName">
            <summary>
            Get/Set the user name for network credentials
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SocialShare.RadSocialShareEmailSettings.Password">
            <summary>
            Get/Set the password for network credentials
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTabStrip">
            <summary>A navigation control used to create tabbed interfaces.</summary>
            <remarks>
            	<para>
                    The <b>RadTabStrip</b> control is used to display a list of tabs in a Web Forms
                    page and is often used in combination with a
                    <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control for building tabbed
                    interfaces. The <b>RadTabStrip</b> control supports the following features:
                </para>
            	<list type="bullet">
            		<item>Databinding that allows the control to be populated from various
                    datasources</item>
            		<item>Programmatic access to the <strong>RadTabStrip</strong> object model
                    which allows to dynamic creation of tabstrips, populate h tabs, set
                    properties.</item>
            		<item>Customizable appearance through built-in or user-defined skins.</item>
            	</list>
            	<h3>Tabs</h3>
            	<para>
                    The <strong>RadTabStrip</strong> control is made up of tree of tabs represented
                    by <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> objects. Tabs at the top level (level 0) are
                    called root tabs. A tab that has a parent tab is called a child tab. All root
                    tabs are stored in the <see cref="P:Telerik.Web.UI.RadTabStrip.Tabs">Tabs</see> collection. Child tabs are
                    stored in a parent tab's <see cref="P:Telerik.Web.UI.RadTab.Tabs">Tabs</see> collection.
                </para>
            	<para>
                    Each tab has a <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> and a <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property. 
            		The value of the <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is displayed in the <b>RadTabStrip</b> control, 
            		while the <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is used to store any additional data about the tab, 
            		such as data passed to the postback event associated with the tab. When clicked, a tab can
                    navigate to another Web page indicated by the <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property.
                </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.IRadTabContainer">
            <summary>
                Defines properties that tab containers (<see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see>,
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see>) should implement.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.Owner">
            <summary>
            Gets the parent <see cref="T:Telerik.Web.UI.IRadTabContainer">IRadTabContainer</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.Tabs">
            <summary>
            Gets the collection of child tabs.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> which represents the child tabs of 
            the <see cref="T:Telerik.Web.UI.IRadTabContainer">IRadTabContainer</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.SelectedIndex">
            <summary>
            	Gets or sets the index of the selected child tab.
            </summary>
            <value>
            	The zero based index of the selected tab. The default value is -1 (no child tab is selected).
            </value>
            <remarks>
            	Use the <b>SelectedIndex</b> property to programmatically specify the selected
            	child tab in a <b>IRadTabContainer</b> (<b>RadTabStrip</b> or <b>RadTab</b>). 
            	To clear the selection set the <b>SelectedIndex</b> property to <c>-1</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.SelectedTab">
            <summary>
            	Gets the selected child tab.
            </summary>
            <value>
            	Returns the child tab which is currently selected. If no tab is selected
            	(the <see cref="P:Telerik.Web.UI.IRadTabContainer.SelectedIndex">SelectedIndex</see> property is <c>-1</c>) the <b>SelectedTab</b> 
            	property will return <c>null</c> (<c>Nothing</c> in VB.NET).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.ScrollChildren">
            <summary>
            	Gets or sets a value indicating whether the children of the tab will be
            	scrollable.
            </summary>
            <value>
            	<c>true</c> if the child tabs will be scrolled; otherwise
            	<c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.PerTabScrolling">
            <summary>
            	Gets or sets a value indicating whether the tabstrip should scroll directly to
            	the next tab.
            </summary>
            <value>
            	<c>true</c> if the tabstrip should scroll to the next (or previous) tab; otherwise <c>false</c>. 
            	The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.ScrollButtonsPosition">
            <summary>The position of the scroll buttons with regards to the tab band.</summary>
            <remarks>
                This property is applicable when the
                <see cref="P:Telerik.Web.UI.IRadTabContainer.ScrollChildren">ScrollChildren</see> property is set to
                <c>true</c>; otherwise it is ignored.
            </remarks>
            <value>
                One of the <see cref="T:Telerik.Web.UI.TabStripScrollButtonsPosition">TabStripScrollButtonsPosition</see>
                enumeration values. The default value is <c>Right</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadTabContainer.ScrollPosition">
            <summary>
            	Gets or sets the position of the scrollable band of tabs relative to the
            	beginning of the scrolling area.
            </summary>
            <remarks>
                This property is applicable when the
                <see cref="P:Telerik.Web.UI.IRadTabContainer.ScrollChildren">ScrollChildren</see> property is set to
                <strong>true</strong>; otherwise it is ignored.
            </remarks>
            <value>
            	An integer specifying the initial scrolling position (measured in pixels). The default value is 0
                (no offset from the default scrolling position). Use negative values to move the tabs to the left.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.#ctor">
             <summary>
            		Initializes a new instance of the RadTabStrip class.
             </summary>
             <remarks>
            		Use this constructor to create and initialize a new instance of the RadTabStrip
            		control.
             </remarks>
             <example>
                 The following example demonstrates how to programmatically create a RadTabStrip
                 control. 
                 <code lang="CS">
            			void Page_Load(object sender, EventArgs e)
            			{
            				RadTabStrip RadTabStrip1 = new RadTabStrip();
            				RadTabStrip1.ID = "RadTabStrip1";
             
            				if (!Page.IsPostBack)
            				{
            					//RadTabStrip persist its tab in ViewState (if EnableViewState is true). 
            					//Hence tabs should be created only on initial load.
             
            					RadTab sportTab = new RadTab("Sport");
            					RadTabStrip1.Tabs.Add(sportTab);
            			     
            					RadTab newsTab = new RadTab("News");
            					RadTabStrip1.Tabs.Add(newsTab);
            				}
             
            				PlaceHolder1.Controls.Add(RadTabStrip1);
            			}
                 </code>
             	<code lang="VB">
            			Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            				Dim RadTabStrip1 As RadTabStrip = New RadTabStrip()
            				RadTabStrip1.ID = "RadTabStrip1"
            				
            				If Not Page.IsPostBack Then
            					'RadTabStrip persist its tab in ViewState (if EnableViewState is true).				
             				'Hence tabs should be created only on initial load.
             
            					Dim sportTab As RadTab = New RadTab("Sport")
            					RadTabStrip1.Tabs.Add(sportTab)
            
            					Dim newsTab As RadTab = New RadTab("News")
            					RadTabStrip1.Tabs.Add(newsTab)
            				End If
             
            				PlaceHolder1.Controls.Add(RadTabStrip1)
            			 End Sub
                 </code>
             </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.LoadContentFile(System.String)">
            <summary>
            Populates the <strong>RadTabStrip</strong> control from external XML file.
            </summary>
            <remarks>
            The newly added items will be appended after any existing ones.
            </remarks>
            <example>
                The following example demonstrates how to populate <strong>RadTabStrip</strong> control
                from XML file. 
                <code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                {
                    RadTabStrip1.LoadContentFile("~/Data.xml");
                }
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(sender As Object, e As EventArgs) Handles MyBase.Load
                If Not Page.IsPostBack Then
                    RadTabStrip1.LoadContentFile("~/Data.xml")
                End If
            End Sub
                </code>
            </example>
            <param name="xmlFileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.GetAllTabs">
            <summary>
            	Gets a linear list of all tabs in the <b>RadTabStrip</b> control.
            </summary>
            <returns>
            	An <strong>IList</strong> object containing 
            	all tabs in the current RadTabStrip control.
            </returns>		
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTabByUrl(System.String)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="url">
            	The URL to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTabByValue(System.String)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTabByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The value to search for.
            </param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTabByText(System.String)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal
                to the specified value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTabByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal
                to the specified value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStrip.FindTab(System.Predicate{Telerik.Web.UI.RadTab})">
            <summary>
            Returns  the first <strong>RadTab</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindTab</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadTabStrip1.FindTab(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadTab tab)
            {
                if (tab.Text == tab.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadTabStrip1.FindTab(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal tab As RadTab) As Boolean
                If tab.Text = tab.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding a tab, removing a tab, changing a tab's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<tab>adding a new tab</tab>
            			<tab>removing existing tab</tab>
            			<tab>clearing the children of a tab or the control itself</tab>
            			<tab>changing a property of the tab</tab>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadTab&gt; operation in RadTabStrip1.ClientChanges)
            		{
            			RadTab tab = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//An tab has been inserted - operation.Item contains the inserted tab
            				break;
            				case ClientOperationType.Remove:
            					//An tab has been inserted - operation.Item contains the removed tab. 
                             //Keep in mind the tab has been removed from the tabstrip.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadTab&gt; update = operation as UpdateClientOperation&lt;RadTab&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of have been removed - operation.Item contains the parent tab whose children have been removed. If operation.Item is null then the root tabs have been removed.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadTab) In RadTabStrip1.ClientChanges
            				Dim tab As RadTab = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'A tab has been inserted - operation.Item contains the inserted tab
            					Exit Select
            					Case ClientOperationType.Remove
            						'A tab has been inserted - operation.Item contains the removed tab. 
            						'Keep in mind the tab has been removed from the tabstrip.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadTab) = TryCast(operation, UpdateClientOperation(Of RadTab))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						'All children of have been removed - operation.Item contains the parent tab whose children have been removed. If operation.Item is Nothing then the root tabs have been removed.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">
            <summary>
            	Gets or sets a value indicating whether the immediate children of the <b>RadTabStrip</b> control will be
            	scrollable.
            </summary>
            <value>
            	<c>true</c> if the child tabs will be scrollable; otherwise <c>false</c>. The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ScrollButtonsPosition">
            <summary>The position of the scroll buttons with regards to the tab band.</summary>
            <remarks>
                This property is applicable when the
                <see cref="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">ScrollChildren</see> property is set to
                <c>true</c>; otherwise it is ignored.
            </remarks>
            <value>
                One of the <see cref="T:Telerik.Web.UI.TabStripScrollButtonsPosition">TabStripScrollButtonsPosition</see>
                enumeration values. The default value is <c>Right</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ScrollPosition">
            <summary>
            	Gets or sets the position of the scrollable band of tabs relative to the
            	beginning of the scrolling area.
            </summary>
            <remarks>
                This property is applicable when the <see cref="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">ScrollChildren</see> property is set to
                <c>true</c>; otherwise it is ignored.
            </remarks>
            <value>
            	An integer specifying the initial scrolling position (measured in pixels). The default value is 0
                (no offset from the default scrolling position). Use negative values to move the tabs to the left.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.PerTabScrolling">
            <summary>
            	Gets or sets a value indicating whether the tabstrip should scroll directly to
            	the next tab.
            </summary>
            <value>
            	<c>true</c> if the tabstrip should scroll to the next (or previous) tab; otherwise <c>false</c>. 
            	The default value is <c>false</c>.
            </value>
            <remarks>
                By default tabs are scrolled smoothly. If you want the tabstrip to scroll directly
                to the next (or previous) tab set this property to <c>true</c>. This
                property is applicable when the <see cref="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">ScrollChildren</see>
                property is set to <c>true</c>; otherwise it is ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.SelectedIndex">
            <summary>
            	Gets or sets the index of the selected child tab.
            </summary>
            <value>
            	The zero based index of the selected tab. The default value is -1 (no child tab is selected).
            </value>
            <remarks>
            	Use the <b>SelectedIndex</b> property to programmatically specify the selected
            	child tab in a <b>IRadTabContainer</b> (<b>RadTabStrip</b> or <b>RadTab</b>). 
            	To clear the selection set the <b>SelectedIndex</b> property to <c>-1</c>.
            </remarks>
            <example>
                The following example demonstrates how to programmatically select a tab by using
                the <b>SelectedIndex</b> property.
                <code lang="CS">
            		void Page_Load(object sender, EventArgs e)
            		{
            			if (!Page.IsPostBack)
            			{
            				RadTab newsTab = new RadTab("News");
            				RadTabStrip1.Tabs.Add(newsTab);
                
            				RadTabStrip1.SelectedIndex = 0; //This will select the "News" tab
             
            				RadTab cnnTab = new RadTab("CNN");
            				newsTab.Tabs.Add(cnnTab);
             
            				RadTab nbcTab = new RadTab("NBC");
            				newsTab.Tabs.Add(nbcTab);
             
            				newsTab.SelectedIndex = 1; //This will select the "NBC" child tab of the "News" tab
            			}
            		}
                </code>
            	<code lang="VB">
            		 Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            		     If Not Page.IsPostBack Then
            		         Dim newsTab As RadTab = New RadTab("News")
            		         RadTabStrip1.Tabs.Add(newsTab)
            		  
            		         RadTabStrip1.SelectedIndex = 0 'This will select the "News" tab
            		  
            		         Dim cnnTab As RadTab = New RadTab("CNN")
            		         newsTab.Tabs.Add(cnnTab)
            		  
            		         Dim nbcTab As RadTab = New RadTab("NBC")
            		         newsTab.Tabs.Add(nbcTab)
            		  
            		         newsTab.SelectedIndex = 1 'This will select the "NBC" child tab of the "News" tab
            		     End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.SelectedTab">
            <summary>
            	Gets the selected child tab.
            </summary>
            <value>
            	Returns the child tab which is currently selected. If no tab is selected
            	(the <see cref="P:Telerik.Web.UI.RadTabStrip.SelectedIndex">SelectedIndex</see> property is <c>-1</c>) the <b>SelectedTab</b> 
            	property will return <c>null</c> (<c>Nothing</c> in VB.NET).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.Tabs">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> object that contains the root tabs of the current RadTabStrip control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> that contains the root tabs of the current RadTabStrip control. By default
            	the collection is empty (RadTabStrip has no children).
            </value>
            <remarks>
            	Use the <b>Tabs</b> property to access the child tabs of RadTabStrip. You can also use the <b>Tabs</b> property to
            	manage the root tabs. You can add, remove or modify tabs from the <b>Tabs</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of root tabs.
                <code lang="CS">
            		RadTabStrip1.Tabs[0].Text = "Example";
            		RadTabStrip1.Tabs[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadTabStrip1.Tabs(0).Text = "Example"
            		RadTabStrip1.Tabs(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.TabTemplate">
            <summary>Gets or sets the template for displaying all tabs in the <see cref="T:Telerik.Web.UI.RadTabStrip"/> control.</summary>
            <value>
            	<para>An object implementing the <strong>ITemplate</strong>The default value is a null reference (<strong>Nothing</strong> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>
                    To specify unique display for specific tabs use the
                    <see cref="P:Telerik.Web.UI.RadTab.TabTemplate"/> property of the <see cref="T:Telerik.Web.UI.RadTab"/> class.
                </para>
            </value>
            <example>
            	The following example demonstrates how to customize the appearance of all tabs
            	<code lang="html">
            		&lt;telerik:RadTabStrip runat="server" ID="RadTabStrip1"&gt;
            			&lt;TabTemplate&gt;
            				&lt;%# DataBinder.Eval(Container, "Text") %&gt;
            				&lt;img style="margin-left: 10px" src="Images/delete.gif" alt="delete"/&gt;
            			&lt;/TabTemplate&gt;
            		&lt;Tabs&gt;
            			&lt;telerik:RadTab Text="Products"&gt;
            			&lt;/telerik:RadTab&gt;
            			&lt;telerik:RadTab Text="Services"&gt;
            			&lt;/telerik:RadTab&gt;
            			&lt;telerik:RadTab Text="Corporate"&gt;
            			&lt;/telerik:RadTab&gt;
            		&lt;/Tabs&gt;
            		&lt;/telerik:RadTabStrip&gt;
            	</code>
            	<code lang="CS">
            	protected void Page_Load(object sender, System.EventArgs e)
            	{
            		if (!Page.IsPostBack)
            		{
            			//Required to evaluate the databinding expressions inside the template (&lt;%# DataBinder.Eval)%&gt;
            			RadTabStrip1.DataBind();
            		}
            	}
            	</code>
            	<code lang="VB">
            	Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            		If Not Page.IsPostBack Then
            			RadTabStrip1.DataBind()
            		End If
            	End Sub
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.AutoPostBack">
            <summary>
            	Gets or sets a value indicating whether tabs should postback when clicked.
            </summary>
            <value>
            	<c>True</c> if tabs should postback; otherwise <c>false</c>. The default value is <strong>false</strong>.
            </value>
            <remarks>
            	RadTabStrip will postback provided one of the following conditions is met:
            	<list type="bullet">
            		<item>
            			The <see cref="P:Telerik.Web.UI.RadTabStrip.AutoPostBack">AutoPostBack</see> property is set to <c>true</c>.
            		</item>
            		<item>
            			The user has subscribed to the <see cref="E:Telerik.Web.UI.RadTabStrip.TabClick">TabClick</see> event.
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataBindings">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadTabBindingCollection"/> objects that define the relationship 
            	between a data item and the tab it is binding to. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.AppendDataBoundItems">
            <summary>
            	<para>Gets or sets a value that indicates whether child tabs are cleared before
                data binding.</para>
            </summary>
            <remarks>
            	<para>The <strong>AppendDataBoundTabs</strong> property allows you to add items to
                the RadTabStrp control before data binding occurs. After data binding, the items
                collection contains both the items from the data source and the previously added
                items.</para>
            	<para>The value of this property is stored in view state.</para>
            </remarks>
            <value>
            	<strong>True</strong> if child tabs should not be cleared before databinding;
            otherwise <strong>false</strong>. The default value is <strong>false</strong> (child
            items will be cleared before databinding).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.MaxDataBindDepth">
            <summary>
            	Gets or sets the maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </summary>
            <value>
            	The maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control. The default is -1, which binds all the levels in the data source to the control.
            </value>
            <remarks>
            	When binding the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control to a data source, use the MaxDataBindDepth 
            	property to limit the number of levels to bind to the control. For example, setting this property to 2 binds only 
            	the root tabs and their immediate children. All remaining records in the data source are ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataTextField">
            <summary>
            	Gets or sets the field of the data source that provides the text content of the tabs.
            </summary>
            <value>
            	A string that specifies the field of the data source that provides the text content of the tabs. 
            	The default value is empty string.
            </value>
            <remarks>
            	Use the DataTextField property to specify the field of the data source (in most cases the name of the database column) 
            	which provides values for the <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property of databound tabs. The DataTextField property is 
            	taken into account only during data binding.
            </remarks>
            <example>
            	The following example demonstrates how to use the DataTextField.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyText");
            		
            		data.Rows.Add(new object[] {"Tab Text 1"});
            		data.Rows.Add(new object[] {"Tab Text 2"});
            		
            		RadTabStrip1.DataSource = data;
            		RadTabStrip1.DataTextField = "MyText";		//"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As new DataTable();
            		data.Columns.Add("MyText")
            		
            		data.Rows.Add(New Object() {"Tab Text 1"})
            		data.Rows.Add(New Object() {"Tab Text 2"})
            		
            		RadTabStrip1.DataSource = data
            		RadTabStrip1.DataTextField = "MyText"		'"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataBind()
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataValueField">
            <summary>
            	Gets or sets the field of the data source that provides the value of the tabs.
            </summary>
            <value>
            	A string that specifies the field of the data source that provides the value of the tabs. 
            	The default value is empty string.
            </value>
            <remarks>
            	Use the DataValueField property to specify the field of the data source (in most cases the name of the database column) 
            	which provides the values for the <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property of databound tabs. The DataValueField property is 
            	taken into account only during data binding. If the DataValueField property is not set the <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> 
            	property of databound tabs will have its default value - empty string.
            </remarks>
            <example>
            	The following example demonstrates how to use the DataValueField.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyText");
            		data.Columns.Add("MyValue");
            		
            		data.Rows.Add(new object[] {"Tab Text 1", "Tab Value 1"});
            		data.Rows.Add(new object[] {"Tab Text 2", "Tab Value 2"});
            		
            		RadTabStrip1.DataSource = data;
            		RadTabStrip1.DataTextField = "MyText";		//"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataValueField = "MyValue";	//"MyValue" column provides values for the Value property of databound tabs
            		RadTabStrip1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As new DataTable();
            		data.Columns.Add("MyText")
            		data.Columns.Add("MyValue")
            		
            		data.Rows.Add(New Object() {"Tab Text 1", "Tab Value 1"})
            		data.Rows.Add(New Object() {"Tab Text 2", "Tab Value 2"})
            		
            		RadTabStrip1.DataSource = data
            		RadTabStrip1.DataTextField = "MyText"		'"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataValueField = "MyValue"		'"MyValue" column provides values for the Value property of databound tabs
            		RadTabStrip1.DataBind()
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataNavigateUrlField">
            <summary>
            	Gets or sets the field of the data source that provides the URL to which tabs navigate.
            </summary>
            <value>
            	A string that specifies the field of the data source that provides the URL to which tabs will navigate. 
            	The default value is empty string.
            </value>
            <remarks>
            	Use the DataNavigateUrlField property to specify the field of the data source (in most cases the name of the database column) 
            	which provides the values for the <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property of databound tabs. 
            	The DataNavigateUrlField property is taken into account only during data binding. If the DataNavigateUrlField property 
            	is not set the <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property of databound tabs will have its default value - empty string.
            </remarks>
            <example>
            	The following example demonstrates how to use the DataNavigateUrlField.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyText");
            		data.Columns.Add("MyUrl");
            		
            		data.Rows.Add(new object[] {"Tab Text 1", "http://www.example.com/page1.aspx"});
            		data.Rows.Add(new object[] {"Tab Text 2", "http://www.example.com/page2.aspx"});
            		
            		RadTabStrip1.DataSource = data;
            		RadTabStrip1.DataTextField = "MyText";			//"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataNavigateUrlField = "MyUrl";	//"MyUrl" column provides values for the NavigateUrl property of databound tabs
            		RadTabStrip1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As new DataTable();
            		data.Columns.Add("MyText")
            		data.Columns.Add("MyUrl")
            		
            		data.Rows.Add(New Object() {"Tab Text 1", "http://www.example.com/page1.aspx"})
            		data.Rows.Add(New Object() {"Tab Text 2", "http://www.example.com/page2.aspx"})
            		
            		RadTabStrip1.DataSource = data
            		RadTabStrip1.DataTextField = "MyText"		'"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataValueField = "MyUrl"		'"MyUrl" column provides values for the NavigateUrl property of databound tabs
            		RadTabStrip1.DataBind()
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataFieldID">
            <summary>
            	Gets or sets the field from the data source which is the "child" column in the
            	"parent-child" relationship used to databind the <b>RadTabStrip</b>
            	control.
            </summary>
            <value>
            	A string that specifies the field of the data source that will be the "child"
            	column during databinding. The default is empty string.
            </value>
            <remarks>
            	<b>RadTabStrip</b> requires both <see cref="P:Telerik.Web.UI.RadTabStrip.DataFieldID">DataFieldID</see> and
            	<see cref="P:Telerik.Web.UI.RadTabStrip.DataFieldParentID">DataFieldParentID</see> properties to be set in order to be hierarchically databound.
            </remarks>
            <example>
            	The following example demonstrates how to use DataFieldID and DataFieldParentID.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyText");
            		data.Columns.Add("MyID", typeof(int));
            		data.Columns.Add("MyParentID", typeof(int));
            		
            		data.Rows.Add(new object[] {"Root Tab 1", 1, null});
            		data.Rows.Add(new object[] {"Child Tab 1.1", 3, 1});
            		data.Rows.Add(new object[] {"Root Tab 2", 2, null});
            		data.Rows.Add(new object[] {"Child Tab 2.1", 4, 2});
            		
            		RadTabStrip1.DataSource = data;
            		RadTabStrip1.DataTextField = "MyText";			//"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataFieldID = "MyID";				//"MyID" column provides values for the "child" column in the relation.
            		RadTabStrip1.DataFieldParentID = "MyParentID";	//"MyParentID" column provides values for the "parent" column in the relation.
            		RadTabStrip1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As New DataTable()
            		data.Columns.Add("MyText")
            		data.Columns.Add("MyID", GetType(Integer))
            		data.Columns.Add("MyParentID", GetType(Integer))
            		
            		data.Rows.Add(New Object() {"Root Tab 1", 1, Nothing})
            		data.Rows.Add(New Object() {"Child Tab 1.1", 3, 1})
            		data.Rows.Add(New Object() {"Root Tab 2", 2, Nothing})
            		data.Rows.Add(New Object() {"Child Tab 2.1", 4, 2})
            	
            		RadTabStrip1.DataSource = data
            		RadTabStrip1.DataTextField = "MyText"			'"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataFieldID = "MyID"				'"MyID" column provides values for the "child" column in the relation.
            		RadTabStrip1.DataFieldParentID = "MyParentID"	'"MyParentID" column provides values for the "parent" column in the relation.
            		RadTabStrip1.DataBind()
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataFieldParentID">
            <summary>
            	Gets or sets the field from the data source which is the "parent" column in the
            	"parent-child" relationship used to databind the <b>RadTabStrip</b>
            	control.
            </summary>
            <value>
            	A string that specifies the field of the data source that will be the "parent"
            	column during databinding. The default is empty string.
            </value>
            <remarks>
            	<para>
            		<b>RadTabStrip</b> requires both <see cref="P:Telerik.Web.UI.RadTabStrip.DataFieldID">DataFieldID</see> and
            		<see cref="P:Telerik.Web.UI.RadTabStrip.DataFieldParentID">DataFieldParentID</see> properties to be set in order to be hierarchically databound.
            	</para>
            	<para>
            		The value of the column specified by DataFieldParentID must be null (Nothing) for root tabs. This is a requirement 
            		for databinding RadTabStrip.
            	</para>
            </remarks>
            <example>
            	The following example demonstrates how to use DataFieldID and DataFieldParentID.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyText");
            		data.Columns.Add("MyID", typeof(int));
            		data.Columns.Add("MyParentID", typeof(int));
            		
            		data.Rows.Add(new object[] {"Root Tab 1", 1, null});
            		data.Rows.Add(new object[] {"Child Tab 1.1", 3, 1});
            		data.Rows.Add(new object[] {"Root Tab 2", 2, null});
            		data.Rows.Add(new object[] {"Child Tab 2.1", 4, 2});
            		
            		RadTabStrip1.DataSource = data;
            		RadTabStrip1.DataTextField = "MyText";			//"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataFieldID = "MyID";				//"MyID" column provides values for the "child" column in the relation.
            		RadTabStrip1.DataFieldParentID = "MyParentID";	//"MyParentID" column provides values for the "parent" column in the relation.
            		RadTabStrip1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As New DataTable()
            		data.Columns.Add("MyText")
            		data.Columns.Add("MyID", GetType(Integer))
            		data.Columns.Add("MyParentID", GetType(Integer))
            		
            		data.Rows.Add(New Object() {"Root Tab 1", 1, Nothing})
            		data.Rows.Add(New Object() {"Child Tab 1.1", 3, 1})
            		data.Rows.Add(New Object() {"Root Tab 2", 2, Nothing})
            		data.Rows.Add(New Object() {"Child Tab 2.1", 4, 2})
            	
            		RadTabStrip1.DataSource = data
            		RadTabStrip1.DataTextField = "MyText"			'"MyText" column provides values for the Text property of databound tabs
            		RadTabStrip1.DataFieldID = "MyID"				'"MyID" column provides values for the "child" column in the relation.
            		RadTabStrip1.DataFieldParentID = "MyParentID"	'"MyParentID" column provides values for the "parent" column in the relation.
            		RadTabStrip1.DataBind()
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.DataTextFormatString">
            <summary>
            	Gets or sets the formatting string used to control how text to the tabstrip
            	control is displayed.
            </summary>
            <remarks>
            	<para>
            		Use the DataTextFormatString property to provide a custom display format for text of the tabs.
            		The data format string consists of two parts, separated by a colon, in the form { A: Bxx }. 
            		For example, the formatting string {0:F2} would display a fixed point number with two decimal places.
            	</para>
            	<para>
            		The entire string must be enclosed in braces to indicate that it is a format string and not a literal string. 
            		Any text outside the braces is displayed as literal text.
            	</para>
            	<para>
            		The value before the colon (A in the general example) specifies the parameter index in a zero-based list of parameters.
            		This value can only be set to 0.
            	</para>
             </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.InnermostSelectedTab">
            <summary>
            	Gets the innermost selected tab in a hierarchical RadTabStrip control.
            </summary>
            <remarks>
            	In hierarchical tabstrips this property returns the innermost selected
                tab.
            </remarks>
            <value>
            	Returns the inner most selected child tab in hierarchical tabstrip scenarios. 
            	Null (Nothing in VB.NET) if no tab is selected.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ValidationGroup">
            <summary>
            	<para>Gets or sets the name of the validation group to which this validation
                control belongs.</para>
            </summary>
            <value>
            The name of the validation group to which this validation control belongs. The
            default is an empty string (""), which indicates that this property is not set.
            </value>
            <remarks>
                This property works only when <see cref="P:Telerik.Web.UI.RadTabStrip.CausesValidation">CausesValidation</see>
                is set to true.
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when a tab
                from the tabstrip is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when a tab from the
            	tabstrip control is clicked. The default value is an empty string (""), which causes
            	the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.MultiPageID">
            <summary>
                Gets or sets the ID of the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control that
                will be controlled by the current <strong>RadTabStrip</strong> control.
            </summary>
            <remarks>
            	You should use different value depending on the following conditions:
            	<list type="list">
            		<item>
            			Use the <see cref="P:System.Web.UI.Control.ID">ID</see> property of the RadMuitiPage control if the RadMultiPage control is in 
            			the same INamingContainer (user control, page, content page, master page) as the current RadTabStrip control.
            		</item>
            		<item>
            			Use the <see cref="P:System.Web.UI.Control.UniqueID">UniqueID</see> property of the RadMuitiPage control if the RadMultiPage 
            			control is in a different INamingContainer (user control, page, content page, master page) than 
            			the current RadTabStrip control.
            		</item>
            	</list>
            </remarks>
            <value>
            	The <strong>ID</strong> of the associated RadMultiPage. The default value is empty string.
            </value>
            <example>
                The following example demonstrates how to associate a <strong>RadMultiPage</strong>
                control with a <strong>RadTabStrip</strong> control through the
                <strong>MultiPageID</strong> property. 
                <para>
            		<para class="sourcecode">&lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>MultiPageID="RadMultiPage1"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;<br/>
            			<br/>
                    &lt;telerik:RadMultiPage <strong>id="RadMultiPage1"</strong>
                    runat="server"&gt;<br/>
                    .....<br/>
                    &lt;/telerik:RadMultiPage&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.MultiPage">
            <summary>
                Gets the associated <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control if the
                <see cref="P:Telerik.Web.UI.RadTabStrip.MultiPageID">MultiPageID</see> property is set.
            </summary>
            <value>
            	The <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control associated with the
            	current <b>RadTabStrip</b> control. Will return null (Nothing in VB.NET) if the <see cref="P:Telerik.Web.UI.RadTabStrip.MultiPageID">MultiPageID</see> 
            	is not set or a corresponding <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control cannot be found
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ClickSelectedTab">
            <summary>
            	Gets or sets a value indicating whether the tabstrip should postback when the user clicks the currently selected tab.
            </summary>
            <value>
                <c>True</c> if the tabstrip should postback when the user clicks the currently selected tab; otherwise <c>false</c>. 
            	The default value is <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.Orientation">
            <summary>
            	Gets or sets a value indicating the orientation of child tabs within the
            	<b>RadTabStrip</b> control.
            </summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.TabStripOrientation">TabStripOrientation</see> values.
                The default value is <b>HorizontalTopToBottom</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.Align">
            <summary>Gets or sets the alignment of the tabs in the RadTabStrip control.</summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.TabStripAlign">TabStripAlign</see> enumeration values. The
                default value is <strong>Left</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ReorderTabsOnSelect">
            <summary>
            	Gets or sets a value indicating whether the row of the selected tab should move
            	to the bottom.
            </summary>
            <value>
            	<strong>true</strong> if the row containing the selected tab should be moved to
            	the bottom; otherwise <strong>false</strong>. The default value is
            <strong>false</strong>.
            </value>
            <remarks>
            	Use the <strong>ReorderTabsOnSelect</strong> property to mimic the behavior of the
            	Windows tabstrip control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.ShowBaseLine">
            <summary>
            	Shows or hides the image at the base of the first level of tabs.
            </summary>
            <value>
            	<strong>true</strong> if line is visible;
            otherwise, <b>false</b>. The default value is <b>false</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.EnableSubLevelStyles">
            <summary>
            	Controls whether the subitems of the tabstrip will have different styles than the main items.
            </summary>
            <value>
            	<strong>true</strong> if styling should be different;
            otherwise, <b>false</b>. The default value is <b>false</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.UnSelectChildren">
            <summary>
            	Gets or sets a value determining whether child tabs are unselected when a parent
            	tab is unselected.
            </summary>
            <value>
            	<strong>true</strong> if child tabs are unselected when a parent tab is
            	unselected. <strong>false</strong> if the tabs persist their state even when hidden.
            	The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when a tab within
            the <strong>RadTabStrip</strong> control is selected.
            </summary>
            <value>
            	<strong>true</strong> if validation is performed when a tab is selected;
            otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
            <remarks>
            	<para>By default, page validation is performed when a tab is selected. Page
                validation determines whether the input controls associated with a validation
                control on the page all pass the validation rules specified by the validation
                control. You can specify or determine whether validation is performed on both the
                client and the server when a tab is clicked by using the <b>CausesValidation</b>
                property. To prevent validation from being performed, set the
                <b>CausesValidation</b> property to <b>false</b>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientTabSelected">
            <summary>
            	Gets or sets a value indicating the client-side event handler that is called
                after selecting a tab.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientTabSelected</strong> property to specify a JavaScript
                function that will be executed after a tab is selected - either by left-clicking it
                with a mouse or hitting enter after tabbing to that tab.</para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadTabStrip object)</item>
            		<item>
                        eventArgs with one property 
                        <ul>
            				<li>tab - the instance of the selected tab</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientTabSelected</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientTabSelectedHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
            			<br/>
                    alert("You have selected the " + tab.get_text() + " tab in the " + tabStrip.get_id() +
                    "tabstrip.");<br/>
                    }<br/>
                    &lt;/script&gt;</para>
            		<para class="sourcecode">&lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientTabSelected="ClientTabSelectedHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            before the browser context menu shows (after right-clicking an item).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientContextMenu</strong> property to specify a JavaScript
                function that will be executed before the context menu shows after right clicking a
                tab.</para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadTabStrip object)</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>tab - the instance of the selected tab</li>
            				<li>domEvent - the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientContextMenu</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>OnContextMenuHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
            			<br/>
                    alert("You have right-clicked the " + tab.get_text() + " tab in the " + tabStrip.get_id() +
                    "tabstrip.");<br/>
                    }<br/>
                    &lt;/script&gt;</para>
            		<para class="sourcecode">&lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientContextMenu="OnContextMenuHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientDoubleClick">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            when the user double-clicks a tab.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientDoubleClick</strong> property to specify a JavaScript
                function that will be executed when the user double-clicks a tab.
            </para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadTabStrip object)</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>tab - the instance of the selected tab</li>
            				<li>domEvent - the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientDoubleClick</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>OnDoubleClickHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
            			<br/>
                    alert("You have double-clicked the " + tab.get_text() + " tab in the " + tabStrip.get_id() +
                    "tabstrip.");<br/>
                    }<br/>
                    &lt;/script&gt;</para>
            		<para class="sourcecode">&lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientDoubleClick="OnDoubleClickHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>		
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientTabSelecting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just
            prior to selecting a tab.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientTabSelecting</strong> property to specify a
                JavaScript function that will be executed prior to tab selecting - either by
                left-clicking it with a mouse or hitting enter after tabbing to that tab. You can
                cancel that event (prevent tab selecting) by seting the cancel property of the event argument to <c>true</c>.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadTabStrip object)</item>
            		<item>
                        eventArgs with one property 
                        <ul>
            				<li>tab - the instance of the selected tab</li>
            				<li>cancel - whether to cancel the event</li>
            			</ul>
            		</item>
            	</list>
            </para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientTabSelecting</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientTabSelectingHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
            			<br/>
                    alert("You will be selecting the " + tab.get_text() + " tab in the " + tabStrip.get_id() +
                    " tabstrip.");<br/>
            			<br/>
                    if (tab.Text == "Education")<br/>
                    {<br/>
                    alert("Education cannot be selected");<br/>
            			<strong>eventArgs.set_cancel(true);</strong><br/>
                    }<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientTabSelecting="ClientTabSelectedHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientMouseOver">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse hovers a tab in the <strong>RadTabStrip</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMouseOver</strong> property to specify a JavaScript
                function that is called when the user hovers a tab with the mouse.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item>sender (the client-side RadTabStrip object);</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>tab - the instance of the tab that is being hovered</li>
            				<li>domEvent - the instance of the browser event.</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientMouseOver</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientMouseOverHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
                    var domEvent = eventArgs.get_domEvent();<br/>
            			<br/>
                    alert("You have just moved over the " + tab.get_text() + " tabs in the " +
                    tabStrip.get_id() + " tabstrip");<br/>
                    alert("Mouse coordinates: " + domEvent.clientX + ":" +
                    domEvent.clientY);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientMouseOver="ClientMouseOverHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientMouseOut">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse leaves a tab in the <strong>RadTabStrip</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMouseOut</strong> property to specify a JavaScript
                function that is executed <font color="black">whenever the user moves the mouse
                away from a particular tab in the RadTabStrip control.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadTabStrip
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with two properties:</font>
            			<ul>
            				<li><font color="black">tab - the instance of the tab we are moving
                            away from;</font></li>
            				<li><font color="black">domEvent - the instance of the browser
                            event.</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientMouseOut</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientMouseOutHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.Tab;<br/>
                    var domEvent = eventArgs.get_domEvent();</para>
            		<para class="sourcecode">alert("You have just moved out of " + tab.get_text() + " in
                    the " + tabStrip.get_id() + " tabstrip.");<br/>
                    alert("Mouse coordinates: " + domEvent.clientX + ":" +
                    domEvent.clientY);<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientMouseOut="ClientMouseOutHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientTabUnSelected">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            after a tab is unselected (i.e. the user has selected another tab).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientTabUnSelected</strong> property to specify a
                JavaScript function that is executed <font color="black">after a tab is
                unselected.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item><font color="black">sender (the client-side RadTabStrip
                    object);</font></item>
            		<item>
                        eventArgs <font color="black">with one property:</font>
            			<ul>
            				<li><font color="black">tab - the instance of the tab which is
                            unselected;</font></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientMouseOut</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientTabUnSelectedHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
                    var tabStrip = sender;<br/>
                    var tab = eventArgs.get_tab();<br/>
            			<br/>
                    alert("You have unselected the " + tab.get_text() + " tab in the " + tabStrip.get_id() +
                    "tabstrip.");<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientTabUnSelected="ClientTabUnSelectedHandler"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStrip.OnClientLoad">
            <summary>
            Gets or sets the name of the javascript function called when the control is fully
            initialized on the client side.
            </summary>
            <value>
            A string specifying the name of the javascript function called when the control
            is fully initialized on the client side. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientLoad</strong> property to specify a JavaScript
                function that is executed after the control is initialized on the client side.
                <font color="black">A single parameter is passed to the handler, which is the
                client-side RadTabStrip object.</font></para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLoad</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>ClientTabstripLoad</strong>(tabstrip, eventArgs)<br/>
                    {<br/>
                    alert(tabstrip.get_id() + " is loaded.");<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"
                    <strong>OnClientLoad="ClientTabstripLoad"</strong>&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="Personal Details"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Education"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;telerik:RadTab Text="Computing Skills"&gt;&lt;/telerik:RadTab&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTabStrip.TabCreated">
            <summary>Occurs when a tab is created.</summary>
            <remarks>
            	The TabCreated event is raised when an tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control is created, 
            	both during round-trips and at the time data is bound to the control. The TabCreated event is not raised for tabs
            	which are defined inline in the page or user control.
            	<para>The TabCreated event is commonly used to initialize tab properties.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TabCreated</strong> event
                to set the <strong>ToolTip</strong> property of each tab. 
                <code lang="CS">
            		 protected void RadTabStrip1_TabCreated(object sender, Telerik.Web.UI.RadTabStripEventArgs e)
            		 {
            		     e.Tab.ToolTip = e.Tab.Text;
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadTabStrip1_TabCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TabCreated
            		     e.Tab.ToolTip = e.Tab.Text
            		 End Sub
                </code>
            </example>		
        </member>
        <member name="E:Telerik.Web.UI.RadTabStrip.TemplateNeeded">
            <summary>Occurs before template is being applied to the tab.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the tab, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for tabs
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property the tabs. 
                <code lang="CS">
            		 protected void RadTabStrip_TemplateNeeded(object sender, Telerik.Web.UI.RadTabStripArgs e)
            		 {
            		    string value = e.Tab.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              e.Tab.TabTemplate = textBoxTemplate;
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadTabStrip1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TemplateNeeded
                         Dim value As String = e.Tab.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 e.Tab.TabTemplate = textBoxTemplate
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTabStrip.TabDataBound">
            <summary>Occurs when a tab is data bound.</summary>
            <remarks>
            	<para>
                    The <strong>TabDataBound</strong> event is raised for each tab upon
                    databinding. You can retrieve the tab being bound using the event arguments.
                    The <strong>DataItem</strong> associated with the tab can be retrieved using
                    the <see cref="P:Telerik.Web.UI.RadTab.DataItem">DataItem</see> property.
                </para>
            	<para>The <strong>TabDataBound</strong> event is often used in scenarios when you
                want to perform additional mapping of fields from the DataItem to their respective
                properties in the Tab class.</para>
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadTab">tab</see> properties using the <strong>TabDataBound</strong> event.
            	<code lang="CS">
            		protected void RadTabStrip1_TabDataBound(object sender, Telerik.Web.UI.RadTabStripEventArgs e)
            		{
            			e.Tab.ImageUrl = "image" + (string)DataBinder.Eval(e.Tab.DataItem, "ID") + ".gif";
            			e.Tab.NavigateUrl = (string)DataBinder.Eval(e.Tab.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadTabStrip1_TabDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TabDataBound
            			e.Tab.ImageUrl = "image" &amp; DataBinder.Eval(e.Tab.DataItem, "ID") &amp; ".gif"
            			e.Tab.NavigateUrl = CStr(DataBinder.Eval(e.Tab.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTabStrip.TabClick">
            <summary>
                Occurs on the server when a tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see>
                control is clicked.
            </summary>
            <example>
            	The following example demonstrates how to use the <b>TabClick</b> event to determine the clicked tab.
            	<code lang="CS">
            		protected void RadTabStrip1_TabClick(object sender, Telerik.Web.UI.RadTabStripEventArgs e)
            		{
            			Response.Write("Clicked tab is " + e.Tab.Text);
            		}
            	</code>
            	<code lang="VB">
            		Sub RadTabStrip1_TabClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TabClick
            			Response.Write("Clicked tab is " &amp; e.Tab.Text)
            		End Sub		
            	</code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBar">
            <summary>
            RadToolBar control class.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IRadToolBarItemContainer">
            <summary>
                Defines properties that toolbar item container (<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>)
            	should implement
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarItemContainer.Items">
            <summary>Gets the collection of child items.</summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see> that represents the child
                items.
            </value>
            <remarks>
            Use this property to retrieve the child items. You can also use it to
            programmatically add or remove items.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.LoadContentFile(System.String)">
            <summary>
            Populates the <strong>RadToolBar</strong> control from external XML file.
            </summary>
            <remarks>
            The newly added items will be appended after any existing ones.
            </remarks>
            <example>
                The following example demonstrates how to populate <strong>RadToolBar</strong> control
                from XML file. 
                <code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                {
                    RadToolBar1.LoadContentFile("~/ToolBarData.xml");
                }
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(sender As Object, e As EventArgs) Handles MyBase.Load
                If Not Page.IsPostBack Then
                    RadToolBar1.LoadContentFile("~/ToolBarData.xml")
                End If
            End Sub
                </code>
            </example>
            <param name="xmlFileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.GetAllItems">
            <summary>
            	Gets a linear list of all toolbar items in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <returns>
            	An <see cref="T:System.Collections.Generic.IList`1">IList</see> object containing 
            	all items in the current RadToolBar control.
            </returns>		
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.GetGroupButtons(System.String)">
            <summary>
            	Gets a linear list of all toolbar buttons in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control,
            	which belong to the specified group
            </summary>
            <param name="group">The name of the group to search for.</param>
            <returns>An <see cref="T:System.Collections.Generic.IList`1">IList</see> object containing 
            	all the buttons in the current RadToolBar control, which belong to the specified group.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.GetCheckedGroupButton(System.String)">
            <summary>
            	Gets the checked button which belongs to the specified group in the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control
            </summary>
            <param name="group">The name of the group to search for.</param>
            <returns>A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object which
            	CheckOnClick and Checked properties are set to <strong>true</strong>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItemByText(System.String)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> whose <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> whose <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> whose <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> whose <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItemByValue(System.String)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItemByUrl(System.String)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.NavigateUrl">NavigateUrl</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> which
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.NavigateUrl">NavigateUrl</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="url">The url to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindButtonByCommandName(System.String)">
            <summary>
                Searches the <strong>RadToolBar</strong> control for the first
                <see cref="T:Telerik.Web.UI.IRadToolBarButton">IRadToolBarButton</see>
            	<see cref="P:Telerik.Web.UI.IRadToolBarButton.CommandName">CommandName</see>
            	property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.IRadToolBarButton">IRadToolBarButton</see> which
            	<see cref="P:Telerik.Web.UI.IRadToolBarButton.CommandName">CommandName</see>
            	property is equal to the specified value. If an item is not found, null
            	(Nothing in Visual Basic) is returned.
            </returns>
            <param name="commandName">The commandName to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBar.FindItem(System.Predicate{Telerik.Web.UI.RadToolBarItem})">
            <summary>
            Returns  the first <strong>RadToolBarItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadToolBar1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadToolBarItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadToolBar1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadToolBarItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding an item, removing an item, changing an item's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<item>adding a new item</item>
            			<item>removing existing item</item>
            			<item>clearing the children of an item or the control itself</item>
            			<item>changing a property of the item</item>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadToolBarItem&gt; operation in RadToolBar1.ClientChanges)
            		{
            			RadToolBarItem item = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//An item has been inserted - operation.Item contains the inserted item
            				break;
            				case ClientOperationType.Remove:
            					//An item has been inserted - operation.Item contains the removed item. 
                             //Keep in mind the item has been removed from the toolbar.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadToolBarItem&gt; update = operation as UpdateClientOperation&lt;RadToolBarItem&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is null then the root items have been removed.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadToolBarItem) In RadToolBar1.ClientChanges
            				Dim item As RadToolBarItem = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'An item has been inserted - operation.Item contains the inserted item
            					Exit Select
            					Case ClientOperationType.Remove
            						'An item has been inserted - operation.Item contains the removed item. 
            						'Keep in mind the item has been removed from the toolbar.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadToolBarItem) = TryCast(operation, UpdateClientOperation(Of RadToolBarItem))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						'All children of have been removed - operation.Item contains the parent item whose children have been removed. If operation.Item is Nothing then the root items have been removed.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.Items">
            <summary>
            Gets a collection of <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> objects representing
            the individual items within the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see> that contains a collection of
            <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> objects representing
            the individual items within the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>.
            </value>
            <remarks>
            Use the Items collection to programmatically control the items in the
            <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </remarks>
            <example>
                The following example demonstrates how to declare a <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
            	with different items.
                <para class="sourcecode">
            		&lt;telerik:RadToolBar ID="RadToolBar1" runat="server"&gt;
            			&lt;Items&gt;
            				&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/CreateNew.gif"
            					Text="Create new" CommandName="CreateNew"/&gt;
            				&lt;telerik:RadToolBarButton IsSeparator="true" /&gt;
            				&lt;telerik:RadToolBarDropDown ImageUrl="~/ToolbarImages/Manage.gif" Text="Manage"&gt;
            					&lt;Buttons&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolbarImages/ManageUsers.gif"
            							Text="Users" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolbarImages/ManageOrders.gif"
            							Text="Orders" /&gt;
            					&lt;/Buttons&gt;
            				&lt;/telerik:RadToolBarDropDown&gt;
            				&lt;telerik:RadToolBarSplitButton ImageUrl="~/ToolBarImages/RegisterPurchase.gif"
            					Text="Register Purchase"&gt;
            					&lt;Buttons&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterCachePurchase.gif"
            							Text="Cache Purchase" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterCheckPurchase.gif"
            							Text="Check Purchase" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterDirectBankPurchase.gif"
            							Text="Bank Purchase" /&gt;
            					&lt;/Buttons&gt;
            				&lt;/telerik:RadToolBarSplitButton&gt;
            			&lt;/Items&gt;
            		&lt;/telerik:RadToolBar&gt;
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.Orientation">
            <summary>
            Gets or sets the direction in which to render the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <value>
            One of the Orientation enumeration values. The default is Orientation.Horizontal.
            </value>
            <remarks>
            Use the Orientation property to specify the direction in which to render the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
            control. The following table lists the available directions.
            	<para>
            		<list type="table">
            			<item>
            				<term>Orientation</term>
            				<description>Description</description>
            			</item>
            			<item>
            				<term><strong>Orientation.Horizontal</strong></term>
            				<description>The <strong>RadToolBar</strong> control is rendered horizontally.</description>
            			</item>
            			<item>
            				<term><strong>Orientation.Vertical</strong></term>
            				<description>The <strong>RadToolBar</strong> control is rendered vertically.</description>
            			</item>
            		</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the Orientation property
            	to display a vertical <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>.
                <para class="sourcecode">
            		&lt;telerik:RadToolBar ID="RadToolBar1" runat="server"&gt;
            			&lt;Items&gt;
            				&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/CreateNew.gif"
            					Text="Create new" CommandName="CreateNew"/&gt;
            				&lt;telerik:RadToolBarButton IsSeparator="true" /&gt;
            				&lt;telerik:RadToolBarDropDown ImageUrl="~/ToolbarImages/Manage.gif" Text="Manage"&gt;
            					&lt;Buttons&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolbarImages/ManageUsers.gif"
            							Text="Users" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolbarImages/ManageOrders.gif"
            							Text="Orders" /&gt;
            					&lt;/Buttons&gt;
            				&lt;/telerik:RadToolBarDropDown&gt;
            				&lt;telerik:RadToolBarSplitButton ImageUrl="~/ToolBarImages/RegisterPurchase.gif"
            					Text="Register Purchase"&gt;
            					&lt;Buttons&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterCachePurchase.gif"
            							Text="Cache Purchase" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterCheckPurchase.gif"
            							Text="Check Purchase" /&gt;
            						&lt;telerik:RadToolBarButton ImageUrl="~/ToolBarImages/RegisterDirectBankPurchase.gif"
            							Text="Bank Purchase" /&gt;
            					&lt;/Buttons&gt;
            				&lt;/telerik:RadToolBarSplitButton&gt;
            			&lt;/Items&gt;
            		&lt;/telerik:RadToolBar&gt;
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.ExpandAnimation">
            <summary>Gets the settings for the animation played when a dropdown opens.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                expand animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>ExpandAnimation</strong> property to customize the expand
                    animation of the <strong>RadToolBar</strong> dropdown items -
            		<see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> and
            		<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> and
                    the <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> of the expand animation.
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the collapse animation you can use the
                    <see cref="P:Telerik.Web.UI.RadToolBar.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>ExpandAnimation</strong>
                of the <strong>RadToolBar</strong> dropdown items.
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadToolBar ID="RadToolBar1" runat="server"&gt;</para>
            		<para><strong>&lt;ExpandAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadToolBarDropDown Text="Insert Html Element" &gt;</para>
            		<para>	&lt;Buttons&gt;</para>
            		<para>		&lt;telerik:RadToolBarButton Text="Image" /&gt;</para>
            		<para>		&lt;telerik:RadToolBarButton Text="Editable Div element" /&gt;</para>
            		<para>	&lt;/Buttons&gt;</para>
            		<para>&lt;/telerik:RadToolBarDropDown&gt;</para>
            		<para>&lt;telerik:RadToolBarSplitButton Text="Insert Form Element" &gt;</para>
            		<para>&lt;Buttons&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="Button" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="TextBox" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="TextArea" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="CheckBox" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="RadioButton" /&gt;</para>
            		<para>&lt;/Buttons&gt;</para>
            		<para>&lt;/telerik:RadToolBarSplitButton&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadToolBar&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadToolBar1.ExpandAnimation.Type = AnimationType.Linear;
                RadToolBar1.ExpandAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadToolBar1.ExpandAnimation.Type = AnimationType.Linear
                RadToolBar1.ExpandAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.CollapseAnimation">
            <summary>Gets the settings for the animation played when a dropdown closes.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                collapse animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>CollapseAnimation</strong> property to customize the collapse
                    animation of the <strong>RadToolBar</strong> dropdown items -
            		<see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> and
            		<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> and
                    the <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see> of the collapse animation.
                    To disable collapse animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the expand animation you can use the
                    <see cref="P:Telerik.Web.UI.RadToolBar.ExpandAnimation">ExpandAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>CollapseAnimation</strong>
                of the <strong>RadToolBar</strong> dropdown items.
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadToolBar ID="RadToolBar1" runat="server"&gt;</para>
            		<para><strong>&lt;CollapseAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Items&gt;</para>
            		<para>&lt;telerik:RadToolBarDropDown Text="Insert Html Element" &gt;</para>
            		<para>	&lt;Buttons&gt;</para>
            		<para>		&lt;telerik:RadToolBarButton Text="Image" /&gt;</para>
            		<para>		&lt;telerik:RadToolBarButton Text="Editable Div element" /&gt;</para>
            		<para>	&lt;/Buttons&gt;</para>
            		<para>&lt;/telerik:RadToolBarDropDown&gt;</para>
            		<para>&lt;telerik:RadToolBarSplitButton Text="Insert Form Element" &gt;</para>
            		<para>&lt;Buttons&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="Button" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="TextBox" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="TextArea" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="CheckBox" /&gt;</para>
            		<para>	&lt;telerik:RadToolBarButton Text="RadioButton" /&gt;</para>
            		<para>&lt;/Buttons&gt;</para>
            		<para>&lt;/telerik:RadToolBarSplitButton&gt;</para>
            		<para>&lt;/Items&gt;</para>
            		<para>&lt;/telerik:RadToolBar&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadToolBar1.CollapseAnimation.Type = AnimationType.Linear;
                RadToolBar1.CollapseAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadToolBar1.CollapseAnimation.Type = AnimationType.Linear
                RadToolBar1.CollapseAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.ValidationGroup">
            <summary>
            	<para>Gets or sets the name of the validation group to which this validation
                control belongs.</para>
            </summary>
            <value>
            The name of the validation group to which this validation control belongs. The
            default is an empty string (""), which indicates that this property is not set.
            </value>
            <remarks>
                This property works only when <see cref="P:Telerik.Web.UI.RadToolBar.CausesValidation">CausesValidation</see>
                is set to true.
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when a button item
                from the <strong>RadToolBar</strong> control is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when a tab from the
            	tabstrip control is clicked. The default value is an empty string (""), which causes
            	the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when a button item within
            the <strong>RadToolBar</strong> control is clicked.
            </summary>
            <value>
            	<strong>true</strong> if validation is performed when a button item is clicked;
            otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
            <remarks>
            	<para>By default, page validation is performed when a button item is clicked. Page
                validation determines whether the input controls associated with a validation
                control on the page all pass the validation rules specified by the validation
                control. You can specify or determine whether validation is performed on both the
                client and the server when a tab is clicked by using the <b>CausesValidation</b>
                property. To prevent validation from being performed, set the
                <b>CausesValidation</b> property to <b>false</b>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.AutoPostBack">
            <summary>
            	Gets or sets a value indicating whether button items should postback when clicked.
            </summary>
            <value>
            	<c>True</c> if button items should postback; otherwise <c>false</c>. The default
            	value is <strong>false</strong>.
            </value>
            <remarks>
            	RadToolBar will postback provided one of the following conditions is met:
            	<list type="bullet">
            		<item>
            			The <see cref="P:Telerik.Web.UI.RadToolBar.AutoPostBack">AutoPostBack</see> property is set to <c>true</c>.
            		</item>
            		<item>
            			The user has subscribed to the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonClick">ButtonClick</see> event.
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.EnableRoundedCorners">
            <summary>
            Gets or sets a value indicating whether child items should have rounded corners.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have rounded corners; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.EnableShadows">
            <summary>
            Gets or sets a value indicating whether child items should have shadows.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have shadows; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.EnableImageSprites">
            <summary>
            Gets or sets a value indicating whether item images should have sprite support.
            </summary>
            <value>
            	<strong>True</strong> if the child items should have sprite support; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientLoad">
            <summary>
            Gets or sets the name of the javascript function called when the control is fully
            initialized on the client side.
            </summary>
            <value>
            A string specifying the name of the javascript function called when the control
            is fully initialized on the client side. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientLoad</strong> property to specify a JavaScript
                function that is executed after the control is initialized on the client side.
                <font color="black">A single parameter is passed to the handler, which is the
                client-side RadToolBar object.</font></para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLoad</strong>
                property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>onClientToolBarLoad</strong>(toolBar, eventArgs)<br/>
                    {<br/>
            			alert(toolBar.get_id() + " is loaded.");<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientButtonClicking="onButtonClicking"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Save"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Load"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Apply Color (Red)"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Red"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Yellow"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Blue"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientButtonClicking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just
            prior to clicking a toolbar button item (RadToolBarButton or RadToolBarSplitButton).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonClicking</strong> property to specify a
                JavaScript function that will be executed prior to button item clicking - either by
                left-clicking it with the mouse or hitting enter after tabbing to that button. You can
                cancel that event (prevent button clicking) by seting the cancel property of the event argument to <c>true</c>.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with three properties
                        <ul>
            				<li>item - the instance of the button item being clicked</li>
            				<li>cancel - whether to cancel the event</li>
            				<li>domEvent - the reference to the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientButtonClicking</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientButtonClicking</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var button = eventArgs.get_item();<br/>
            			<br/>
            			alert("You are clicking the '" + button.get_text() + "' button in the '" + toolBar.get_id() +
                    "' toolBar.");<br/>
            			<br/>
            			if (button.get_text() == "Right")<br/>
            			{<br/>
            				alert("Right alignment is not available");<br/>
            				<strong>eventArgs.set_cancel(true);</strong><br/>
            			}<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientButtonClicking="clientButtonClicking"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientButtonClicked">
            <summary>
            	Gets or sets a value indicating the client-side event handler that is called
                after clicking a button item (RadToolBarButton or RadToolBarSplitButton).
            </summary>
            <value>
            	A string specifying the name of the JavaScript function that will handle the
            	event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientButtonClicked</strong> property to specify a JavaScript
                function that will be executed after a button is clicked - either by left-clicking it
                with the mouse or hitting enter after tabbing to that button item.</para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with two properties
                        <ul>
            				<li>item - the instance of the clicked button</li>
            				<li>domEvent - the reference to the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientButtonClicked</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientButtonClicked</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var button = eventArgs.get_item();<br/>
            			<br/>
            			alert(String.format("You clicked the '{0}' button in the '{1}' toolBar.",
            				button.get_text(), toolBar.get_id()));<br/>
                    }<br/>
                    &lt;/script&gt;</para>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientButtonClicked="clientButtonClicked"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientDropDownOpening">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just
            prior to opening a toolbar dropdown item (RadToolBarDropDown or RadToolBarSplitButton).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientDropDownOpening</strong> property to specify a
                JavaScript function that will be executed prior to dropdown item opening - either by
                left-clicking it with the mouse or hitting the down arrow after tabbing to that item. You can
                cancel that event (prevent dropdown opening) by seting the cancel property of the event argument to <c>true</c>.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with three properties
                        <ul>
            				<li>item - the instance of the dropdown item being opened</li>
            				<li>cancel - whether to cancel the event</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as dropDownItem.showDropDown();)</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientDropDownOpening</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientDropDownOpening</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var dropDownItem = eventArgs.get_item();<br/>
            			<br/>
            			alert("You are opening the '" + dropDownItem.get_text() + "' dropDown in the '" + toolBar.get_id() +
                    "' toolBar.");<br/>
            			<br/>
            			if (dropDownItem.get_text() == "Align")<br/>
            			{<br/>
            				alert("Alignment is not available");<br/>
            				<strong>eventArgs.set_cancel(true);</strong><br/>
            			}<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientDropDownOpening="clientDropDownOpening"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientDropDownOpened">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called after a
            toolbar dropdown item (RadToolBarDropDown or RadToolBarSplitButton) is opened.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientDropDownOpened</strong> property to specify a
                JavaScript function that will be executed  after a toolbar dropdown item
            	is opened - either by left-clicking it with the mouse or hitting the down arrow
            	after tabbing to that item.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with two properties
                        <ul>
            				<li>item - the instance of the dropdown item which is opened</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as dropDownItem.showDropDown())</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientDropDownOpened</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientDropDownOpened</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var dropDownItem = eventArgs.get_item();<br/>
            			<br/>
            			alert("You just opened the '" + dropDownItem.get_text() + "' dropDown in the '" + toolBar.get_id() +
                    "' toolBar.");<br/>
            			<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientDropDownOpened="clientDropDownOpened"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientDropDownClosing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just
            prior to closing a toolbar dropdown item (RadToolBarDropDown or RadToolBarSplitButton).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientDropDownClosing</strong> property to specify a
                JavaScript function that will be executed prior to dropdown item closing - either by
                left-clicking an open dropdown with the mouse, hitting the ESC key when the dropdown or
            	a button in it is focused, or clicking a non-checkable button in the dropdown. You can
                cancel that event (prevent dropdown closing) by seting the cancel property of the event argument to <c>true</c>.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with three properties
                        <ul>
            				<li>item - the instance of the dropdown item being closed</li>
            				<li>cancel - whether to cancel the event</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as dropDownItem.hideDropDown())</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientDropDownClosing</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientDropDownClosing</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var dropDownItem = eventArgs.get_item();<br/>
            			<br/>
            			alert("You are about to close the '" + dropDownItem.get_text() + "' dropDown in the '" + toolBar.get_id() +
                    "' toolBar.");<br/>
            			<br/>
            			if (dropDownItem.get_text() == "Align")<br/>
            			{<br/>
            				alert("You cannot close the Align dropdown!");<br/>
            				<strong>eventArgs.set_cancel(true);</strong><br/>
            			}<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientDropDownClosing="clientDropDownClosing"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientDropDownClosed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called after a
            toolbar dropdown item (RadToolBarDropDown or RadToolBarSplitButton) is closed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientDropDownClosed</strong> property to specify a
                JavaScript function that will be executed  after a toolbar dropdown item
            	is closed - either by left-clicking an open dropdown with the mouse, hitting
            	the ESC key when the dropdown or a button in it is focused, or clicking a
            	non-checkable button in the dropdown.
            <para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with two properties
                        <ul>
            				<li>item - the instance of the dropdown item which is closed</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as dropDownItem.hideDropDown())</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientDropDownClosed</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientDropDownClosed</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var dropDownItem = eventArgs.get_item();<br/>
            			<br/>
            			alert("You just closed the '" + dropDownItem.get_text() + "' dropDown in the '" + toolBar.get_id() +
                    "' toolBar.");<br/>
            			<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientDropDownClosed="clientDropDownClosed"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Right"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientContextMenu">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called
            before the browser context menu shows (after right-clicking an item).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientContextMenu</strong> property to specify a JavaScript
                function that will be executed before the context menu shows after right clicking an
                item.</para>
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>item - the instance of the selected toolbar item</li>
            				<li>domEvent - the reference to the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientContextMenu</strong> property.
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>onContextMenuHandler</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var item = eventArgs.get_item();<br/>
            			<br/>
            			alert(String.format("You have right-clicked the {0} item in the {1} toolBar.", item.get_text(), toolBar.get_id());<br/>
                    }<br/>
                    &lt;/script&gt;</para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientContextMenu="onContextMenuHandler"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Bold"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Italic"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Underline"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientMouseOver">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse hovers an item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMouseOver</strong> property to specify a JavaScript
                function that is called when the user hovers an item with the mouse.</para>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object);</item>
            		<item>
                        eventArgs with two properties 
                        <ul>
            				<li>item - the instance of the toolbar item that is being hovered</li>
            				<li>domEvent - the reference to the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientMouseOver</strong> property. 
                <para class="sourcecode">
            		&lt;script language="javascript"&gt;<br/>
                    function <strong>onClientMouseOver</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var item = eventArgs.get_item();<br/>
            			var domEvent = eventArgs.get_domEvent();<br/>
            			<br/>
            			alert(String.format("You have just moved over the {0} item in the {1} toolBar", item.get_text(), toolBar.get_id());<br/>
            			alert(String.format("Mouse coordinates: \n\nx = {0};\ny = {1}", domEvent.clientX, domEvent.clientY));<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
            		&lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientMouseOver="onClientMouseOver"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Bold"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Italic"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Underline"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientMouseOut">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the mouse leaves an item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientMouseOut</strong> property to specify a JavaScript
                function that is executed <font color="black">whenever the user moves the mouse
                away from a particular item in the RadToolBar control.</font></para>
            	<para><font color="black">Two parameters are passed to the handler:</font></para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object);</item>
            		<item>
                        eventArgs with two properties:
            			<ul>
            				<li>item - the instance of the item which the mouse is moving
                            away from;</li>
            				<li>domEvent - the reference to the browser DOM event</li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientMouseOut</strong>
                property.
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>onClientMouseOut</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var item = eventArgs.get_item();<br/>
            			var domEvent = eventArgs.get_domEvent();
            			alert(String.format("You have just moved out of '{0}' item in the {1} toolBar.",
            				item.get_text(), toolBar.get_id()));<br/>
            			alert(String.format("Mouse coordinates: \n\nx = {0}\ny = {1}",
            				domEvent.clientX, domEvent.clientY));<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            		&lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientMouseOut="onClientMouseOut"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Bold"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Italic"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="Underline"&gt;&lt;/telerik:RadToolBarButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;
            	</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientCheckedStateChanging">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just
            prior to changing the state of a checkable <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientCheckedStateChanging</strong> property to specify a
                JavaScript function that will be executed prior to button checked state changing - either by
                left-clicking a checkable button or pressing the ENTER key after tabbing to that button. You can
                cancel that event (prevent button checked state changing) by seting the cancel property of the
            	event argument to <c>true</c>.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with three properties
                        <ul>
            				<li>item - the instance of the button which checked state is being changed</li>
            				<li>cancel - whether to cancel the event</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as button.toggle())</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientCheckedStateChanging</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientCheckedStateChanging</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var button = eventArgs.get_item();<br/>
            			<br/>
            			alert(String.format("You are about to change the checked state of the '{0}' button in the '{1}' toolBar.",
            				button.get_text(), toolBar.get_id()));<br/>
            			<br/>
            			if (item.get_text() == "Left" &amp;&amp; item.get_group() == "Align")<br/>
            			{<br/>
            				alert("You cannot change the checked state of the 'Align Left' button!");<br/>
            				<strong>eventArgs.set_cancel(true);</strong><br/>
            			}<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientCheckedStateChanging="clientCheckedStateChanging"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Reset"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBar.OnClientCheckedStateChanged">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called after a
            <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> is checked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Use the <strong>OnClientCheckedStateChanged</strong> property to specify a
                JavaScript function that will be executed  after a toolbar dropdown button
            	is checked - either by left-clicking a checkable button or pressing the ENTER
            	key after tabbing to that button.
            	<para>Two parameters are passed to the handler</para>
            	<list type="bullet">
            		<item>sender (the client-side RadToolBar object)</item>
            		<item>
                        eventArgs with two properties
                        <ul>
            				<li>item - the instance of the button which is checked</li>
            				<li>domEvent - the reference to the browser DOM event (null if the event was initiated by
            		calling a client-side method such as button.toggle())</li>
            			</ul>
            		</item>
            	</list>
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientCheckedStateChanged</strong> property. 
                <para>
            		<para class="sourcecode">&lt;script language="javascript"&gt;<br/>
                    function <strong>clientCheckedStateChanged</strong>(sender, eventArgs)<br/>
                    {<br/>
            			var toolBar = sender;<br/>
            			var button = eventArgs.get_item();<br/>
            			<br/>
            			alert(String.format("You just changed the checked state of the '{0}' button in the '{1}' toolBar.",
            				button.get_text(), toolBar.get_id()));<br/>
            			<br/>
                    }<br/>
                    &lt;/script&gt;<br/>
            			<br/>
                    &lt;telerik:RadToolBar id="RadToolBar1" runat="server"
                    <strong>OnClientCheckedStateChanged="clientCheckedStateChanged"</strong>&gt;<br/>
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            			&lt;telerik:RadToolBarDropDown Text="Align"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarDropDown&gt;<br/>
            			&lt;telerik:RadToolBarSplitButton Text="Reset"&gt;<br/>
            				&lt;Buttons&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Left" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Center" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            					&lt;telerik:RadToolBarButton Text="Right" CheckOnClick="true" Group="Align" &gt;&lt;/telerik:RadToolBarButton&gt;<br/>
            				&lt;/Buttons&gt;<br/>
            			&lt;/telerik:RadToolBarSplitButton&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadToolBar.ItemCreated">
            <summary>Occurs when a toolbar item is created.</summary>
            <remarks>
            	The ItemCreated event is raised when an item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
            	control is created, both during round-trips and at the time data is bound to the control.
            	The ItemCreated event is not raised for items which are defined inline in the page or user control.
            	<para>The ItemCreated event is commonly used to initialize item properties.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>ItemCreated</strong> event
                to set the <strong>ToolTip</strong> property of each item. 
                <code lang="CS">
            		 protected void RadToolBar1_ItemCreated(object sender, Telerik.Web.UI.RadToolBarEventArgs e)
            		 {
            		     e.Item.ToolTip = e.Item.Text;
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadToolBar1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarEventArgs) Handles RadToolBar1.ItemCreated
            		     e.Item.ToolTip = e.Item.Text
            		 End Sub
                </code>
            </example>		
        </member>
        <member name="E:Telerik.Web.UI.RadToolBar.TemplateNeeded">
            <summary>Occurs before template is being applied to the item.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the item, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for items
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property the nodes. 
                <code lang="CS">
            		 protected void RadToolBar1_TemplateNeeded(object sender, Telerik.Web.UI.RadToolBarEventArgs e)
            		 {
            		    string value = e.Item.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              textBoxTemplate.InstantiateIn(e.Item);        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadToolBar1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarEventArgs) Handles RadToolBar1.TemplateNeeded
                         Dim value As String = e.Item.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 textBoxTemplate.InstantiateIn(e.Item)
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">
            <summary>Occurs when a button is data bound.</summary>
            <remarks>
            	<para>
                    The <strong>ButtonDataBound</strong> event is raised for each button upon
                    databinding. You can retrieve the button being bound using the event arguments.
                    The <strong>DataItem</strong> associated with the button can be retrieved using
                    the <see cref="P:Telerik.Web.UI.RadToolBarButton.DataItem">DataItem</see> property.
                </para>
            	<para>The <strong>ButtonDataBound</strong> event is often used in scenarios when you
                want to perform additional mapping of fields from the DataItem to their respective
                properties in the RadToolBarButton class.</para>
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadToolBarButton">button</see> properties using the <strong>ButtonDataBound</strong>
            	event.
            	<code lang="CS">
            		protected void RadToolBar1_ButtonDataBound(object sender, Telerik.Web.UI.RadToolBarButtonEventArgs e)
            		{
            			e.Button.ImageUrl = "~/ToolBarImages/tool" + (string)DataBinder.Eval(e.Button.DataItem, "Text") + ".gif";
            			e.Button.NavigateUrl = (string)DataBinder.Eval(e.Button.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadToolBar1_ButtonDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarButtonEventArgs) Handles RadToolBar1.ButtonDataBound
            			e.Button.ImageUrl = "~/ToolBarImages/tool" &amp; CStr(DataBinder.Eval(e.Button.DataItem, "Text")) &amp; ".gif"
            			e.Button.NavigateUrl = CStr(DataBinder.Eval(e.Button.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadToolBar.ButtonClick">
            <summary>
                Occurs on the server when a button or in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
                control is clicked.
            </summary>
            <example>
            	The following example demonstrates how to use the <b>ButtonClick</b> event to
            	determine the clicked button.
            	<code lang="CS">
            		protected void RadToolBar1_ButtonClick(object sender, Telerik.Web.UI.RadToolBarButtonEventArgs e)
            		{
            			Label1.Text = "Clicked button is " + e.Item.Text;
            		}
            	</code>
            	<code lang="VB">
            		Sub RadToolBar1_ButtonClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarButtonEventArgs) Handles RadToolBar1.ButtonClick
            			Label1.Text = "Clicked button is " &amp; e.Item.Text;
            		End Sub
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.TreeListExportingEventArgs.ExportOutput">
            <summary>
            This property returns the generated export content just before it sent to the browser
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarItem.ItemType">
            <summary>
            Gets the type of the RibbonBarItem. Usefull when iterating through the Items collection of RibbonBarGroup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarTemplateItem.Template">
            <summary>Gets or sets the template for the item.</summary>
            <value>
            	<para>
            	An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            	(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            	</para>
            </value>
            <example>
            	<para>The following template demonstrates how to add a Calendar control in a RibbonBarTemplateItem</para>
                <code lang="CS">
            		templateItem.Template = new TextBoxTemplate();
                </code>
            	<code lang="VB">
            		templateItem.Template = new TextBoxTemplate()
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RatingEventArgs">
            <summary>
            Represents the argument data passed to the event handler of the ItemCreated and ItemDataBound events of RadRating.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RatingEventArgs.Item">
            <summary>
            Gets/Sets the current RadRatingItem.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RatingItemBinding">
            <summary>
            Represents an object that provides the data binding information for the Items of the Rating control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RatingItemBinding.ValueField">
            <summary>
            Gets/Sets the field of the data source that provides the value content (Value property of the Rating item) of the Rating items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RatingItemBinding.ToolTipField">
            <summary>
            Gets/Sets the field of the data source that provides the ToolTip content (ToolTip property of the Rating item) of the Rating items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RatingItemBinding.ToolTipFormatString">
            <summary>
            Gets/Sets the formatting string used to control how data bound to the RatingItem's ToolTip is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs.Index">
            <summary>
            Gets the index of the clicked toggle button in its containing toggle list.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs.ToggleList">
            <summary>
            Gets the parent toggle list of the clicked toggle button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs.Group">
            <summary>
            Gets the parent group of the clicked toggle button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs.ToggleButton">
            <summary>
            The <see cref="T:Telerik.Web.UI.RibbonBarToggleButton"/> that has been toggled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleListToggleEventArgs.ToggleListButtons">
            <summary>
            An <see cref="T:System.Array"/> with all toggle buttons in the parent toggle list.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarToggleList.ReadXml(System.Xml.XmlReader)">
            <summary>
            	Loads the control from an XML string.
            </summary>
            <param name="reader">
            	The XmlReader from which the control will be populated.
            </param>
            <remarks>
            	Use the LoadXml method to populate the control from an XML string.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleList.ToggleButtons">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarToggleButtonCollection">RibbonBarToggleButtonCollection</see> object that contains the toggle buttons of the ToggleList.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarToggleButtonCollection">RibbonBarToggleButtonCollection</see> that contains the toggle buttons of the ToggleList. By default
            	the collection is empty (ToggleList has no ToggleButtons).
            </value>
            <remarks>
            	Use the <b>ToggleButtons</b> property to access the toggle buttons of the ToggleList. You can also use the <b>ToggleButtons</b> property to
            	manage the toggle buttons. You can add, remove or modify toggle buttons.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a toggle button inside of a ToggleList.
                <code lang="CS">
            		toggleList.ToggleButtons[0].Text = "Example";
                </code>
            	<code lang="VB">
            		toggleList.ToggleButtons(0).Text = "Example"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleList.ToggledButton">
            <summary>
            	Gets the currently toggled <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see>.
            </summary>
            <value>
                The currently toggled <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see>. When there isn't a toggle button or the 
                collection is empty, the returned result is null.
            </value>
            <remarks>
            	Use the <b>ToggledButton</b> property to access the toggled button of the ToggleList.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the toggled button.
                <code lang="CS">
            		toggleList.ToggledButton.Text = "Example";
                </code>
            	<code lang="VB">
            		toggleList.ToggledButton.Text = "Example"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonToggleEventArgs.Index">
            <summary>
            Gets the index of the clicked button in its containing group.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonToggleEventArgs.Group">
            <summary>
            Gets the group of the clicked toggle button's parent group.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonToggleEventArgs.Button">
            <summary>
            The toggle button that has been toggled.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadRibbonBarClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.RadRibbonBarClientState.Activated">
            <summary>
            Boolean property that shows whether the key hints are visile or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.ImageUrl">
            <summary>
            	Gets or sets the small (or in Clip ImageRenderingMode both small and large) image's URL of a certain item.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	used when the item has Size = RibbonBarItemSize.Small or RibbonBarItemSize.Medium, when in Dual mode and all sizes in Clip mode.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.DisabledImageUrl">
            <summary>
            	Gets or sets the small (or in Clip ImageRenderingMode both small and large) disabled image's URL of a certain item.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>DisabledImageUrl</b> property to specify a custom image that will be
            	used when the item has Size = RibbonBarItemSize.Small or RibbonBarItemSize.Medium, when in Dual mode and all sizes in Clip mode
            	and at the same time disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.ImageUrlLarge">
            <summary>
            	Gets or sets the large image's URL of a certain item.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>ImageUrlLarge</b> property to specify a custom image that will be
            	used when the item has Size = RibbonBarItemSize.Large.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.DisabledImageUrlLarge">
            <summary>
            	Gets or sets the large image's URL of a certain item for disabled state.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>DisabledImageUrlLarge</b> property to specify a custom image that will be
            	used when the item has Size = RibbonBarItemSize.Large and is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.Size">
            <summary>
            	Gets or sets the size of a certain item. This property is used to determine
            	a combination of Text, ImageUrl and ImageUrlLarge which should be displayed
            	at initial load of the RibbonBar for a specific item.
            </summary>
            <value>
            	The value is from the enum RibbonBarItemSize. The default value is
            	RibbonBarItemSize.Small.
            </value>
            <remarks>
            	Use the <b>Size</b> property to specify the item's initial size:
            	 - For small icon - RibbonBarItemSize.Small;
            	 - For small icon with text - RibbonBarItemSize.Medium;
            	 - For large icon with text - RibbonBarItemSize.Large.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.ImageRenderingMode">
            <summary>
            	Gets/sets the Image Rendering Mode, localy for the item.
            </summary>
            <value>
            	The value is from the enum RibbonBarImageRenderingMode. It depends
            	of the value of ImageRenderingMode property of RadRibbonBar.
            </value>
            <remarks>
            	In case <b>ImageRenderingMode</b> is not explicitly set (meaning RibbonBar's ImageRenderingMode is Auto), it's considered as follows:
            	    - If ImageUrl is set and ImageUrlLarge is not set - the mode is Clip;
            	    - Any other case - Dual.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.Text">
            <summary>
            	Gets or sets the text of a certain item.
            </summary>
            <value>
            	The text of an item. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text for an item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarClickableItem.ImageAltText">
            <summary>
            	Gets or sets the rendered alt text of the item's image dom element.
            </summary>
            <value>
            	alt text of an item's image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the alt text for the item's image element, when needed for accessibility.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButton.Value">
            <summary>
            Gets or sets the value property of the button.
            </summary>
            <remarks>
            You can use it to associate custom data with the button.
            </remarks>
            <example>
             This example illustrates how to use the <strong>Value</strong> property on <see cref="E:Telerik.Web.UI.RadRibbonBar.ButtonClick">ButtonClick</see> event.
            </example>
            <code lang="CS">
            protected void RadRibbonBar1_ButtonClick(object sender, RibbonBarButtonClickEventArgs e)
            {
                if (e.Button.Value == "TriggersSomeAction")
                {
                    // trigger the action
                }
            }
            </code>
            <code lang="VB">
            Protected Sub RadRibbonBar1_ButtonClick(sender As Object, e As RibbonBarButtonClickEventArgs)
            	If e.Button.Value = "TriggersSomeAction" Then
            	    ' trigger the action
            	End If
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarToggleButton.Toggled">
            <summary>
            	Property for the toggle state of the button.
            </summary>
            <value>
            	Boolean. The default value is false.
            </value>
            <remarks>
            	Use the property to get the toggle state of the button.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonStrip.Buttons">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarButtonCollection">RibbonBarButtonCollection</see> object that contains the buttons of the ButtonStrip.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarButtonCollection">RibbonBarButtonCollection</see> that contains the buttons of the ButtonStrip. By default
            	the collection is empty (ButtonStrip has no buttons).
            </value>
            <remarks>
            	Use the <b>Buttons</b> property to access the buttons of the ButtonStrip. You can also use the <b>Buttons</b> property to
            	manage the buttons. You can add, remove or modify buttons.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a button inside of a ButtonStrip.
                <code lang="CS">
            		buttonStrip.Buttons[0].Text = "Example";
                </code>
            	<code lang="VB">
            		buttonStrip.Buttons(0).Text = "Example"
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarSplitButton.GetVisibleButtons">
            <summary>
            Returns all buttons with Visible=true in the Buttons collection.
            </summary>
            <returns>A list of RibbonBarButton objects.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarSplitButton.FindButtonByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarSplitButton</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButton.Buttons">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarButtonCollection">RibbonBarButtonCollection</see> object that contains the buttons of the SplitButton.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarButtonCollection">RibbonBarButtonCollection</see> that contains the buttons of the SplitButton. By default
            	the collection is empty (SplitButton has no buttons).
            </value>
            <remarks>
            	Use the <b>Buttons</b> property to access the buttons of the SplitButton. You can also use the <b>Buttons</b> property to
            	manage the buttons. You can add, remove or modify buttons.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a button inside of a SplitButton.
                <code lang="CS">
            		splitButton.Buttons[0].Text = "Example";
                </code>
            	<code lang="VB">
            		splitButton.Buttons(0).Text = "Example"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButton.EnableButtonSelection">
            <summary>
                Determines whether button selection on button click is enabled.
            </summary>
            <value>
            	Boolean. The default value is false.
            </value>
            <remarks>
            	Use the property to enable/disable button selection. Button selection is the
            	ability to select a button from the drop-down, which becames the default action
            	for the Split Button.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButton.SelectedButtonIndex">
            <summary>
                Property allowing one to select a default action of the Split Button.
                If proper conditions are met, the text and the image of the SplitButton
                are also updated using the selected button.
            </summary>
            <value>
            	Integer. The default value is -1.
            </value>
            <remarks>
            	Use the property to select a button as a default action of the Split Button.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarLauncherClickEventArgs.Group">
            <summary>
            Gets the group, which launcher has been clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButtonClickEventArgs.Index">
            <summary>
            Gets the index of the clicked button in its containing split button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButtonClickEventArgs.SplitButton">
            <summary>
            Gets the parent split button of the clicked button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButtonClickEventArgs.Group">
            <summary>
            Gets the parent group of the clicked button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarSplitButtonClickEventArgs.Button">
            <summary>
            Gets the button that has been clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs.Index">
            <summary>
            Gets the index of the item in its parent (menu or menu item).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs.ParentItem">
            <summary>
            Gets the parent menu item of the clicked menu item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs.Menu">
            <summary>
            Gets the parent menu of the clicked menu item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs.Group">
            <summary>
            Gets the group of the clicked item's parent menu.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItemClickEventArgs.Item">
            <summary>
            Gets the menu item that has been clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonClickEventArgs.Index">
            <summary>
            Gets the index of the clicked button in its containing group.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonClickEventArgs.Group">
            <summary>
            Gets the parent group of the clicked button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarButtonClickEventArgs.Button">
            <summary>
            Gets the button that has been clicked.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarMenu.GetVisibleItems">
            <summary>
            Returns the <strong>Visible</strong> menu items.
            </summary>
            <returns>All visible items in the Menu.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarMenu.FindMenuItemByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarMenu</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> which <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> whose <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenu.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarMenuItemCollection">RibbonBarMenuItemCollection</see> object that contains the items of the Menu.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItemCollection">RibbonBarMenuItemCollection</see> that contains the items of the Menu. By default
            	the collection is empty (the Menu has no items).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the items of the Menu. You can also use the <b>Items</b> property to
            	manage the items. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the items inside the collection.
                <code lang="CS">
            		menu.Items[0].Text = "SampleMenuItemText";
                </code>
            	<code lang="VB">
            		menu.Items(0).Text = "SampleMenuItemText"
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarMenuItem.GetVisibleItems">
            <summary>
            Returns the <strong>Visible</strong> sub-items.
            </summary>
            <returns>All visible sub-items.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarMenuItem.FindMenuItemByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarMenuItem</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">sub-item</see> which <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">sub-item of the current MenuItem</see> whose <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.ParentItem">
            <summary>
            Gets the parent item of the menu item. Returns null if the parent is the menu itself.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.ImageUrl">
            <summary>
            	Gets or sets the image's URL of the item, used when it's enabled.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	used when the item is enabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.DisabledImageUrl">
            <summary>
            	Gets or sets the image's URL of the item, used when it's disabled.
            </summary>
            <value>
            	The URL to the image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>DisabledImageUrl</b> property to specify a custom image that will be
            	used when the item is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.ImageAltText">
            <summary>
            	Gets or sets the rendered alt text of the item's image dom element.
            </summary>
            <value>
            	alt text of an item's image. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the alt text for the item's image element, when needed for accessibility.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.NavigateUrl">
            <summary>
            	Gets or sets navigation URL for the item. Usually pointing to a page.
            </summary>
            <value>
            	URL. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the <b>NavigateUrl</b> property to specify a custom a url to a page
            	which should be loaded on click on the item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.Text">
            <summary>
            	Gets or sets the text of a certain item.
            </summary>
            <value>
            	The text of an item. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text for an item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.Value">
            <summary>
            Gets or sets the value property of the item.
            </summary>
            <remarks>
            You can use it to associate custom data with the item.
            </remarks>
            <example>
             This example illustrates how to use the <strong>Value</strong> property on <see cref="E:Telerik.Web.UI.RadRibbonBar.MenuItemClick">MenuItemClick</see> event.
            </example>
            <code lang="CS">
            protected void RadRibbonBar1_MenuItemClick(object sender, RibbonBarMenuItemClickEventArgs e)
            {
                if (e.Item.Value == "SpecialItem")
                {
                    // trigger an action
                }
            }
            </code>
            <code lang="VB">
            Protected Sub RadRibbonBar1_MenuItemClick(sender As Object, e As RibbonBarMenuItemClickEventArgs)
            	If e.Item.Value = "SpecialItem" Then
            	    ' trigger the action
            	End If
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarMenuItem.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarMenuItemCollection">RibbonBarMenuItemCollection</see> object that contains the sub-items of the MenuItem.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItemCollection">RibbonBarMenuItemCollection</see> that contains the sub-items of the MenuItem. By default
            	the collection is empty (the MenuItem has no sub-items).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the sub-items of the MenuItem. You can also use the <b>Items</b> property to
            	manage the items. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the items inside the collection.
                <code lang="CS">
            		menuItem.Items[0].Text = "SampleMenuItemText";
                </code>
            	<code lang="VB">
            		menuItem.Items(0).Text = "SampleMenuItemText"
                </code>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarItemSize.Small">
            <summary>
            RibbonBarItem is rendered using small image and no text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarItemSize.Medium">
            <summary>
            RibbonBarItem is rendered using small image and text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarItemSize.Large">
            <summary>
            RibbonBarItem is rendered using large image and text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarImageRenderingMode.Auto">
            <summary>
            The default value - If only ImageUrl (and not ImageUrlLarge) is set to one RibbonBarClickableItem, then Auto equals to Clip mode, if both or only ImageUrlLarge is set -> it equals Dual mode
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarImageRenderingMode.Dual">
            <summary>
            RibbonBarClickableItem's small and large images (ImageUrl and ImageUrlLarge) are in two separate image files (they are not part of a sprite)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RibbonBarImageRenderingMode.Clip">
            <summary>
            RibbonBarClickableItem's small and large images are sharing one sprite image (clip) which is assigned to their ImageUrl property
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.GetFunctionalItems">
            <summary>
            Returns all functional Items in the Group. This excludes ButtonStrips and ToggleLists.
            </summary>
            <returns>A list with functional Items.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.GetFunctionalItems(System.Boolean)">
            <summary>
            Returns functionl Items in the Group depending on their visibility.
            </summary>
            <param name="visibleOnly">Tells the method whether to filter out invisible functionl Items.</param>
            <returns>All functionl Items in the Group if <paramref name="visibleOnly"/> is flse. 
            If <paramref name="visibleOnly"/> is true, returns only the visible Items.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.GetVisibleFunctionalItems">
            <summary>
            Returns strictly the <strong>Visible</strong> functionl Items in the Group.
            </summary>
            <returns>All visible functional Items in the Group.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.GetToggleLists">
            <summary>
            Gets all RibbonBarToggleList items in the Group.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.FindButtonByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarGroup</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.FindToggleButtonByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarGroup</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a toggle button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarGroup.FindMenuItemByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarGroup</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> which <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> whose <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see> property is equal to the specifed 
            	value. If a menu item is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.Text">
            <summary>
            	Gets or sets the text of the group.
            </summary>
            <value>
            	The text of a group. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text of the group.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.Value">
            <summary>
            Gets or sets the value property of the group.
            </summary>
            <remarks>
            You can use it to associate custom data with the group.
            </remarks>
            <example>
             This example illustrates how to use the <strong>Value</strong> property on <see cref="E:Telerik.Web.UI.RadRibbonBar.ButtonClick">ButtonClick</see> event.
            </example>
            <code lang="CS">
            protected void RadRibbonBar1_ButtonClick(object sender, RibbonBarButtonClickEventArgs e)
            {
                if ((e.Button.Container as RibbonBarGroup).Value == "SpecialGroup")
                {
                    // trigger an action
                }
            }
            </code>
            <code lang="VB">
            Protected Sub RadRibbonBar1_ButtonClick(sender As Object, e As RibbonBarButtonClickEventArgs)
            	If TryCast(e.Button.Container, RibbonBarGroup).Value = "SpecialGroup" Then
            	    ' trigger the action
            	End If
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.EnableLauncher">
            <summary>
                Determines if the group's launcher will be available or not.
            </summary>
            <value>
            	Boolean. The default value is true.
            </value>
            <remarks>
            	Use the property to enable/disable the group's launcher button.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.CollapsedImageUrl">
            <summary>
            	Gets or sets the url to an image displayed when the group is collapsed.
            </summary>
            <value>
            	URL. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the image for a collapsed group.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarItemCollection">RibbonBarItemCollection</see> object that contains the items of the group.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarItemCollection">RibbonBarItemCollection</see> that contains the items of the group. By default
            	the collection is empty (the group has no items).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the items of the group. You can also use the <b>Items</b> property to
            	manage the items. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the items inside the collection.
                <code lang="CS">
            		group.Items[0].Enabled = true;
                </code>
            	<code lang="VB">
            		group.Items(0).Enabled = True
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarGroup.Tab">
            <summary>
            	Gets a reference to the RibbonBarTab instance holding this group.
            </summary>
            <value>
            	RibbonBarTab instance. If not set, the returned is null.
            </value>
            <remarks>
            	Use the property to get the RibbonBarTab holding the group.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarTab.GetVisibleGroups">
            <summary>
            Returns the <strong>Visible</strong> groups in the tab.
            </summary>
            <returns>All visible groups inside this tab.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarTab.FindGroupByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarTab</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarGroup">RibbonBarGroup</see> which <see cref="P:Telerik.Web.UI.RibbonBarGroup.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarGroup">RibbonBarGroup</see> whose <see cref="P:Telerik.Web.UI.RibbonBarGroup.Value">Value</see> property is equal to the specifed 
            	value. If a group is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarTab.FindButtonByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarTab</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarButton">RibbonBarButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarTab.FindToggleButtonByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarTab</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> which <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarToggleButton">RibbonBarToggleButton</see> whose <see cref="P:Telerik.Web.UI.RibbonBarButton.Value">Value</see> property is equal to the specifed 
            	value. If a toggle button is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RibbonBarTab.FindMenuItemByValue(System.String)">
            <summary>
                Searches the <strong>RibbonBarTab</strong> for the first
                <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> which <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see>
                property is equal to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RibbonBarMenuItem">RibbonBarMenuItem</see> whose <see cref="P:Telerik.Web.UI.RibbonBarMenuItem.Value">Value</see> property is equal to the specifed 
            	value. If a menu item is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The Value to search for.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarTab.Text">
            <summary>
            	Gets or sets the text of the tab.
            </summary>
            <value>
            	The text of the tab. The default value is empty
            	string.
            </value>
            <remarks>
            	Use the property to set the displayed text of the tab.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarTab.Value">
            <summary>
            Gets or sets the value property of the tab.
            </summary>
            <remarks>
            You can use it to associate custom data with the tab.
            </remarks>
            <example>
             This example illustrates how to use the <strong>Value</strong> property on <see cref="E:Telerik.Web.UI.RadRibbonBar.ButtonClick">ButtonClick</see> event.
            </example>
            <code lang="CS">
            protected void RadRibbonBar1_ButtonClick(object sender, RibbonBarButtonClickEventArgs e)
            {
                if ((e.Button.Container as RibbonBarGroup).Tab.Value == "SpecialTab")
                {
                    // trigger an action
                }
            }
            </code>
            <code lang="VB">
            Protected Sub RadRibbonBar1_ButtonClick(sender As Object, e As RibbonBarButtonClickEventArgs)
            	If TryCast(e.Button.Container, RibbonBarGroup).Tab.Value = "SpecialTab" Then
            	    ' trigger the action
            	End If
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RibbonBarTab.Groups">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RibbonBarGroupCollection">RibbonBarGroupCollection</see> object that contains the groups of the tab.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RibbonBarGroupCollection">RibbonBarGroupCollection</see> that contains the groups of the tab. By default
            	the collection is empty (the tab has no groups).
            </value>
            <remarks>
            	Use the <b>Groups</b> property to access the groups of the tab. You can also use the <b>Groups</b> property to
            	manage the items. You can add, remove or modify groups from the <b>Groups</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of the groups inside the collection.
                <code lang="CS">
            		tab.Groups[0].Text = "ExampleGroupText";
                </code>
            	<code lang="VB">
            		tab.Groups(0).Text = "ExampleGroupText"
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.SliderItemBinding">
            <summary>
            Represents an object that provides the data binding information for the Items of the Slider control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SliderItemBinding.ValueField">
            <summary>
            Gets/Sets the field of the data source that provides the value content (Value property of the Slider item) of the Slider items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SliderItemBinding.ToolTipField">
            <summary>
            Gets/Sets the field of the data source that provides the ToolTip content (ToolTip property of the Slider item) of the Slider items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SliderItemBinding.TextField">
            <summary>
            Gets/Sets the field of the data source that provides the Text content (Text property of the Slider item) of the Slider items.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ScriptEntry">
            <summary>
            Represents a script reference - including tracking its loaded state in the client browser
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry.CombinedScriptsParamName">
            <summary>
            Request param name for the serialized combined scripts string
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry.HiddenFieldParamName">
            <summary>
            Request param name for the hidden field name
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry._assembly">
            <summary>
            Containing Assembly
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry._name">
            <summary>
            Script name
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry._culture">
            <summary>
            Culture to render the script in
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ScriptEntry._loadedAssembly">
            <summary>
            Reference to the Assembly object (if loaded by LoadAssembly)
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntry.GetScript">
            <summary>
            Gets the script corresponding to the object
            </summary>
            <returns>script text</returns>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntry.LoadAssembly">
            <summary>
            Loads the associated Assembly
            </summary>
            <returns>Assembly reference</returns>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntry.Equals(System.Object)">
            <summary>
            Equals override to compare two ScriptEntry objects
            </summary>
            <param name="obj">comparison object</param>
            <returns>true iff both ScriptEntries represent the same script</returns>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntry.GetHashCode">
            <summary>
            GetHashCode override corresponding to the Equals override above
            </summary>
            <returns>hash code for the object</returns>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntry.Deserialize(System.String)">
            <summary>
            Deserialize a list of ScriptEntries
            </summary>
            <remarks>
            Serialized list looks like:
            ;Assembly1.dll Version=1:Culture:MVID1:ScriptName1Hash:ScriptName2Hash;
            Assembly2.dll Version=2:Culture:MVID1:ScriptName3Hash;
            External=ScriptPathHash1:ScriptPathHash2
            </remarks>
            <param name="serializedScriptEntries">serialized list</param>
            <returns>list of scripts</returns>
        </member>
        <member name="T:Telerik.Web.UI.IScriptDescriptor">
            <summary>
            For internal use
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.SingleTemplateContainer">
             <summary>
             Base control used to contain a template. Ensures that if the template
             has been instantiated or the Controls collection has been accessed
             the template cannot be set again.
             </summary>
             <example>
             1) Into an existing WebControl add a readonly property and 
             a member for the template container
             
             private SingleTemplateContainer _contentContainer;
             
            	[Browsable(false)]
            	public SingleTemplateContainer ContentContainer
            	{
            		get
            		{
            			EnsureChildControls();
            			return _contentContainer;
            		}
            	}
             
             2) Override CreateChildControls() and instantiate the SingleTemplateContainer.
             The parameter is a reference to the instantiating control (used when throwing exceptions).
             
             protected override void CreateChildControls()
            	{
            		base.CreateChildControls();
            
            		_contentContainer = new SingleTemplateContainer(this);
            		_contentContainer.ID = "Content";
            		Controls.Add(_contentContainer);
            	}
             
             3) Add read/write property for the template. You will need the TemplateContainer
             attribute in case if you override SingleTemplateContainer in order to add 
             properties, accessible during the databinding.
             
             //[TemplateContainer(typeof(SingleTemplateContainer))]
            	[PersistenceMode(PersistenceMode.InnerProperty)]
            	[TemplateInstance(TemplateInstance.Single)]
            	[Browsable(false)]
            	public ITemplate ContentTemplate
            	{
            		get
            		{
            			EnsureChildControls();
            			return ContentContainer.Template;
            		}
            		set
            		{
            			EnsureChildControls();
            			ContentContainer.Template = value;
            		}
            	}
            
             </example>
        </member>
        <member name="M:Telerik.Web.UI.SingleTemplateContainer.#ctor(System.Web.UI.Control)">
            <summary>
            Instantiates a new instance of SingleTemplateContainer.
            </summary>
            <param name="parentRadControl">
            The control which contains the template. This parameter is used when
            SingleTemplateContainer throws exceptions.
            </param>
        </member>
        <member name="F:Telerik.Web.SkinRegistrar.cssLinkFormat">
            <summary>
            cssLinkFormat is used when registering css during ajax requests or when the page header is not runat="server".
            </summary>
        </member>
        <member name="F:Telerik.Web.SkinRegistrar.copyCssScript">
            <summary>
            the registerSkins() method is in Core.js
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetRuntimeSkin(Telerik.Web.ISkinnableControl)">
            <summary>
            Returns the skin that should be applied to the control.
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetGlobalSkin(Telerik.Web.ISkinnableControl)">
            <summary>
            Returns the web.config value which specifies the application-wide Skin setting.
            </summary>
            <returns>
            Telerik.[ShortControlName].Skin or Telerik.Skin, depending on which value was set.
            </returns>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.RegisterCssReferences(Telerik.Web.ISkinnableControl)">
            <summary>
            Registers the common skin CSS file and the CSS files, associated with the selected skin.
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.RegisterCssReference(System.Web.UI.Page,System.Web.UI.Control,System.String)">
            <summary>
            Registers a Css file reference on the page
            </summary>
            <param name="_page">reference to the page</param>
            <param name="_control">reference to the control</param>
            <param name="_url">the css file url</param>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetEmbeddedSkinAttributes(Telerik.Web.ISkinnableControl,System.Type)">
            <summary>
            Returns the attributes for the common skin CSS file and the CSS files, associated with the selected skin.
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetAllEmbeddedSkinAttributes(Telerik.Web.UI.RadSkinManager,System.Type)">
            <summary>
            Returns the attributes for all embedded skins.
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetEmbeddedSkinNames(System.Type)">
            <summary>
            Returns the names of all embedded skins. The common skin attribute is not included!
            </summary>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetWebResourceUrl(System.Web.UI.Control,System.String)">
            <summary>
            Retrieves the resource URL for the specified embedded resource.
            </summary>
            <param name="control">The control instance associated with the resource</param>
            <param name="resourceName">The name of the resource, whose URL to retrive</param>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetWebResourceUrl(System.Web.UI.Page,System.Type,System.String)">
            <summary>
            Retrieves the resource URL for the specified embedded resource.
            </summary>
            <param name="page">The <see cref="T:System.Web.UI.Page"/> instance</param>
            <param name="type">The <see cref="T:System.Type"/> of the control with which this resource is associated</param>
            <param name="resourceName">The name of the resource, whose URL to retrive</param>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetSkinFromResourceName(System.String)">
            <summary>
            Retrieves the skin name from the specified resource name, e.g.
            "Telerik.Web.UI.Skins.Vista.Grid.Refresh.gif" => "Vista"
            </summary>
            <param name="resourceName"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.SkinRegistrar.GetWebResourceType(System.Type,System.String,System.Web.UI.Page)">
            <summary>
            Retrieves the type of the control that is associated with 
            embedded resources for the specified skin.
            </summary>
        </member>
        <member name="T:Telerik.Web.ClientPropertyNameAttribute">
            <summary>
            Allows the mapping of a property declared in managed code to a property
            declared in client script.  For example, if the client script property is named "handle" and you
            prefer the name on the TargetProperties object to be "Handle", you would apply this attribute with the value "handle."
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientPropertyNameAttribute.#ctor(System.String)">
            <summary>
            Creates an instance of the ClientPropertyNameAttribute and initializes
            the PropertyName value.
            </summary>
            <param name="propertyName">The name of the property in client script that you wish to map to.</param>
        </member>
        <member name="P:Telerik.Web.ClientPropertyNameAttribute.PropertyName">
            <summary>
            The name of the property in client script code that you wish to map to.
            </summary>
        </member>
        <member name="T:Telerik.Web.ClientScriptResourceAttribute">
            <summary>
            Associates a client script resource with an extender class.
            This allows the extender to find it's associated script and what
            names and prefixes with which to reference it.
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientScriptResourceAttribute.#ctor(System.String)">
            <summary>
            Called from other constructors to set the prefix and the name.
            </summary>
            <param name="componentType">The name given to the class in the Web.TypeDescriptor.addType call</param>        
        </member>
        <member name="M:Telerik.Web.ClientScriptResourceAttribute.#ctor(System.String,System.Type,System.String)">
            <summary>
            Associates a client script resource with the class.
            </summary>
            <param name="componentType">The name given to the class in the Web.TypeDescriptor.addType call</param>
            <param name="baseType">A Type that lives in the same folder as the script file</param>
            <param name="resourceName">The name of the script file itself (e.g. 'foo.cs')</param>
        </member>
        <member name="M:Telerik.Web.ClientScriptResourceAttribute.#ctor(System.String,System.String)">
            <summary>
            Associates a client script resource with the class.
            </summary>
            <param name="componentType">The name given to the class in the Web.TypeDescriptor.addType call</param>
            <param name="fullResourceName">The name of the script resource, e.g. 'ControlLibrary1.FooExtender.Foo.js'</param>       
        </member>
        <member name="P:Telerik.Web.ClientScriptResourceAttribute.ComponentType">
            <summary>
            The component type name to use when referencing the component class in XML. If
            the XML reference is "&lt;myns:Foo/&gt;", the component type is "Foo".
            </summary>
        </member>
        <member name="P:Telerik.Web.ClientScriptResourceAttribute.ResourcePath">
            <summary>
            This is the path to the resource in the assembly.  This is usually defined as
            [default namespace].[Folder name].FileName.  In a project called "ControlLibrary1", a
            JScript file called Foo.js in the "Script" subdirectory would be named "ControlLibrary1.Script.Foo.js" by default.
            </summary>
        </member>
        <member name="T:Telerik.Web.ComponentReferenceAttribute">
            <summary>
            Signifies that this property references a ScriptComponent
            </summary>
        </member>
        <member name="T:Telerik.Web.PopupBehavior">
            <summary>
            Repository of old "Atlas" code that we're waiting to have integrated into the new Microsoft Ajax Library
            </summary>
        </member>
        <member name="T:Telerik.Web.ElementReferenceAttribute">
            <summary>
            Specifies this property is an element reference and should be converted during serialization.
            The default (e.g. cases without this attribute) will generate the element's ID
            </summary>
        </member>
        <member name="M:Telerik.Web.ElementReferenceAttribute.#ctor">
            <summary>
            Constructs a new ElementReferenceAttribute
            </summary>
        </member>
        <member name="T:Telerik.Web.ClientControlEventAttribute">
            <summary>
            Signifies that this Property should be exposed as a client-side event reference
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlEventAttribute.#ctor">
            <summary>
            Initializes a new ClientControlEventAttribute
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlEventAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes a new ClientControlEventAttribute
            </summary>
            <param name="isScriptEvent"></param>
        </member>
        <member name="M:Telerik.Web.ClientControlEventAttribute.Equals(System.Object)">
            <summary>
            Tests for object equality
            </summary>
            <param name="obj"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlEventAttribute.GetHashCode">
            <summary>
            Gets a hash code for this object
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlEventAttribute.IsDefaultAttribute">
            <summary>
            Gets whether this is the default value for this attribute
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.ClientControlEventAttribute.IsScriptEvent">
            <summary>
            Whether this is a valid ScriptEvent
            </summary>
        </member>
        <member name="T:Telerik.Web.ClientControlMethodAttribute">
            <summary>
            Signifies that this method should be exposed as a client callback 
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlMethodAttribute.#ctor">
            <summary>
            Initializes a new ClientControlMethodAttribute
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlMethodAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes a new ClientControlMethodAttribute
            </summary>
            <param name="isScriptMethod"></param>
        </member>
        <member name="M:Telerik.Web.ClientControlMethodAttribute.Equals(System.Object)">
            <summary>
            Tests for object equality
            </summary>
            <param name="obj"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlMethodAttribute.GetHashCode">
            <summary>
            Gets a hash code for this object
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlMethodAttribute.IsDefaultAttribute">
            <summary>
            Gets whether this is the default value for this attribute
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.ClientControlMethodAttribute.IsScriptMethod">
            <summary>
            Whether this is a valid ScriptMethod
            </summary>
        </member>
        <member name="T:Telerik.Web.ClientControlPropertyAttribute">
            <summary>
            Signifies that this property is to be emitted as a client script property
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlPropertyAttribute.#ctor">
            <summary>
            Initializes a new ClientControlPropertyAttribute
            </summary>
        </member>
        <member name="M:Telerik.Web.ClientControlPropertyAttribute.#ctor(System.Boolean)">
            <summary>
            Initializes a new ClientControlPropertyAttribute
            </summary>
            <param name="isScriptProperty"></param>
        </member>
        <member name="M:Telerik.Web.ClientControlPropertyAttribute.Equals(System.Object)">
            <summary>
            Tests for object equality
            </summary>
            <param name="obj"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlPropertyAttribute.GetHashCode">
            <summary>
            Gets a hash code for this object
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ClientControlPropertyAttribute.IsDefaultAttribute">
            <summary>
            Gets whether this is the default value for this attribute
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.ClientControlPropertyAttribute.IsScriptProperty">
            <summary>
            Whether this property should be exposed to the client
            </summary>
        </member>
        <member name="T:Telerik.Web.IClientStateManager">
            <summary>
            Describes an object which supports ClientState
            </summary>
        </member>
        <member name="M:Telerik.Web.IClientStateManager.LoadClientState(System.String)">
            <summary>
            Loads the client state for the object
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.IClientStateManager.SaveClientState">
            <summary>
            Saves the client state for the object
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.IClientStateManager.SupportsClientState">
            <summary>
            Whether ClientState is supported by the object instance
            </summary>
        </member>
        <member name="T:Telerik.Web.PropertyCategory">
            <summary>
            Defines the common property categories' names
            </summary>
        </member>
        <member name="T:Telerik.Web.RequiredPropertyAttribute">
            <summary>
            The presence of this attribute on a property of a subclass of
            TargetControlPropertiesBase indicates that the property value is
            required and the control can not be used without it. Absence of a
            required property value causes an exception to be thrown during
            creation of the control.
            </summary>
        </member>
        <member name="M:Telerik.Web.RequiredPropertyAttribute.#ctor">
            <summary>
            Constructs a new RequiredPropertyAttribute
            </summary>
        </member>
        <member name="T:Telerik.Web.ScriptObjectBuilder">
            <summary>
            Gets the script references for a type
            </summary>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.DescribeComponent(System.Object,Telerik.Web.UI.IScriptDescriptor,System.Web.UI.IUrlResolutionService,Telerik.Web.IControlResolver)">
            <summary>
            Describes an object to a IScriptDescriptor based on its reflected properties and methods
            </summary>
            <param name="instance">The object to be described</param>
            <param name="descriptor">The script descriptor to fill</param>
            <param name="urlResolver">The object used to resolve urls</param>
            <param name="controlResolver">The object used to resolve control references</param>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.GetScriptReferences(System.Type)">
            <summary>
            Gets the script references for a type
            </summary>
            <param name="type"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.GetScriptReferences(System.Type,System.Boolean)">
            <summary>
            Gets the script references for a type
            </summary>
            <param name="type"></param>
            <param name="ignoreStartingTypeReferences"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.GetCssReferences(System.Web.UI.Control)">
            <summary>
            Gets the embedded css file references for a type
            </summary>
            <param name="control"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.RegisterCssReferences(System.Web.UI.Control)">
            <summary>
            Register's the Css references for this control
            </summary>
            <param name="control"></param>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.ExecuteCallbackMethod(System.Web.UI.Control,System.String)">
            <summary>
            Executes a callback capable method on a control
            </summary>
            <param name="control"></param>
            <param name="callbackArgument"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.ScriptReferencesFromResourceEntries(System.Collections.Generic.IList{Telerik.Web.ScriptObjectBuilder.ResourceEntry})">
            <summary>
            ScriptReference objects aren't immutable.  The AJAX core adds context to them, so we cant' reuse them.
            Therefore, we track only ReferenceEntries internally and then convert them to NEW ScriptReference objects on-demand.        
            </summary>
            <param name="entries"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.GetScriptReferencesInternal(System.Type,System.Collections.Generic.Stack{System.Type})">
            <summary>
            Gets the script references for a type and walks the type's dependencies with circular-reference checking
            </summary>
            <param name="type"></param>
            <param name="typeReferenceStack"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.ScriptObjectBuilder.GetCssReferences(System.Web.UI.Control,System.Type,System.Collections.Generic.Stack{System.Type})">
            <summary>
            Gets the css references for a type and walks the type's dependencies with circular-reference checking
            </summary>
            <param name="control"></param>
            <param name="type"></param>
            <param name="typeReferenceStack"></param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.UI.RadEditor">
            <summary>
            Telerik RadEditor
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.GetDialogDefinition(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RemoveDialogDefinition(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.AddDialogDefinition(System.String,Telerik.Web.UI.DialogDefinition)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.EnsureToolsFileLoaded">
            <summary>
            Forces the ToolsFile to be parsed and loaded at any given time.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.GetScriptDescriptors">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.GetScriptReferences">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds HTML attributes and styles that need to be rendered to the specified <see cref="T:System.Web.UI.HtmlTextWriterTag"></see>. This method is used primarily by control developers.
            </summary>
            <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter"></see> that represents the output stream to render HTML content on the client.</param>
        </member>
        <member name="F:Telerik.Web.UI.RadEditor.originalEnabled">
            <summary>
            The Enabled property is reset in AddAttributesToRender in order
            to avoid setting disabled attribute in the control tag (this is
            the default behavior). This property has the real value of the 
            Enabled property in that moment.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RegisterScriptControl">
            <summary>
            Registers the control with the ScriptManager
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RegisterCssReferences">
            <summary>
            Registers the CSS styles for the control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RegisterScriptDescriptors">
            <summary>
            Registers the script descriptors.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderClientStateField(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderChildren(System.Web.UI.HtmlTextWriter)">
            <summary>
            Outputs the content of a server control's children to a provided <see cref="T:System.Web.UI.HtmlTextWriter"></see> object, which writes the content to be rendered on the client.
            </summary>
            <param name="writer">The <see cref="T:System.Web.UI.HtmlTextWriter"></see> object that receives the rendered content.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderBottomZone(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.RenderEditModes(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.FindTool(System.String)">
            <summary>
            Finds the tool with the given name.
            </summary>
            <param name="name">The name of the tool to find.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.ContainsTool(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Executed when post data is loaded from the request
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.ControlPreRender">
            <summary>
            Executes during the prerender event. We set the tools file and fill the collections with their default values.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.DisableFilter(Telerik.Web.UI.EditorFilters)">
            <summary>
            Removes a specific filter from the <see cref="P:Telerik.Web.UI.RadEditor.ContentFilters">ContentFilters</see>.
            </summary>
            <param name="filter">An <see cref="T:Telerik.Web.UI.EditorFilters">EditorFilters</see> value</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.EnableFilter(Telerik.Web.UI.EditorFilters)">
            <summary>
            Add a specific filter to the <see cref="P:Telerik.Web.UI.RadEditor.ContentFilters">ContentFilters</see>.
            </summary>
            <param name="filter">An <see cref="T:Telerik.Web.UI.EditorFilters">EditorFilters</see> value</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.SetPaths(System.String[],Telerik.Web.UI.EditorFileTypes,Telerik.Web.UI.EditorFileOptions)">
            <summary>
            Used to set the file browser configuration paths for the editor dialogs
            </summary>
            <param name="paths">A string array containing the paths to set.</param>
            <param name="fileTypes">Which dialogs to set the paths to.</param>
            <param name="fileOptions">Which paths (view, upload, delete) to set.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous request that was saved with the System.Web.UI.WebControls.WebControl.SaveViewState() method.
            </summary>
            <param name="state">An object that represents the control state to restore.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.SaveViewState">
            <summary>
            Saves any state that was modified after the System.Web.UI.WebControls.Style.TrackViewState() method was invoked.
            </summary>
            <returns>An object that contains the current view state of the control; otherwise, if there is no view state associated with the control, null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.TrackViewState">
            <summary>
            Causes the control to track changes to its view state so they can be stored in the object's System.Web.UI.Control.ViewState property.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.ExportToPdf">
            <summary>
            This method is used to export the editor's content to PDF format.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.ExportToRtf">
            <summary>
            This method is used to export the editor's content to RTF format.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.OnFileDelete(System.String)">
            <summary>
            Raises the FileDelete event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.OnExportContent(Telerik.Web.UI.EditorExportingArgs)">
            <summary>
            Raises the ExportContent event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.OnFileUpload(System.String)">
            <summary>
            Raises the FileUpload event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadEditor.OnTextChanged(System.EventArgs)">
            <summary>
            Raises the TextChanged event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.TagKey">
            <summary>
            Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag"></see> value that corresponds to this Web server control. This property is used primarily by control developers.
            </summary>
            <value></value>
            <returns>One of the <see cref="T:System.Web.UI.HtmlTextWriterTag"></see> enumeration values.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.CssClassFormatString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ExportSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.EditorExportSettings"/> object that
                    allows you to set the export file properties 
                </para>
            </summary>
            <value>
            A reference to the EditorExportSettings that allows you to set the export file properties
            </value>
            <remarks>
            	<para>Use the ExportSettings property to control the export file settings 
                This property is read-only;
                however, you can set the properties of the EditorExportSettings object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadEditor
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the EditorExportSettings object (for example,
                    ExportSettings-FileName).</item>
            		<item>Nest a &lt;ExportSettings&gt; element between the opening and closing
                    tags of the Telerik RadEditor control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, ExportSettings.FileName).</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.IsInAccessibleMode">
            <summary>
            Gets a value indicating whether the editor is being rendered in accessible mode
            </summary>
            <remarks>
            This propery has no setter. If you wish to enable the accessible editor interface, use the AccessibleRadEditor control instead.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ToolProviderID">
            <summary>
            Gets or sets a string containing the ID (will search for both server or client ID) of a client object that should be used as a tool provider. 
            </summary>
            <remarks>
            	<para>
            	This property helps significantly reduce the HTML markup and JSON sent from server to the
                client when multiple RadEditor objects with the same tools are used on the same page.
            	</para>
            	<para>The ToolProviderID can be set to the ID of another RadEditor, or to a custom
                control that implements two clientside methods get_toolHTML and get_toolJSON.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.CssFiles">
            <summary>
            Gets a reference to a <see cref="T:Telerik.Web.UI.EditorCssFileCollection"/> that can be used to add external CSS files in the editor content area.
            </summary>
            <remarks>
            	<para>By default, RadEditor uses the CSS classes available in the current page.
                However, it can be configured to load external CSS files instead. This scenario is
                very common for editors integrated in back-end administration areas, which have one
                set of CSS classes, while the content is being saved in a database and displayed on
                the public area, which has a different set of CSS classes.</para>
            	<para>If this property is set the RadEditor loads <strong>only</strong> the styles
                defined in the CssFiles collection. The styles defined in the current page are not loaded in
                the editor content area and the "Apply Class" dropdown.</para>
            	<para>
                    If you want to load only a subset of the defined classes you can use the
                    <see cref="P:Telerik.Web.UI.RadEditor.CssClasses">CssClasses</see> property.
                </para>
            </remarks>
            <value>
            A <see cref="T:Telerik.Web.UI.EditorCssFileCollection"/> containing the names of the external CSS files that should be
            available in the editor's content area.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Modules">
            <summary>
            Gets the list of modules that should be made included in RadEditor.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Colors">
            <summary>
            Gets the collection containing the colors to put in the Foreground and Background color dropdowns.
            </summary>
            <value>
            A StringCollection containing the colors to put in the Foreground and Background
            color dropdowns. Default is an <strong>empty</strong> StringCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default colors available in
                the Foreground and Background color dropdowns. In order to extend the default set
                you should add the default colors and the new colors.</para>
            	<para><strong>Note</strong>: Setting this property will affect all color pickers of
                the RadEditor, including those in the table proprties dialogs.</para>
            </remarks>
            <example>
                This example demonstrates how to put only Red, Green and Blue into the Foreground
                and Background dropdowns.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
                RadEditor1.Colors.Add("Red")
                RadEditor1.Colors.Add("Green")
                RadEditor1.Colors.Add("Blue")
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                RadEditor1.Colors.Add("Red");
                RadEditor1.Colors.Add("Green");
                RadEditor1.Colors.Add("Blue");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Symbols">
            <summary>Gets the collection containing the symbols to put in the Symbols dropdown.</summary>
            <value>
            A SymbolCollection containing the symbols to put in the Symbols dropdown. Default
            is an <strong>empty</strong> SymbolCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default symbols available
                in the Symbols dropdown.</para>
            	<para><strong>Note</strong>: multiple symbols can be added at once by using the
                SymbolCollection.Add() method.</para>
            </remarks>
            <example>
                This example demonstrates how to put only the english alphabet symbols to the
                Symbols dropdown.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
                For i As Integer = 65 To 90
                    RadEditor1.Symbols.Add(Convert.ToChar(i))
                Next
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                for (int i=65; i&lt;=90; i++)
                {
                    RadEditor1.Symbols.Add(Convert.ToChar(i));
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Links">
            <summary>
            Gets the collection containing the links to put in the Custom Links dropdown.
            </summary>
            <value>A Link object containing the links to put in the Custom Links dropdown.</value>
            <remarks>
            	<para>The Custom Links dropdown of the RadEditor is a very convenient tool for
                inserting predefined hyperlinks.</para>
            	<para><strong>Note</strong>: the links can be organized in a tree like
                structure.</para>
            </remarks>
            <example>
                This example demonstrates how to create a tree like structure of custom links.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
                'Add the root
                RadEditor1.Links.Add("Telerik", "http://www.telerik.com")
                'Add the Products node And its children
                RadEditor1.Links("Telerik").Add("Products", "http://www.telerik.com/products")
                RadEditor1.Links("Telerik")("Products").Add("RadControls", "http://www.telerik.com/radcontrols")
                RadEditor1.Links("Telerik")("Products").Add("RadEditor", "http://www.telerik.com/RadEditor")
                RadEditor1.Links("Telerik")("Products")("RadEditor").Add("QSF", "http://www.telerik.com/demos/aspnet/Editor/Examples/Default/DefaultCS.aspx")
                'Add Purchase, Support And Client.Net nodes
                RadEditor1.Links("Telerik").Add("Purchase", "http://www.telerik.com/purchase")
                RadEditor1.Links("Telerik").Add("Support", "http://www.telerik.com/support")
                RadEditor1.Links("Telerik").Add("Client.Net", "http://www.telerik.com/clientnet")
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                //Add the root
                RadEditor1.Links.Add("Telerik", "http://www.telerik.com");
                //Add the Products node and its children
                RadEditor1.Links["Telerik"].Add("Products", "http://www.telerik.com/products");
                RadEditor1.Links["Telerik"]["Products"].Add("RadControls", "http://www.telerik.com/radcontrols");
                RadEditor1.Links["Telerik"]["Products"].Add("RadEditor", "http://www.telerik.com/RadEditor");
                RadEditor1.Links["Telerik"]["Products"]["RadEditor"].Add("QSF", "http://www.telerik.com/demos/aspnet/Editor/Examples/Default/DefaultCS.aspx");
                //Add Purchase, Support and Client.Net nodes
                RadEditor1.Links["Telerik"].Add("Purchase", "http://www.telerik.com/purchase");
                RadEditor1.Links["Telerik"].Add("Support", "http://www.telerik.com/support");
                RadEditor1.Links["Telerik"].Add("Client.Net", "http://www.telerik.com/clientnet");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.FontSizes">
            <summary>
            Gets the collection containing the custom font sizes to put in the [Size] dropdown.
            </summary>
            <value>
            A string collection containing the custom font sizes to put in the Size dropdown.
            Default is an <strong>empty</strong> StringCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default font sizes
                available in the [Size] dropdown. In order to extend the default set you should add
                the default font sizes and the new font sizes. The default font sizes are: 1, 2, 3,
                4, 5, 6 and 7.</para>
            	<para><strong>Note</strong>: the minimum font size is 1, the maximum is 7.</para>
            </remarks>
            <example>
                This example demonstrates how to remove the font size 1 from the Size dropdown.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
                RadEditor1.FontSizes.Add(2)
                RadEditor1.FontSizes.Add(3)
                RadEditor1.FontSizes.Add(4)
                RadEditor1.FontSizes.Add(5)
                RadEditor1.FontSizes.Add(6)
                RadEditor1.FontSizes.Add(7)
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                RadEditor1.FontSizes.Add(2);
                RadEditor1.FontSizes.Add(3);
                RadEditor1.FontSizes.Add(4);
                RadEditor1.FontSizes.Add(5);
                RadEditor1.FontSizes.Add(6);
                RadEditor1.FontSizes.Add(7);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.FontNames">
            <summary>
            Gets the collection containing the custom font names to put in the Font dropdown.
            </summary>
            <value>
            A string collection containing the custom font names to put in the Font dropdown.
            Default is an <strong>empty</strong> StringCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default fonts available in
                the Font dropdown. In order to extend the default set you should add the default
                font names and the new font names. The default font names are: Arial, Comic Sans
                MS, Courier New, Tahoma, Times New Roman, Verdana.</para>
            	<para><strong>Note</strong>: the fonts must exist on the client computer.</para>
            </remarks>
            <example>
                This example demonstrates how to add Arial Narrow font to the Font dropdown.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
                RadEditor1.FontNames.Add("Arial")
                RadEditor1.FontNames.Add("Arial Narrow")
                RadEditor1.FontNames.Add("Comic Sans MS")
                RadEditor1.FontNames.Add("Courier New")
                RadEditor1.FontNames.Add("Tahoma")
                RadEditor1.FontNames.Add("Times New Roman")
                RadEditor1.FontNames.Add("Verdana")
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                RadEditor1.FontNames.Add("Arial");
                RadEditor1.FontNames.Add("Arial Narrow");
                RadEditor1.FontNames.Add("Comic Sans MS");
                RadEditor1.FontNames.Add("Courier New");
                RadEditor1.FontNames.Add("Tahoma");
                RadEditor1.FontNames.Add("Times New Roman");
                RadEditor1.FontNames.Add("Verdana");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Paragraphs">
            <summary>
            Gets the collection containing the paragraph styles to put in the Paragraph Style
            dropdown.
            </summary>
            <value>
            A NameValueCollection containing the paragraph styles to put in the Paragraph
            Style dropdown. Default is an <strong>empty</strong> NameValueCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default paragraph styles
                available in the Paragraph Style dropdown.</para>
            	<para><strong>Note</strong>: RadEditor also supports block format with css class
                set. See the example below.</para>
            </remarks>
            <example>
                This example demonstrates how to put several paragraph styles in the Paragraph
                Style dropdown.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
                'Add clear formatting
                RadEditor1.Paragraphs.Add("Clear Formatting", "body")
                'Add the standard paragraph styles
                RadEditor1.Paragraphs.Add("Heading 1", "&lt;h1&gt;")
                RadEditor1.Paragraphs.Add("Heading 2", "&lt;h2&gt;")
                RadEditor1.Paragraphs.Add("Heading 3", "&lt;h3&gt;")
                'Add paragraph style With block Format And css Class
                RadEditor1.Paragraphs.Add("Heading 2 Bordered", "&lt;h2 class=\"bordered\"&gt;")
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                //Add clear formatting
                RadEditor1.Paragraphs.Add("Clear Formatting", "body");
                //Add the standard paragraph styles
                RadEditor1.Paragraphs.Add("Heading 1", "&lt;h1&gt;");
                RadEditor1.Paragraphs.Add("Heading 2", "&lt;h2&gt;");
                RadEditor1.Paragraphs.Add("Heading 3", "&lt;h3&gt;");
                //Add paragraph style with block format and css class
                RadEditor1.Paragraphs.Add("Heading 2 Bordered", "&lt;h2 class=\"bordered\"&gt;");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.RealFontSizes">
            <summary>
            Gets the collection containing the custom real font sizes to put in the RealFontSize dropdown.
            </summary>
            <value>
            A string collection containing the custom real font sizes to put in the RealFontSize dropdown.
            Default is an <strong>empty</strong> StringCollection.
            </value>
            <remarks>
            	<para>The contents of this collection will override the default real font sizes available in
                the RealFontSize dropdown.</para>
            </remarks>
            <example>
                This example demonstrates how to add custom font sizes to the RealFontSize dropdown.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles MyBase.Load
                RadEditor1.RealFontSizes.Add("8pt")
                RadEditor1.RealFontSizes.Add("9pt")
                RadEditor1.RealFontSizes.Add("11pt")
                RadEditor1.RealFontSizes.Add("13pt")
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                RadEditor1.RealFontSizes.Add("8pt")
                RadEditor1.RealFontSizes.Add("9pt")
                RadEditor1.RealFontSizes.Add("11pt")
                RadEditor1.RealFontSizes.Add("13pt")
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.CssClasses">
            <summary>
            Gets the collection containing the CSS classes to put in the [Apply CSS Class] dropdown.
            </summary>
            <value>
            A NameValueCollection containing the CSS classes to put in the [Apply CSS Class]
            dropdown. Default is an <strong>empty</strong> NameValueCollection .
            </value>
            <remarks>
            	<para>The contents of this collection will override the default CSS classes
                available in the Apply CSS Class dropdown.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Snippets">
            <summary>
            Gets the collection containing the snippets to put in the Code Snippet
            dropdown.
            </summary>
            <value>
            A NameValueCollection containing the snippets to put in the Code Snippet dropdown.
            Default is an <strong>empty</strong> NameValueCollection.
            </value>
            <remarks>
            	<para>The Code Snippet dropdown is a very convenient tool for inserting predefined
                chunks of HTML content like signatures, product description templates, custom
                tables, etc.</para>
            	<para>The contents of this collection will override the default snippets available
                in the Code Snippet dropdown.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Languages">
            <summary>Gets the collection containing the available languages for spellchecking.</summary>
            <remarks>
            RadEditor has integrated support for the multi-language mode of RadSpell. When
            working with content in different languages you can select the proper spellchecking
            dictionary from a dropdown button on the RadEditor toolbar.
            </remarks>
            <value>
            A NameValueCollection containing the available languages for spellchecking.
            Default value is <strong>empty</strong> NameValueCollection.
            </value>
            <example>
                This example demonstrates how to enable spellchecking for English, French and German languages
                in RadEditor spellchecker.
                <code lang="VB">
            Private Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadEditor1.Languages.Add("en-US", "English");
                RadEditor1.Languages.Add("fr-FR", "French");
                RadEditor1.Languages.Add("de-DE", "German");
            End Sub
                </code>
            	<code lang="CS">
            private void Page_Load(object sender, EventArgs e)
            {
                RadEditor1.Languages.Add("en-US", "English");
                RadEditor1.Languages.Add("fr-FR", "French");
                RadEditor1.Languages.Add("de-DE", "German");
            }
                </code>
            </example>        /// 
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Tools">
            <summary>
            Gets the collection containing RadEditor tools.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ToolsFile">
            <summary>
            Gets or sets a string containing the path to the XML toolbar configuration file.
            </summary>
            <remarks>
            	<para>This property is provided for backwards compatibility. Please, use either 
            	inline toolbar declaration or code-behind to configure the toolbars. To configure 
            	multiple RadEditor controls with the same settings you could use either Theme, 
            	UserControl with inline declaration, or CustomControl.
            	</para>
            	<para>Use "~" (tilde) as a substitution of the web-application's root
            	directory.</para>
            	<para>You can also provide this property with an absolute URL which returns a valid XML
            	toolbar configuration file, e.g. http://MyServer/MyApplication/Tools/MyToolsFile.aspx</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Language">
            <summary>
            Gets or sets a string containing the localization language for the RadEditor UI
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ContentAreaCssFile">
            <summary>
            Gets or sets a string, containing the location of the content area CSS styles. 
            You need to set this property only if you are using a custom skin.
            </summary>
            <value>The content area CSS file.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.TableLayoutCssFile">
            <summary>
            Gets or sets a string, containing the location of the CSS styles for table css style layout tool in the TableProperties dialogue.
            </summary>
            <value>The content area CSS file.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Localization">
            <summary>
            The Localization property specifies the strings that appear in the runtime user interface of RadEditor.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.LocalizationPath">
            <summary>
            Gets or sets a value indicating where the editor will look for its .resx localization files.
            By default these files should be in the App_GlobalResources folder. However, if you cannot put
            the resource files in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource files.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadEditorResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the editor localization files from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.AllowScripts">
            <summary>
            Gets or sets the value indicating whether script tags will be allowed in the editor content.
            This property is now obsolete. Please use the ContentFilters property or the EnableFilter and DisableFilter methods
            </summary>
            <value>
            The default value is <strong>false</strong>. This means that script tags will be removed from the content.
            </value> 
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.AutoResizeHeight">
            <summary>
            Gets or sets the value indicating whether the RadEditor will auto-resize its height to match content height 
            </summary>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableResize">
            <summary>
            Gets or sets the value indicating whether the users will be able to resize the RadEditor control on the client 
            </summary>
            <value>
            The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.NewLineBr">
            <summary>
            This property is obsolete. Please, use the NewLineMode property instead.
            </summary>
            <value>
            	<strong>true</strong> when the RadEditor will insert &lt;br&gt; tag when the
            [Enter] key is pressed; otherwise <strong>false</strong>. The default
            value is <strong>true</strong>.
            </value>
            <remarks>
            	<para><strong>Note</strong>: this property is intended for use only in Internet Explorer.
            	The gecko-based browsers always insert &lt;BR&gt; tags.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.NewLineMode">
            <summary>
            Gets or sets the value indicating what element will be inserted when the [Enter] key is pressed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ToolbarMode">
            <summary>
            Gets or sets the value indicating how the editor toolbar will be rendered and will act on the client
            </summary>
            <value>
            	<strong>Default</strong> Toolbars are rendered around the editor content area.<br/>
            	<strong>Floating</strong> Toolbars are rendered in a moveable window.<br/>
            	<strong>PageTop</strong> Toolbars appear on top of page when editor gets focus.<br/>
            	<strong>ShowOnFocus</strong> Toolbars appear right above the editor when it focus.
            </value>
            <remarks>
            <para>
            	Several editors can simulate usage of the same toolbar if this property has the same value everywhere
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ToolAdapter">
            <summary>
            Gets or sets the tool adapter, which is responsible for rendering the tools in the toolbar.
            </summary>
            <value>
            The default tool adapter is of type Telerik.Web.UI.Editor.DefaultToolAdapter.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when editor is loaded on the client.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientLoad</strong>
            		<font color="black">client-side event handler is called when editor is loaded on the client.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientInit">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when editor starts to load on the client.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientInit</strong>
            		<font color="black">client-side event handler is called when editor starts to load on the client.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientInit</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientInit(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientInit="OnClientInit"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientPasteHtml">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when a dialog is closed, but before its value returned would be pasted into the editor.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientPasteHtml</strong>
            		<font color="black">client-side event handler is called when a dialog is closed, but before its value returned would be pasted into the editor.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientPasteHtml</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientPasteHtml(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientPasteHtml="OnClientPasteHtml"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientSubmit">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the content is submitted.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientPasteHtml</strong>
            		<font color="black">client-side event handler is called when a dialog is closed, but before its value returned would be pasted into the editor.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSubmit</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientSubmit(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSubmit="OnClientSubmit"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientModeChange">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the content is submitted.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientModeChange</strong>
            		<font color="black">client-side event handler is called when the mode of the editor is changing..
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientModeChange</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientModeChange(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientModeChange="OnClientModeChange"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientSelectionChange">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when selection inside editor content area changes        
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSelectionChange</strong>
            		<font color="black">client-side event handler is called when selection inside editor content area changes.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSelectionChange</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientSelectionChange(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSelectionChange="OnClientSelectionChange"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientCommandExecuting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            an editor command starts executing.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientCommandExecuting</strong>
            		<font color="black">client-side event handler is called before a command starts executing.
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientCommandExecuting</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientCommandExecuting(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadEditor1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientCommandExecuting="OnClientCommandExecuting"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.OnClientCommandExecuted">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            after an editor command was executed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientCommandExecuted</strong>
            		<font color="black">client-side event handler that is called 
            when after an editor command was executed.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadEditor object.</item>
            		<item><strong>args</strong>.</item>
            	</list>                
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientCommandExecuted</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientCommandExecuted(sender, args)<br/>
                         {<br/>
                         var editor = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadEditor ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientCommandExecuted="OnClientCommandExecuted"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadEditor&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Height">
            <summary>
            Gets or sets the height of the Web server control. The default height is 400 pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Width">
            <summary>
            Gets or sets the width of the Web server control. The default width is 680 pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ToolsWidth">
            <summary>
            Gets or sets the width of the editor's toolbar (should be used when ToolbarMode != Default). 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.MaxTextLength">
            <summary>
            Gets or sets the max length (in symbols) of the text inserted in the RadEditor. When the value is 0 the property is disabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.MaxHtmlLength">
            <summary>
            Gets or sets the max length (in symbols) of the HTML inserted in the RadEditor. When the value is 0 the property is disabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableEmbeddedScripts">
            <summary>Gets or sets the value, indicating whether to render links to the embedded client scripts or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed script files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableTextareaMode">
            <summary>Gets or sets the value, indicating whether to render the editor as a simple textarea (for compatibility with older browsers).</summary>
            <remarks>
            <para>
            If EnableTextareaMode is set to true, the editor will be replaced by a textbox where you can write its HTML. All advanced editor features will be disabled.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Text">
            <summary>
            Gets the text content of the RadEditor control without the HTML markup.
            </summary>
            <value>
            The text displayed in the RadEditor without the HTML markup. The default is
            <strong>string.Empty</strong>.
            </value>
            <remarks>
            	<para>
                    The text returned by this property contains no HTML markup. If only the HTML
                    markup in the text is needed use the Html property.
                </para>
            	<para>
                    You can set the text content of the RadEditor by using the
                    Html property or inline between its opening and closing
                    tags. In this case setting the Html property in the code
                    behind will override the inline content.
                </para>
            </remarks>
            <example>
                For an example see the Html property.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EditModes">
            <summary>
            Gets or sets the value indicating which will be the available EditModes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Html">
            <summary>
            	Gets or sets the text content of the RadEditor control inlcuding the HTML
            	markup. The Html property is deprecated in RadEditor.
            	Use <see cref="P:Telerik.Web.UI.RadEditor.Content">Content</see> instead.
            </summary>
            <value>
            	The text content of the RadEditor control including the HTML markup. The default is
            	<strong>string.Empty</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.Content">
            <summary>
            	Gets or sets the text content of the RadEditor control inlcuding the HTML
            	markup.
            </summary>
            <value>
            	The text content of the RadEditor control including the HTML markup. The default is
            	<strong>string.Empty</strong>.
            </value>
            <remarks>
            	<para>
                    The text returned by this property contains HTML markup. If only the text is
                    needed use the <see cref="P:Telerik.Web.UI.RadEditor.Text">Text</see> property.
                </para>
            	<para>You can also set the text content of the RadEditor inline between the
            		&lt;Content&gt;&lt;/Content&gt; tags. In this case setting this property
            		in the code behind will override the inline content.</para>
            </remarks>
            <example>
                This example demonstrates how to set the content of the RadEditor inline and the
                differences between the Content and <see cref="P:Telerik.Web.UI.RadEditor.Text">Text</see> 
                <para class="sourcecode">&lt;rade:RadEditor id="RadEditor1" runat="server"
                    &gt;<br/>
                    &lt;Content&gt;<br/>
                    Telerik RadEditor&lt;br&gt;<br/>
                    the best &lt;span style="COLOR: red"&gt;html editor&lt;/span&gt; in the
                    world<br/>
                    &lt;/Content&gt;<br/>
                    &lt;/rade:RadEditor&gt;<br/>
                    &lt;asp:button id="btnSave" runat="server" text="Submit"
                    onclick="btnSave_Click" /&gt;&lt;br /&gt;<br/>
                    Content:&lt;asp:label runat="server" id="LabelContent"&gt;&lt;/asp:label&gt;&lt;br
                    /&gt;<br/>
                    Text:&lt;asp:label runat="server" id="LabelText"&gt;&lt;/asp:label&gt;&lt;br
                    /&gt;<br/>
            	</para>
            	<code lang="VB" title="[New Example]">
            Private Sub btnSave_Click(sender As Object, e As System.EventArgs)
                'HtmlEncode the content of the editor to display the HTML tags
                LabelContent.Text = Server.HtmlEncode(RadEditor1.Content);
                LabelText.Text = Server.HtmlEncode(RadEditor1.Text);
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            private void btnSave_Click(object sender, System.EventArgs e)
            {
                //HtmlEncode the content of the editor to display the HTML tags
                LabelContent.Text = Server.HtmlEncode(RadEditor1.Content);
                LabelText.Text = Server.HtmlEncode(RadEditor1.Text);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ImageManager">
            <summary>
            Contains the configuration of the ImageManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.ImageManagerDialogConfiguration">ImageManagerDialogConfiguration</see>
            instance, containing the configuration of the ImageManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DocumentManager">
            <summary>
            Contains the configuration of the DocumentManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the DocumentManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.FlashManager">
            <summary>
            Contains the configuration of the FlashManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the FlashManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.SilverlightManager">
            <summary>
            Contains the configuration of the SilverlightManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the SilverlightManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.MediaManager">
            <summary>
            Contains the configuration of the MediaManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the MediaManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.TemplateManager">
            <summary>
            Contains the configuration of the TemplateManager dialog.
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the TemplateManager dialog
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.SpellCheckSettings">
            <summary>
            Contains the configuration of the spell checker.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DialogDefinitions">
            <summary>
            Gets the collection of the dialog definitions (configurations) of the editor.
            </summary>
            <value>
            A DialogDefinitionDictionary, specifying the definitions of the dialogs of the editor.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.StripFormattingOnPaste">
            <summary>
            This property is obsolete. Please, use the StripFormattingOptions property instead.
            </summary>
            <value>
            	The default value is <strong>EditorStripFormattingOptions.None</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.StripFormattingOptions">
            <summary>
            Gets or sets the value indicating how the editor should clear the HTML formatting
            when the user pastes data into the content area.
            </summary>
            <value>
            	The default value is <strong>EditorStripFormattingOptions.None</strong>.
            </value>
            <remarks>
            	<para>
            		<see cref="T:Telerik.Web.UI.EditorStripFormattingOptions">EditorStripFormattingOptions</see>
                    enum members
                    <list type="table">
            			<listheader>
            				<term>Member</term>
            				<description>Description</description>
            			</listheader>
            			<item>
            				<term><strong>None</strong></term>
            				<description>Doesn't strip anything, asks a question when MS Word
                            formatting was detected.</description>
            			</item>
            			<item>
            				<term><strong>NoneSupressCleanMessage</strong></term>
            				<description>Doesn't strip anything and does not ask a
                            question.</description>
            			</item>
            			<item>
            				<term><strong>MSWord</strong></term>
            				<description>Strips only MSWord related attributes and
                            tags.</description>
            			</item>
            			<item>
            				<term><strong>MSWordNoFonts</strong></term>
            				<description>Strips the MSWord related attributes and tags and font
                            tags.</description>
            			</item>
            			<item>
            				<term><strong>MSWordRemoveAll</strong></term>
            				<description>Strips MSWord related attributes and tags, font tags and
                            font size attributes.</description>
            			</item>
            			<item>
            				<term><strong>Css</strong></term>
            				<description>Removes style attributes.</description>
            			</item>
            			<item>
            				<term><strong>Font</strong></term>
            				<description>Removes Font tags.</description>
            			</item>
            			<item>
            				<term><strong>Span</strong></term>
            				<description>Clears Span tags.</description>
            			</item>
            			<item>
            				<term><strong>AllExceptNewLines</strong></term>
            				<description>Clears all tags except "br" and new lines (\n) on paste.</description>
            			</item>
            			<item>
            				<term><strong>All</strong></term>
            				<description>Remove all HTML formatting.</description>
            			</item>
            		</list>
            	</para>
            	<para><strong>Note:</strong> In Gecko-based browsers you will see the mandatory
                dialog box where you need to paste the content.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DialogHandlerUrl">
            <summary>
            Gets or sets the URL which the AJAX call will be made to. Check the help for more information.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DialogsCssFile">
            <summary>
            Gets or sets the location of a CSS file, that will be added in the dialog window. If you need to include 
            more than one file, use the CSS @import url(); rule to add the other files from the first.
            <remarks>This property is needed if you are using a custom skin. It allows you to include your custom skin
            CSS in the dialogs, which are separate from the main page.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DialogsScriptFile">
            <summary>
            Gets or sets the location of a JavaScript file, that will be added in the dialog window. If you need to include 
            more than one file, you will need to combine the scripts into one first.
            <remarks>This property is needed if want to override some of the default functionality without loading the dialog
            from an external ascx file.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.DialogOpener">
            <summary>
            A read-only property that returns the DialogOpener instance used in the editor control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.RibbonBar">
            <summary>
            Gets a reference to the ribbon bar, when toolbar mode is BibbonBar.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ContentFilters">
            <summary>
            Gets or sets a value indicating which content filters will be active when the editor is loaded in the browser.
            </summary>
            <value>
            	The default value is <strong>EditorFilters.DefaultFilters</strong>.
            </value>
            <remarks>
            	<para><see cref="T:Telerik.Web.UI.EditorStripFormattingOptions">EditorFilters</see> enum members
            		<list type="table">
            			<listheader>
            				<term>Member</term>
            				<description>Description</description>
            			</listheader>
            			<item>
            				<term><strong>RemoveScripts</strong></term>
            				<description>This filter removes script tags from the editor content. Disable the filter if you want to insert script tags in the content.</description>
            			</item>
            			<item>
            				<term><strong>MakeUrlsAbsolute</strong></term>
            				<description>This filter makes all URLs in the editor content absolute (e.g. "http://server/page.html" instead of "page.html"). This filter is DISABLED by default.</description>
            			</item>
            			<item>
            				<term><strong>FixUlBoldItalic</strong></term>
            				<description>This filter changes the deprecated u tag to a span with CSS style.</description>
            			</item>
            			<item>
            				<term><strong>IECleanAnchors</strong></term>
            				<description>Internet Explorer only - This filter removes the current page url from all anchor(#) links to the same page.</description>
            			</item>
            			<item>
            				<term><strong>FixEnclosingP</strong></term>
            				<description>This filter removes a parent paragraph tag if the whole content is inside it.</description>
            			</item>
            			<item>
            				<term><strong>MozEmStrong</strong></term>
            				<description>This filter changes b to strong and i to em in Mozilla browsers.</description>
            			</item>
            			<item>
            				<term><strong>ConvertFontToSpan</strong></term>
            				<description>This filter changes deprecated font tags to compliant span tags.</description>
            			</item>
            			<item>
            				<term><strong>ConvertToXhtml</strong></term>
            				<description>This filter converts the HTML from the editor content area to XHTML.</description>
            			</item>
            			<item>
            				<term><strong>IndentHTMLContent</strong></term>
            				<description>This filter indents the HTML content so it is more readable when you view the code.</description>
            			</item>
            			<item>
            				<term><strong>OptimizeSpans</strong></term>
            				<description>This filter tries to decrease the number of nested spans in the editor content.</description>
            			</item>
            			<item>
            				<term><strong>ConvertCharactersToEntities</strong></term>
            				<description>This filter converts reserved characters to their html entity names.</description>
            			</item>
            			<item>
            				<term><strong>ConvertInlineStylesToAttributes</strong></term>
            				<description>This filter converts XHTML compliant inline style attributes to Email compliant element attributes.</description>
            			</item>
            			<item>
            				<term><strong>DefaultFilters</strong></term>
            				<description>The default editor behavior. All content filters except MakeUrlsAbsolute are activated.</description>
            			</item>
            		</list>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ExternalDialogsPath">
            <summary>
            Gets or sets a value indicating where the editor will look for its dialogs.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadEditorDialogs/".
            </value>
            <remarks>
            	<para>If specified, the <strong>ExternalDialogsPath</strong>
            		property will allow you to customize and load the editor dialogs from normal ASCX files.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.ContentAreaMode">
            <summary>
            Gets or sets the rendering mode of the editor content area. When set to Iframe, the content area is a separate document
            (suitable for CMS solutions or when editing a whole page). When set to Div, the content area is in the main page. The default value is Iframe.
            </summary>
            <value>The rendering mode of the editor content area.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadEditor.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadEditor.FileDelete">
            <summary>
            This event is raised before a file is deleted using the current content provider.
            <remarks>The file delete will be canceled if you return false from the event handler.</remarks>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadEditor.ExportContent">
            <summary>
            This event is raised before a file is deleted using the current content provider.
            <remarks>The file delete will be canceled if you return false from the event handler.</remarks>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadEditor.FileUpload">
            <summary>
            This event is raised before the file is stored using the current content provider.
            <remarks>The file upload will be canceled if you return false from the event handler.</remarks>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadEditor.TextChanged">
            <summary>
            Occurs when the content of the RadEditor changes between posts to the server.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridColumn">
            <summary>
            	<para>A Column is the main logic unit that relates the content of the grid to
            properties of the objects in the DataSource.</para>
            	<para>The <b>GridColumn</b> defines the properties and methods that are common to all
            column types in RadGrid. As it is an abstract class (MustInherit in VB.NET)
            <b>GridColumn</b> class can not be created directly. You should inherit it and use its
            children.</para>
            </summary>
            <remarks>
            	<strong>GridColumn</strong> is the base abstract class that implements the
            functionality of a grid column. All inherited classes modify the base behavior
            corresponding to the specific data that should be displayed/edited in RadGrid. The
            columns that have editing capabilities derrive from
            <see cref="T:Telerik.Web.UI.GridEditableColumn"/> class. Other instances display data, buttons, and
            so on in the cells of the grid regarding the type of the Item/row in which the cell
            resides. In you code you can create only instances of the derrived classes. In order to
            display a column in the grid you should add it in the corresponding
            <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> collection. Since the column collection is
            fully persisted in the ViewSteate you should follow the rules that apply to creating
            asp.net server controls dynamically, when adding columns to grid tables
            programmatically.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.GridColumn.footerStyle">
            <summary>
            	<para>Using the <strong>FooterStyle</strong> property lets you enhance the appearance
            of the footer section of the column. You can set forecolor, backcolor, font and content
            alignment.</para>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridColumn.headerStyle">
            <summary>
            	<para>Using the <strong>HeaderStyle</strong> property lets you enhance the appearance
            of the header section of the column. You can set forecolor, backcolor, font and content
            alignment.</para>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridColumn.itemStyle">
            <summary>
            	<para>Use this property to enhance the appearance of the item cells of the column. You
            can provide a custom style for Common style attributes that can be adjusted such as:
            forecolor, backcolor, font, and content alignment within the cell.</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.#ctor">
            <summary>Creates and initializes a new column with its base properties.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.Initialize">
            <summary>
            	<para>The <b>Initialize</b> method is inherited by a derived
            <strong>GridColumn</strong> class. Is is used to reset a column of the derived
            type.</para>
            </summary>
            <remarks>
            	<para>This method is mainly used to reset properties common for all column types
            derived from GridColumn class.</para>
            	<para>The <b>Initialize</b> method is usually called during data-binding, prior to the
            first row being bound.</para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,Telerik.Web.UI.GridItem)">
            <summary>
            	<para>After a call to this method the column should add the corresponding controls
            (text, labels, input controls) into the cell given, regarding the inItem type and
            column index.</para>
            	<para><strong>Note:</strong> This method is called within RadGrid and is not intended
            to be used directly from your code.</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.SupportsFiltering">
            <summary>
            This method should be used in case you develop your own column. It returns true
            if the column supports filtering.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.RefreshCurrentFilterValue(Telerik.Web.UI.GridFilteringItem,System.String)">
            <summary>
            Modifies the <strong>CurrentFilterFunction</strong> and
            <strong>CurrentFilterValue</strong> properties according to the function given and the
            corresponding filter text-box control in the filtering item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.RefreshCurrentFilterValue(Telerik.Web.UI.GridFilteringItem)">
            <summary>
            Modifies the <strong>CurrentFilterValue</strong> property according to the
            corresponding selected item in the filter text-box control in the filtering
            item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.SetCurrentFilterValueToControl(System.Web.UI.WebControls.TableCell)">
            <summary>
            Sets the value of the property CurrentFilterValue as a text on the TextBox control found in the cell
            </summary>
            <param name="cell"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.GetCurrentFilterValueFromControl(System.Web.UI.WebControls.TableCell)">
            <summary>
            Gets the value of the Text property of a textbox control found in the cell, used to set the value of the CurrentFilterValue property.
            </summary>
            <param name="cell"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.EvaluateFilterExpression(Telerik.Web.UI.GridFilteringItem)">
            <summary>
            Gets a string representing a filter expression, based on the settings of all
            columns that support filtering, with a syntax ready to be used by a
            <strong>DataView</strong> object
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.SetupFilterControls(System.Web.UI.WebControls.TableCell)">
            <summary>
            Instantiates the filter controls (text-box, image.) in the cell given
            </summary>
            <param name="cell"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.GetFilterFunctionsList(Telerik.Web.UI.GridFilterListOptions,System.Collections.ArrayList)">
            <summary>
            Gets a list of filter functions based on the settings of the <see cref="P:Telerik.Web.UI.GridColumn.FilterListOptions"/> property.
            </summary>
            <param name="options"></param>
            <param name="sourceList"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.PrepareCell(System.Web.UI.WebControls.TableCell,Telerik.Web.UI.GridItem)">
            <summary>
            Prepares the cell of the item given, when grid is rendered. 
            </summary>
            <param name="cell"></param>
            <param name="item"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.ResetCurrentFilterValue(Telerik.Web.UI.GridFilteringItem)">
            <summary>
            Resets the values of the <see cref="P:Telerik.Web.UI.GridColumn.CurrentFilterFunction"/> and
            <see cref="P:Telerik.Web.UI.GridColumn.CurrentFilterValue"/> properties to their defaults.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.GetSortExpression">
            <summary>
            By default returns the SortExpression of the column. If the SortExpression is not set explicitly, it would be calculated, based on the
            DataField of the column.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.GetDefaultGroupByExpression">
            <summary>
            Calculate the default Group-by expression based on the settings of the
            <strong>DataField</strong> (if available)
            </summary>
            <remarks>
            For example, if a column's DataField is ProductType the default group-by expression will be:
            'ProductType Group By ProductType'
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.Clone">
            <remarks>
            	<strong>Note:</strong> When implementing/overriding this method be sure to call
            the base member or call <strong>CopyBaseProperties</strong> to be sure that all base
            properties will be copied accordingly
            </remarks>
            <summary>Creates a copy of the current column.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.IsBoundToFieldName(System.String)">
            <summary>
            This method returns true if the column is bound to the specified field
            name.
            </summary>
            <param name="name">The name of the DataField, which will be checked.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.CompareTo(System.Object)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridColumn.GetCustomPropertyDataFields(System.Object)">
            <summary>
            	<para>This method should be used in case you develop your own column. It returns the
            full list of <strong>DataFields</strong> used by the column.
            <strong>GridTableView</strong> uses this to decide which <strong>DataFields</strong>
            from the specified <strong>DataSource</strong> will be inlcuded in case of
            <strong>GridTableView.RetrieveAllDataFields</strong> is set to
            <strong>false</strong>.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.CurrentFilterValue">
            <summary>Gets or sets a value of the currently applied filter.</summary>
            <value>
            This property returns a <strong><em>string</em></strong>, representing the
            current value, for which the columns is filtered (the value, which the user has entered
            in the filtering text box).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.AndCurrentFilterValue">
            <summary>Gets or sets a value of the currently applied second filter condition value.</summary>
            <value>
            This property returns a <strong><em>string</em></strong>, representing the current second filter condition
            value, for which the column is filtered (the value, which the user has entered
            in the second filtering text box of the filter header context menu).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Sortable">
            <summary>
            Should override if sorting will be disabled
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.CurrentFilterFunction">
            <summary>Gets or sets the current function used for filtering.</summary>
            <value>
            	<para>This property returns a value of type
                <strong><em>Telerik.Web.UI.GridKnownFunction</em></strong>. The possible
                values are:</para>
            	<para>GridKnownFunction.<strong><em>Between</em></strong><br/>
                GridKnownFunction.<strong><em>Contains</em></strong><br/>
                GridKnownFunction.<strong><em>Custom</em></strong><br/>
                GridKnownFunction.<strong><em>DoesNotContain</em></strong><br/>
                GridKnownFunction.<strong><em>EndsWith</em></strong><br/>
                GridKnownFunction.<strong><em>EqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>GreaterThan</em></strong><br/>
                GridKnownFunction.<strong><em>GridKnownFunction</em></strong><br/>
                GridKnownFunction.<strong><em>GreaterThanOrEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>IsEmpty</em></strong><br/>
                GridKnownFunction.<strong><em>IsNull</em></strong><br/>
                GridKnownFunction.<strong><em>LessThan</em></strong><br/>
                GridKnownFunction.<strong><em>LessThanOrEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>NoFilter</em></strong><br/>
                GridKnownFunction.<strong><em>NotBetween</em></strong><br/>
                GridKnownFunction.<strong><em>NotEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>NotIsEmpty</em></strong><br/>
                GridKnownFunction.<strong><em>NotIsNull</em></strong><br/>
                GridKnownFunction.<strong><em>StartsWith</em></strong></para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.AndCurrentFilterFunction">
            <summary>Gets or sets the current second filter condition function.</summary>
            <value>
            	<para>This property returns a value of type
                <strong><em>Telerik.Web.UI.GridKnownFunction</em></strong>. The possible
                values are:</para>
            	<para>GridKnownFunction.<strong><em>Contains</em></strong><br/>
                GridKnownFunction.<strong><em>Custom</em></strong><br/>
                GridKnownFunction.<strong><em>DoesNotContain</em></strong><br/>
                GridKnownFunction.<strong><em>EndsWith</em></strong><br/>
                GridKnownFunction.<strong><em>EqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>GreaterThan</em></strong><br/>
                GridKnownFunction.<strong><em>GridKnownFunction</em></strong><br/>
                GridKnownFunction.<strong><em>GreaterThanOrEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>IsEmpty</em></strong><br/>
                GridKnownFunction.<strong><em>IsNull</em></strong><br/>
                GridKnownFunction.<strong><em>LessThan</em></strong><br/>
                GridKnownFunction.<strong><em>LessThanOrEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>NoFilter</em></strong><br/>        
                GridKnownFunction.<strong><em>NotEqualTo</em></strong><br/>
                GridKnownFunction.<strong><em>NotIsEmpty</em></strong><br/>
                GridKnownFunction.<strong><em>NotIsNull</em></strong><br/>
                GridKnownFunction.<strong><em>StartsWith</em></strong></para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FilterListOptions">
            <summary>
            Gets or sets the value indincating which of the filter functions should be
            available for that column. For more information see
            <see cref="T:Telerik.Web.UI.GridFilterListOptions"/> enumaration.
            </summary>
            <value>
            	<para>This property returns a value of type
                <strong><em>Telerik.Web.UI.GridFilterListOptions</em></strong>. The possible
                values are:</para>
            	<para>
                Telerik.Web.UI.GridFilterListOptions.<strong><em>AllowAllFilters</em></strong><br/>
                Telerik.Web.UI.GridFilterListOptions.<strong><em>VaryByDataType</em></strong><br/>
                Telerik.Web.UI.GridFilterListOptions.<strong><em>VaryByDataTypeAllowCustom</em></strong></para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.AutoPostBackOnFilter">
            <summary>
            Gets or sets a value indicating whether the grid should automatically postback,
            when the value in the filter text-box changes, and the the focus moves to another
            element.
            </summary>
            <value>
            This property returns a <strong><em>Boolean</em></strong> value, indicating
            whether the grid will postback, once the focus moves to another element, and the text
            of the filtering textbox has changed.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FilterImageUrl">
            <summary>
            Gets or sets a string representing the URL to the image used in the filtering
            box.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the URL to the image used in the
            filtering box.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.SortAscImageUrl">
            <summary>
            Gets or sets a string representing the URL to the image used for sorting in
            ascending mode.
            </summary>
            <value>
            A <strong><em>string,</em></strong> representing the URL to the image used for
            sorting in ascending mode
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.SortDescImageUrl">
            <summary>
            Gets or sets a string representing the URL to the image used for sorting in
            descending mode.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the URL to the image used for
            sorting in descending mode
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.DataTypeName">
            <summary>
            Gets the string representation of the <strong>DataType</strong> property of the
            column, needed for the client-side grid instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FilterTemplate">
            <summary>
            Gets or sets the template, which will be rendered in the filter item cell of the column.
            </summary>
            <value>A value of type ITemplate.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FooterStyle">
            <summary>
            Style of the cell in the footer item of the grid, corresponding to the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FooterText">
            <summary>
            	<para>Use the <b>FooterText</b> property to specify your own or determine the current
            text for the footer section of the column.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.HeaderImageUrl">
            <summary>
            Gets or sets the URL of an image in the cell in the header item of the grid
            current column. You can use a relative or an absolute URL.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.HeaderStyle">
            <summary>
            Style of the cell in the header item of the grid, corresponding to the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.HeaderText">
            <summary>
            Use the <b>HeaderText</b> property to specify your own or determine the current
            text for the header section of the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.ItemStyle">
            <summary>
            Style of the cells, corresponding to the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Owner">
            <summary>
            Gets the instance of the GridTableVeiw wich owns this column instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.SortExpression">
            <summary>
            The string representing a filed-name from the DataSource that should be used when grid sorts by this column. For example:
            'EmployeeName'
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.GroupByExpression">
            <summary>
            	<para>The group-expression that should be used when grid is grouping-by this column. If
            not set explicitly, RadGrid will generate a group expression based on the DataField of
            the column (if available), using the <see cref="M:Telerik.Web.UI.GridColumn.GetDefaultGroupByExpression"/>
            method.</para>
            	<para>The grouping can be turned on/off for columns like GridBoundColumn using
            <see cref="P:Telerik.Web.UI.GridColumn.Groupable"/> property.</para>
            	<para>For more information about the Group-By expressions and their syntax, see
            <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> class.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.ShowSortIcon">
            <summary>
            Get or Sets a value indicating whether a sort icon should appear next to the
            header button, when a column is sorted.
            </summary>
            <value>
            This property returns a <strong><em>Boolean</em></strong> value, indicating
            whether a sort icon should appear next to the header button, when a column is
            sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Visible">
            <summary>
            Gets or sets a value indicating if the column and all corresponding cells would be rendered.
            </summary>
            <value>
            This property returns a <strong><em>Boolean</em></strong> value, indicating
            whether the cells corresponding to the column, would be visible on the client, and
            whether they would be rendered on the client.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Display">
            <summary>
            Gets or sets a value indicating whether the cells corresponding to a column would be rendered with a 'display:none' style attribute (end-user-not-visible).
            To completely prevent cells from rendering, set the <see cref="P:Telerik.Web.UI.GridColumn.Visible"/> property to false, instead of the Display property.
            </summary>
            <value>
            This property returns a <strong><em>Boolean</em></strong> value, indicating
            whether the cells corresponding to the column would be rendered with a 'display:none'
            style attribute (end-user-not-visible).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.OwnerID">
            <summary>
            Gets the value of the ClientID property of the GridTableView that owns this column. This property value is used by grid's client object
            </summary>
            <value>
            The return value of this property is a <strong><em>string</em></strong>,
            representing the clientID of the GridTableView, which contains the column. This is the
            ClientID of the grid instance, followed by "_" and another string, representing the
            place of the container in the control hierarchy. For the MasterTableView, the default
            OwnerID for a column will look like: "RadGrid1_ctl01".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.OwnerGridID">
            <summary>
            Gets the value of the ClientID property of the RadGrid instance that owns this column. This property value is used by grid's client object
            </summary>
            <value>
            This property returns a <strong><em>string</em></strong>, which represents a the
            ClientID for the control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Resizable">
            <summary>
            Gets or sets a value indicating whether the column can be resized client-side.
            You can use this property, by setting it to false, to disable resizing for a particular
            column, while preserving this functionality for all the other columns.
            </summary>
            <value>
            The property returns a <strong><em>boolean</em></strong> value, indicating
            whether the column can be resized on the client.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Reorderable">
            <summary>
            Gets or sets a value indicating whether the column can be reordered client-side.
            </summary>
            <value>
            This property returns a boolean value, indicating whether the column is
            reorderable. The default value is true, meaning that the column can be reordered, using
            the SwapColumns client side method.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.Groupable">
            <summary>
            Gets or sets a value indicating whether you will be able to group
            Telerik RadGrid by that column. By default this property is
            <strong>true</strong>.
            </summary>
            <value>
            A boolean value of either <strong>true</strong>, when you are able to group by
            that column, or <strong>false.</strong>
            </value>
            <remarks>
            See Telerik RadGrid manual for details about using grouping. If
            <strong>Groupable</strong> is <em>false</em> the column header cannot be dragged to the
            <a href="RadGrid~Telerik.Web.UI.RadGrid~GroupPanel.html">GroupPanel</a>.
            <!--DXMETADATA end -->
            </remarks>
            <example>
            	<para>Using this property, you can easily turn off grouping for one or more
                columns, while still allowing this functionality for all other columns in the
                control. This is demonstrated in the code sample below:</para>
            	<pre>
            &lt;radG:GridBoundColumn<br/>   DataField="ContactName"<br/>   HeaderText="ContactName"<br/>   SortExpression="ContactName"<br/>   UniqueName="ContactName"<br/>   Groupable="false"&gt;<br/>&lt;/radG:GridBoundColumn&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.ColumnType">
            <summary>
            Gets the string representation of the type-name of this instance. The value is
            used by RadGrid to determine the type of the columns persisted into the ViewState, when
            recreating the grid after postback. The value is also used by the grid client-side
            object. This property is read only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.HeaderButtonType">
            <summary>
            	<para>Gets or sets the button type of the button rendered in the header item, used
                for sorting. The possible values that this property accepts are:</para>
            	<para>Telerik.Web.UI.GridHeaderButtonType.<strong>LinkButton</strong><br/>
                Telerik.Web.UI.GridHeaderButtonType.<strong>PushButton</strong><br/>
                Telerik.Web.UI.GridHeaderButtonType.<strong>TextButton</strong></para>
            </summary>
            <value>
            The return value for this property is of type
            <strong>Telerik.Web.UI.GridHeaderButtonType</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.OrderIndex">
            <summary>
                Gets or sets the order index of column in the collection of
                <see cref="P:Telerik.Web.UI.GridTableView.RenderColumns"/>. Use
                <see cref="M:Telerik.Web.UI.GridTableView.SwapColumns(System.String,System.String)"/> method for reordering the columns.
            </summary>
            <remarks>
            	<para>
                    We recommend using this property only for getting the order index for a
                    specific column instead of setting it. Use
                    <see cref="M:Telerik.Web.UI.GridTableView.SwapColumns(System.String,System.String)"/> method for reordering columns.
                </para>
            	<para>Note that changing the column order index will change the order of the cells
                in the grid items, after the grid is rebound.</para>
            	<para>
                    The value of the property would not affect the order of the column in the
                    <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> collection.
                </para>
            </remarks>
            <value>
            	<strong>integer</strong> representing the current column index. You should have
            in mind that <strong>GridExpandColumn</strong> and <strong>RowIndicatorColumn</strong>
            are always in front of data columns so that's why you columns will start from index
            2.
            </value>
            <example>
            	<code lang="CS" title="OrderIndex c# example" description="Get the current indeces of columns in Telerik RadGrid and change their indeces via SwapColumns method (C# version). This code will print all the indeces prior and after swapping the columns.">
            protected void RadGrid1_PreRender(object sender, EventArgs e)
                {
                    foreach (GridBoundColumn column in RadGrid1.MasterTableView.Columns)
                    {
                        Response.Write(column.UniqueName + column.OrderIndex + "&lt;br&gt;");
                    }
             
                    RadGrid1.MasterTableView.SwapColumns(2, 4);
             
                    foreach (GridBoundColumn column in RadGrid1.MasterTableView.Columns)
                    {
                        Response.Write(column.UniqueName + column.OrderIndex + "&lt;br&gt;");
                    }
                }
                </code>
            	<code lang="VB" title="OrderIndex vb example" description="Get the current indeces of columns in Telerik RadGrid and change their indeces via SwapColumns method (VB version). This code will print all the indeces prior and after swapping the columns.">
            Protected Sub RadGrid1_PreRender(sender As Object, e As EventArgs)
               Dim column As GridBoundColumn
               For Each column In  RadGrid1.MasterTableView.Columns
                  Response.Write((column.UniqueName + column.OrderIndex + "&lt;br&gt;"))
               Next column
               
               RadGrid1.MasterTableView.SwapColumns(2, 4)
               
               Dim column As GridBoundColumn
               For Each column In  RadGrid1.MasterTableView.Columns
                  Response.Write((column.UniqueName + column.OrderIndex + "&lt;br&gt;"))
               Next column
            End Sub 'RadGrid1_PreRender
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.IsEditable">
            <summary>
            	<para>This property is supposed for developers of new grid columns. It gets whether
                a column is currently ReadOnly. The ReadOnly property determines whether a column
                will be editable in edit mode. A column for which the ReadOnly property is true
                will not be present in the automatically generated edit form.</para>
            </summary>
            <value>A boolean value, indicating whether a specific column is editable.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.EditFormColumnIndex">
            <summary>
            	<para>Specifies the vertical collumn number where this column will appear when
                using EditForms editing mode and the form is autogenerated. See the remarks for
                details.</para>
            </summary>
            <remarks>
            	<para>A practicle example of using this property is to deterimine the number of
                columns rendered in the edit form. If there will be only one column in the rendered
                edit form, when we retrieve the value of this property for a column, as shown in
                the code below:</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<code class="Vb">
            							<font size="2">protected void RadGrid1_PreRender(<font class="keyword">object</font> sender, EventArgs e)<br/>    {<br/>
            								<font class="keyword">int</font> columnIndex = RadGrid1.MasterTableView.Columns[3].EditFormColumnIndex;<br/>    }</font>
            						</code>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<para>it will be equal to 0, meaning the the column belongs to the first group of
                columns in the edit form.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.UniqueName">
            <summary>
            Each column in Telerik RadGrid has an <strong>UniqueName</strong>
            property (string). This property is assigned automatically by the designer (or the
            first time you want to access the columns if they are built dynamically).
            </summary>
            <remarks>
            	<para>You can also set it explicitly, if you prefer. However, the automatic
                generation handles most of the cases. For example a
                <strong>GridBoundColumn</strong> with <strong>DataField</strong> 'ContactName'
                would generate an <strong>UniqueName</strong> of 'ContactName'.</para>
            	<para>Additionally, there may be occasions when you will want to set the UniqueName
                explicitly. You can do so simply by specifying the custom name that you want to
                choose:</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<code class="Vb">
            							<font size="2">&lt;radG:GridTemplateColumn<br/> UniqueName=<font class="string">"ColumnUniqueName"</font>&gt;<br/>&lt;/radG:GridTemplateColumn&gt;</font>
            						</code>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            </remarks>
            <example>
            	<para>When you want to access a cell within a <strong>grid</strong> item, you
                should use the following code to obtain the right cell:</para>
            	<para class="sourcecode">TableCell cell = gridDataItem["ColumnUniqueName"];</para>
            	<para>or</para>
            	<para class="sourcecode">gridDataItem["ColumnUniqueName"].Text =</para>
            	<para>to access the <strong>Text</strong> property</para>
            	<para>Using this property you can index objects of type
                <strong>%</strong>GridDataItem:GridDataItem% or
                <strong>%</strong>GridEditFormItem:GridEditFormItem% (or all descendants of
                <strong>%</strong>GridEditableItem:GridEditableItem% class)</para>
            	<para>In events related to creating, binding or for commands in items, the event
                argument has a property <strong>Item</strong> to access the item that event is
                fired for. To get an instance of type <strong>GridDataItem</strong>, you should use
                the following:</para>
            	<para class="sourcecode">//presume e is the event argument object<br/>
                if (e.Item is GridDataItem)<br/>
                {<br/>
                GridDataItem gridDataItem = e.Item as GridDataItem;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.EditFormHeaderTextFormat">
            <summary>
            String that formats the HeaderText when the column is displayed in an edit form
            </summary>
            <example>
            	<para>The following code demonstrates one possible use of this property:</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap"></td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<para>In this way, once a record enters edit mode, the name of the column will be
                followed by the custom text entered in the example above.</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radG:GridBoundColumn DataField="CustomerID"<br/>
                 HeaderText="CustomerID"<br/>
                 SortExpression="CustomerID"<br/>
                 UniqueName="CustomerID"<br/>
            		<strong>EditFormHeaderTextFormat="{0} is currently in edit mode"</strong>
                &gt;<br/>
                &lt;/radG:GridBoundColumn&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.DataType">
            <summary>
            	<para>Gets or sets (see the Remarks) the type of the data from the DataField as it
                was set in the DataSource.</para>
            </summary>
            <remarks>
            	<para>The DataType property supports the following base .NET Framework data
                types:</para>
            	<list type="bullet">
            		<item>Boolean</item>
            		<item>Byte</item>
            		<item>Char</item>
            		<item>DateTime</item>
            		<item>Decimal</item>
            		<item>Double</item>
            		<item>Int16</item>
            		<item>Int32</item>
            		<item>Int64</item>
            		<item>SByte</item>
            		<item>Single</item>
            		<item>String</item>
            		<item>TimeSpan</item>
            		<item>UInt16</item>
            		<item>UInt32</item>
            		<item>UInt64</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FilterControlWidth">
            <summary>
            	<para>Use this property to set width to the filtering control (depending on the column type, this may be a normal textbox, RadNumericTextBox, RadDatePicker, etc.)</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumn.FilterControlAltText">
            <summary>
            Gets or Sets the text value which should be added to alt attribute of the filter control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDragDropColumn.DragImageToolTip">
            <summary>
            Gets or sets the ToolTip of the Drag image for the GridDragDropColumn
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDragDropColumn.DragImageUrl">
            <summary>
            Gets or sets the URL of the drag image that will be displayed 
            instead of the default Drag image for the GridDragDropColumn
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDragDropColumn.UniqueName">
            <summary>
            Gets or sets the unique name for this column
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.CellProtectionElement">
            <summary>
             Allows to change the 'protected' state of a cell
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.CellProtectionElement.IsProtected">
            <summary>
            Determines whether a given cell is protected (read-only) when the parent Worksheet is protected. Default value: true
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageFooterElement">
            <summary>
            Used to add a footer to the exported page. Visible in Print mode only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageFooterElement.Data">
            <summary>
            Represents the footer's contents. Visible in Print mode only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageFooterElement.Margin">
            <summary>
            Defines the margin between the footer element and the page. Applies in Print mode only.
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageHeaderElement">
            <summary>
            Used to add a header to the exported page. Visible in Print mode only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageHeaderElement.Data">
            <summary>
            Represents the header's contents. Visible in Print mode only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageHeaderElement.Margin">
            <summary>
            Defines the margin between the footer element and the page. Applies in Print mode only.
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageOrientationType">
            <summary>
            Represents the page orientation when viewing the exported file in Print mode
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageLayoutElement">
            <summary>
            Used to change the page orientation and alignment. The effect of these settings is visible in Print mode only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageLayoutElement.IsCenteredVertical">
            <summary>
            Determines whether the page will be centered vertically
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageLayoutElement.IsCenteredHorizontal">
            <summary>
            Determines whether the page will be centered horizontally
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageLayoutElement.PageOrientation">
            <summary>
            Sets the page orientation to portrait (default) or landscape
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageMarginsElement">
            <summary>
            Used to set the page margins.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageMarginsElement.Right">
            <summary>
            Determines the size of the Right margin        
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageMarginsElement.Left">
            <summary>
            Determines the size of the Left margin        
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageMarginsElement.Top">
            <summary>
            Determines the size of the Top margin        
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageMarginsElement.Bottom">
            <summary>
            Determines the size of the Bottom margin        
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>Value</c> is out of range.</exception>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.PageSetupElement">
            <summary>
            Used to change various aspects of the exported page - header/footer, layout, margins, etc.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageSetupElement.PageMarginsElement">
            <summary>
            Determines the page margins
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageSetupElement.PageLayoutElement">
            <summary>
            Determines the page orientation
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageSetupElement.PageFooterElement">
            <summary>
            Used to setup a page footer's margins and content
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.PageSetupElement.PageHeaderElement">
            <summary>
            Used to setup a page header's margins and content
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement">
            <summary>
            Provides the possibility to change various options for the current Worksheet.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.AllowFreezePanes">
            <summary>
            Specifies whether the panes of a worksheet window are frozen.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.FitToPage">
            <summary>
            Fits the whole content in a single page when enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.Print">
            <summary>
            Used to set the Printer-related settings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.PageSetup">
            <summary>
            Used to set the Page-related settings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.Zoom">
            <summary>
            Determines the zoom level in Print Preview mode (in percentages)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.ActivePane">
            <summary>
            Determines the active pane.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.SplitVerticalOffest">
            <summary>
            Contains the number of points from the left of the window that a worksheet is split vertically.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.SplitHorizontalOffset">
            <summary>
            Contains the number of points from the top of the window that a worksheet is split horizontally.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.LeftColumnRightPaneNumber">
            <summary>
            Contains the column number of the leftmost visible column in the right pane of a worksheet window.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetOptionsElement.TopRowBottomPaneNumber">
            <summary>
            Contains the row number of the topmost visible row in the bottom pane of a worksheet window.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAnimationSettings.AllowColumnReorderAnimation">
            <summary>
            Gets or sets whether column animations are enabled for RadGrid when column reorder is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAnimationSettings.ColumnReorderAnimationDuration">
            <summary>
            Gets or sets the duration of the reorder animation when column reorder is enabled in RadGrid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAnimationSettings.AllowColumnRevertAnimation">
            <summary>
            Gets or sets whether revert animations are enabled for RadGrid when column drag-to-group is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAnimationSettings.ColumnRevertAnimationDuration">
            <summary>
            Gets or sets the duration of the revert animation when column drag-to-group is enabled in RadGrid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.ReminderCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.ICallbackCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.DismissReminderCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.SnoozeReminderCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.AppointmentsPopulatingEventArgs.SchedulerInfo">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' GetAppointments method.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' GetAppointments method.
            </value>
            <remarks>
            You can replace this object with your own implementation of
            <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> in order
            to pass additional information to the provider.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.AppointmentInsertEventArgs.SchedulerInfo">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Insert method.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Insert method.
            </value>
            <remarks>
            You can replace this object with your own implementation of
            <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> in order
            to pass additional information to the provider.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.AppointmentDeleteEventArgs.SchedulerInfo">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Delete method.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Delete method.
            </value>
            <remarks>
            You can replace this object with your own implementation of
            <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> in order
            to pass additional information to the provider.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.IReminderDialogStrings">
            <summary>
            The localization strings to be used in ReminderDialog.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Reminder.TryParse(System.String)">
            <summary>
            Creates a list of reminders from their string representation.
            </summary>
            <param name="input">The string to parse.</param>
            <returns>List of reminders if the parsing succeeded or null (<strong>Nothing</strong> in Visual Basic) if the parsing failed.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Reminder.TryParse(System.String,System.Collections.Generic.IList{Telerik.Web.UI.Reminder}@)">
            <summary>
            Creates a list of reminders from their string representation.
            </summary>
            <param name="input">The string to parse.</param>
            <param name="parsedReminders">
            Output parameter that contains the list of reminders if the
            parsing succeeded or null (<strong>Nothing</strong> in Visual Basic) if the parsing failed.
            </param>
            <returns>True if <em>input</em> was parsed successfully, false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Reminder.Clone">
            <summary>
            	Creates a new Reminder object that is a clone of the current instance.
            </summary>
            <returns>
            	A new Reminder object that is a clone of the current instance.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.Reminder.Attributes">
            <summary>
            Gets the collection of arbitrary attributes that do not correspond to properties on the reminder.
            </summary>
            <value>
            A <see cref="T:System.Web.UI.AttributeCollection">AttributeCollection</see> of name and value pairs.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.ReminderCollection.ToString">
            <summary>
            Converts all reminders in the collection to their string representation.
            </summary>
            <remarks>
            Use <see cref="M:Telerik.Web.UI.Reminder.TryParse(System.String)">Reminder.TryParse</see> to convert the string representation back to reminder objects.
            </remarks>
            <returns>The string representation of all reminders in the collection.</returns>
        </member>
        <member name="P:Telerik.Web.UI.ReminderSettings.Enabled">
            <summary>
            Gets or sets a value indicating whether the user can view and edit reminders for appointments.
            </summary>
            <value>
            	<strong>true</strong> if the user is allowed to view and edit reminders for appointments;
            	<strong>false </strong> otherwise. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.ExternalStyleSheetUtils.ResolveSecurePath(System.String)">
            <summary>
            From a relative path and a specified style sheet folder, returns the relative path of that file in that folder (Secure Path).
            </summary>
            <param name="styleSheetRelativePath">The relative path to the file inside the project file structure.</param>
            <returns>The Secure Path of the relative path. Throws an exception if the relative path falls outside of the style sheet folder.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ExternalStyleSheetUtils.GetSecurePathFromHash(System.String)">
            <summary>
            Gets the secure path of a file, inside a style sheet folder, from its hash.
            </summary>
            <param name="hash">The hash of the secure path of the file.</param>
            <returns>The secure path of the file; null if the hash does not match a file in any of the secure folders.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ExternalStyleSheetUtils.LoadContent(System.String)">
            <summary>
            Loads the content of the file specified with its secure path.
            </summary>
            <param name="securePath">The path to the file.</param>
            <returns>The content of the file.</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadTagCloud">
            <summary>
            Telerik RadTagCloud is a UI component for ASP.NET AJAX applications, which displays a panel (cloud) of commonly used or related keywords.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadTagCloud.generateFromText">
            <summary>
            Indicates whether the GenerateTagsFromText method was called.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.BindToEnumerableData(System.Collections.IEnumerable)">
            <summary>
            Binds the TagCloud to a IEnumerable data source
            </summary>
            <param name="dataSource">IEnumerable data source</param>
        </member>
        <member name="F:Telerik.Web.UI.RadTagCloud.originalEnabled">
            <summary>
            The Enabled property is reset in AddAttributesToRender in order
            to avoid setting disabled attribute in the control tag (this is
            the default behavior). This property has the real value of the 
            Enabled property in that moment.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.OnItemDataBound(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Executed right after the item is databound to the data source.
            </summary>
            <param name="item"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.OnItemClick(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Executed when a TagCloud item is clicked.
            </summary>
            <param name="item"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.GetLinearCoefficient(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Calculates the coefficient when Linear distribution is used.
            </summary>
            <param name="item">The TagCloud item for which the coefficient is calculated.</param>
            <returns>The coefficient of the TagCloud item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.GetLogarithmicCoefficient(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Calculates the coefficient when Logarithmic distribution is used.
            </summary>
            <param name="item">The TagCloud item for which the coefficient is calculated.</param>
            <returns>The coefficient of the TagCloud item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.CalculateFontSize(Telerik.Web.UI.RadTagCloudItem,System.Double)">
            <summary>
            Calculates the font size of a TagCloud item using <strong>Logarithmic</strong> or <strong>Linear</strong> distribution. 
            The font-size is calculated based on the weight of the item.
            </summary>
            <param name="item">The TagCloud item for which the font size is calculated.</param>
            <param name="coefficient">The Logarithmic or Linear coefficient used for the calculations.</param>
            <returns>The calculated font size of the TagCloud item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.CalculateColor(Telerik.Web.UI.RadTagCloudItem,System.Double)">
            <summary>
            Calculates the color of a TagCloud item using <strong>Logarithmic</strong> or <strong>Linear</strong> distribution.
            The (fore) color is calculated based on the weight of the certain item.
            </summary>
            <param name="item">The TagCloud item for which the color is calculated.</param>
            <param name="coefficient">The Logarithmic or Linear coefficient used for the calculations.</param>
            <returns>The calculated color of the TagCloud item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.GetItemColor(Telerik.Web.UI.RadTagCloudItem,System.Double)">
            <summary>
            Gets the fore color of the TagCloud item based on the ForeColor, MinColor and MaxColor properties.
            </summary>
            <param name="item">The item to set the fore color to.</param>
            <param name="coefficient">The coefficient needed to calculate the fore color of the item.</param>
            <returns>The fore color of the item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.CreateWordMap(System.String)">
            <summary>
            Returns a dictionary of &lt;string,int&gt; that represents the frequency of a given word in a text.
            </summary>
            <param name="text">The text from which word map (dictionary will be created.</param>
            <returns>The dictionary containing the word and the number of times it occurs in the text.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.GenerateTagsFromText(System.String)">
            <summary>
            Populates the Items collection of the current TagCloud, from a provided text.
            Every word is weighted based on its occurence in the text.
            </summary>
            <param name="text">The text from which a weighted cloud will be generated.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.ReadTextFromTextFile(System.String)">
            <summary>
            Reads a .TXT file and returns the text as a string. If the file does not exist, string.Empty is returned.
            </summary>
            <param name="fileName">The physical path to the file.</param>
            <returns>The text from the file.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.ReadTextFromURL(System.String)">
            <summary>
            Reads an HTML document from the provided URL and returns the text as a string. 
            If the URL does not exist, or the HTML document is not valid, a string.Empty is returned.
            </summary>
            <param name="url">The URL from which the text will be scanned and returned.</param>
            <returns>The text, with stripped HTML tags, of the HTML document on the provided URL.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.CalculateImportance(Telerik.Web.UI.RadTagCloudItemCollection)">
            <summary>
            Finds the least and most important item (i.e. the item with max and min occurance).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.RenderDefaultDesigner(System.Web.UI.HtmlTextWriter)">
            <summary>
            Writes a default cloud of items at design-time.
            </summary>
            <param name="writer">The HTML text writer.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.ExcludeWord(System.String,System.String[])">
            <summary>
            Checks whether a word should be excluded from a given text.
            </summary>
            <param name="word">The word to check.</param>
            <param name="wordsToEscape">The list of words that should be excluded from a text.</param>
            <returns>The bool value that indicates whether the word is excluded or not.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.IsValidCharacter(System.Char,System.String,System.Int32,System.String,System.String)">
            <summary>
            Checks whether a given character is a valid character that should be included in a word.
            </summary>
            <param name="c">The character to check.</param>
            <param name="invalidChars">String of invalid characters. 
            If empty string is provided the Char.IsPunctuation is used to check for validity.</param>
            <param name="charPosition">The 0-based index position of the character in the given text.</param>
            <param name="text">The text where the character occurs.</param>
            <param name="punctuationCharactersValid">The string of the valid punctuation characters.</param>
            <returns>The bool value indicating whether a character is a valid one. 
            Usually, letters and numbers are valid word characters.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.IsPunctuation(System.Char,System.String)">
            <summary>
            Checks whether a character is punctuation mark (i.e. ,.!?"'-).
            </summary>
            <param name="c">The character to check.</param>
            <param name="invalidChars">String of punctuation marks. 
            If empty string is provided Char.IsPunctuation method is used to check for punctuation.</param>
            <returns>The bool value indicating whether a character is a punctutation mark.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.IsCharSurroundedByAlphaNumeric(System.Char,System.Int32,System.String)">
            <summary>
            Checks whether a given punctuation mark (i.e. an invalid character) is surronded by alpha numeric characters. 
            If yes the character is considered a valid one and added to the word.
            </summary>
            <param name="c">The character to check.</param>
            <param name="charPosition">The 0-based index position of the character in the text.</param>
            <param name="text">The text where the character occurs.</param>
            <returns>The bool value indicating whether the character is considered a valid one.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.StripHtml(System.String,System.Boolean)">
            <summary>
            Strips the HTML from a given text (containing an XHTML markup) and returns the inner text of the HTML elements.
            The text should be a vaild HTML. The method does not strip the CSS between opening and closing &lt;style&gt; tags,
            because it assumes that all the CSS occurs in the &lt;head&gt; tag, which is not searched for text by the TagCloud.
            </summary>
            <param name="text">The text containing the HTML to strip.</param>
            <param name="isFullHtmlDocument">The bool value that indicates whether the string passed is full Html document. 
            When passing InnerHtml of an element set this value to <b>false</b>.
            The text within the &lt;body&gt; element is taken into consideration when this parameter is <b>true</b>.</param>
            <returns>String containing the "clean" text. 
            An empty string is returned if the text does not contain a &lt;body&gt; element.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.SkipAttribute(System.String,System.Char,System.Int32)">
            <summary>
            Skips an attribute in a given HTML text, and returns the 0-based index position of the closing attribute qoute.
            </summary>
            <param name="text">The HTML text containing the attribute.</param>
            <param name="character">The current charater in the text.</param>
            <param name="position">The 0-based index position of the current character.</param>
            <returns>The 0-based index position of the closing qoute if the current character is the opening qoute.
            The same position is returned if the current character is not a valid opening qoute.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloud.SkipScriptTag(System.String,System.Char,System.Int32,System.Boolean,System.Int32)">
            <summary>
            Skips script tags and returns the 0-based index position of the closing &lt;script&gt; tag.
            </summary>
            <param name="text">The HTML text containing the script tag.</param>
            <param name="character">The current character of the text.</param>
            <param name="position">The 0-based index position of the current character of the text.</param>
            <param name="isScript">Bool value indicating whether the current character is within a &lt;script&gt; element.</param>
            <param name="textLength">The length of the text.</param>
            <returns>The 0-based index position of the closing &lt;script&gt; tag. 
            The current position is returned if the character is outside a script element.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.BaseSiteUrl">
            <summary>
            Gets the web site's base url.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientItemClicking">
            <summary>
            The name of the javascript function called when an item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientItemClicked">
            <summary>
            The name of the javascript function called after an item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientLoad">
            <summary>
            The name of the javascript function when the control loads.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTagCloud.ItemDataBound">
            <summary>
            Adds or removes an event handler method from the ItemDataBound event.
            The event is fried right after RadTagCloudItem is databound. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTagCloud.ItemClick">
            <summary>
            Adds or removes an event handler method from the ItemClick event.
            The event is fired after RadTagCloudItem is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientItemsRequesting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadTagCloud</strong> items are about to be populated from web service. The event is cancellable
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientItemsRequested">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadTagCloud</strong> items were just populated from web service.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.OnClientItemsRequestFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the <strong>RadTagCloud</strong> when loading has failed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MinimalWeight">
            <summary>
            Holds the minimal Weight of all the TagCloud items.
            (Usually, this is the least frequent word.)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MaximalWeight">
            <summary>
            Holds the maximal Weight of all the TagCloud items.
            (Usually, this is the most frequent word.)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud._shouldRetrieveTextFromSource">
            <summary>
            Gets or sets a value indicating whether the <b>GenerateTagsFromText</b> method should be called.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.ListOfSortedItems">
            <summary>
            Gets or sets a SortedList of items, which is used to more efficently sort the items by weight. 
            The list is then used to calculate the <strong>MaxNumberOfItems</strong>, when <strong>TakeTopWeightedItems</strong> is specified to true.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.AppendDataBoundItems">
            <summary>
            Gets or sets a bool value that indicates whether tagCloud items are cleared before data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make Telerik RadTagCloud postback to the server 
            on item click.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataNavigateUrlField">
            <summary>
            Gets or sets the field of the data source that provides the URL (NavigateUrl) content of the TagCloud items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataNavigateUrlFormatString">
            <summary>
            Gets or sets the formatting string used to control how data bound to the NavigateUrl property of the TagCloud item is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataTextField">
            <summary>
            Gets or sets the field of the data source that provides the text content of the TagCloud items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataTextFormatString">
            <summary>
            Gets or sets the formatting string used to control how data bound to the Text property of the TagCloud item is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataToolTipField">
            <summary>
            Gets or sets the field of the data source that provides the ToolTip content of the TagCloud items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataToolTipFormatString">
            <summary>
            Gets or sets the formatting string used to control how data bound to the ToolTip property of the TagCloud item is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataValueField">
            <summary>
            Gets or sets the field of the data source that provides the value content of the TagCloud items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.DataWeightField">
            <summary>
            Gets or sets the field of the data source that provides the weight of the TagCloud items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.Items">
            <summary>
            Gets the collection of all TagCloud items currently present in the TagCloud.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.Distribution">
            <summary>
            Gets or sets a value indicating how the font-size will be distributed among the different words.
            There is Linear and Logarithmic Distribution. 
            (Use Telerik.Web.UI.TagCloudDistribution.Linear or Telerik.Web.UI.TagCloudDistribution.Logarithmic)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MaxColor">
            <summary>
            Gets or sets the fore color to the most important (frequent) item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MinColor">
            <summary>
            Gets or sets the fore color to the least important (frequent) item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MaxFontSize">
            <summary>
            Gets or sets the font-size to the most important (frequent) item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MinFontSize">
            <summary>
            Gets or sets the font-size to the least important (frequent) item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MinimalWeightAllowed">
            <summary>
            Gets or sets the minimal weight a TagCloud item could have. 
            If the weight of the item is less than this value, the keyword will not appear in the cloud.
            </summary>
            <remarks>The default value is <strong>0.0</strong>, which means the items will not be filtered.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.MaxNumberOfItems">
            <summary>
            Gets or sets the number of visible items in the cloud.
            </summary>
            <remarks>The default value is <strong>0</strong>, which means the items will not be filtered.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.Target">
            <summary>
            Gets or sets the target window or frame to display the new content when the TagCloud item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.TakeTopWeightedItems">
            <summary>
            Must be used with <strong>MaxNumberOfItems</strong> property.<br/>
            Gets or sets a bool value indicating whether the [MaxNumberOfItems] visible items will be the ones with the biggest weight, 
            or the ones that occur first in the DataSource. The default value is <strong>false</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.PostBackUrl">
            <summary>
            The URL to post to when an item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.RenderItemWeight">
            <summary>
            Gets or sets a bool value indicating whether the item weight will be rendered. It is rendered right next to the item's text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.Sorting">
            <summary>
            Gets or sets a value indicating how the TagCloud items will be sorted.
            Possible values are alphabetic and weighted sorting in ascending/descending order.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.PunctuationCharacters">
            <summary>
            Gets or sets the punctuation characters that will not be included in the TagCloud, when generated from text source.<br/>
            When none are specified, the Char.IsPunctuation(Char c) method is used to check whether a character is punctuation mark.
            The property should be used in conjuction with the following properties: Text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.PunctuationCharactersValid">
            <summary>
            Gets or sets the punctuation characters that will be considered valid (i.e. they should be considered as a character of the word),
            if they appear between alphanumeric characters.
            For example the following words are valid, although they have punctuation characters: ASP.NET, web-site, telerik.com, web.config
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.WordsToExclude">
            <summary>
            Gets or sets the array of words that will be excluded from the TagCloud, when the cloud is generated from a text source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.Text">
            <summary>
            Gets or sets text from which a weighted cloud will be generated. Most frequent words are more important.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.TextFile">
            <summary>
            Gets or sets the text (.TXT) file from which text will be retrieved to generate tags.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.TextUrl">
            <summary>
            Gets or sets the URL from which text will be retrieved to generate tags.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloud.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadTagCloud.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public TagCloudDataItem[] WebServiceMethodName(int itemIndex, int itemCount)
            			{
            				List&lt;TagCloudDataItem&gt; result = new List&lt;TagCloudDataItem&gt;();
            				TagCloudDataItem item; 
            				for (int i = 0; i &lt; itemCount; i++)
            				{
            					item = new RadTagCloudItemData();
            					item.accessKey = "";
            					item.navigateUrl = "";
            					item.tabIndex = "";
            					item.text = "";
            					item.toolTip = "";
            					item.value = "";
            					item.weight = 0;
            					result.Add(item);
            				}
            				return result.ToArray();
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadTagCloudItem">
            <summary>
            This class represents a <see cref="T:Telerik.Web.UI.RadTagCloud"/> item.
            </summary>
            <summary>
            This class represents a <see cref="T:Telerik.Web.UI.RadTagCloud"/> item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor">
            <summary>
            Creates a TagCloud item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor(System.Object)">
            <summary>
            Creates a TagCloud item from a given data item object.
            </summary>
            <param name="dataItem">The data item object.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor(System.String)">
            <summary>
            Creates a TagCloud item from given text.
            </summary>
            <param name="text">The text of the TagCloud item to set.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor(System.String,System.Double)">
            <summary>
            Creates a TagCloud item from given text and weight
            </summary>
            <param name="text">The text of the TagCloud item to set.</param>
            <param name="weight">The weight of the TagCloud item to set.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor(System.String,System.Double,System.String)">
            <summary>
            Creates a TagCloud item from given text, weight and navigateUrl.
            </summary>
            <param name="text">The text of the TagCloud item to set.</param>
            <param name="weight">The weight of the TagCloud item to set.</param>
            <param name="navigateUrl">The navigateUrl of the TagCloud item to set.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItem.#ctor(System.String,System.Double,System.String,System.String)">
            <summary>
            Creates a TagCloud item from given text, weight, navigateUrl and toolTip.
            </summary>
            <param name="text">The text of the TagCloud item to set.</param>
            <param name="weight">The weight of the TagCloud item to set.</param>
            <param name="navigateUrl">The navigateUrl of the TagCloud item to set.</param>
            <param name="toolTip">The toolTip of the TagCloud item to set.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.AccessKey">
            <summary>
            Gets or sets the access key of the TagCloud item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.DataItem">
            <summary>
            Gets or sets the data object (from the data source) associated with the TagCloud item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.Index">
            <summary>
            Gets the zero based index of the item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.NavigateUrl">
            <summary>
            Gets or sets the URL of the TagCloud item.
            When the item is clicked, the user is redirected to the specified url.
            </summary>
            <value>
            The URL of the TagCloud item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.TabIndex">
            <summary>
            Gets or sets the TabIndex of the tagCloud item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.Text">
            <summary>
            Gets or sets the text that is displayed in the TagCloud item.
            </summary>
            <value>
            The text of the TagCloud item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.Value">
            <summary>
            Gets or sets the Value of the TagCloud item.
            </summary>
            <value>
            The value of the TagCloud item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.ToolTip">
            <summary>
            Gets or sets the ToolTip of the TagCloud item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItem.Weight">
            <summary>
            Gets or sets the weight, that determines how the TagCloud item (tag, keyword) will be styled.
            Greater value means, greater font-weight and size.
            </summary>
            <value>
            The weight of the TagCloud item.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadTagCloudItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadTagCloudItem">RadTagCloudItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadTagCloud">RadTagCloud</see> control.
            </summary>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.#ctor(Telerik.Web.UI.RadTagCloud)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTagCloudItemCollection">RadTagCloudItemCollection</see> class.
            </summary>
            <param name="parent">The parent TagCloud control.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Add(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Adds an item to the TagCloud Items collection. 
            If the Weight of the item is smaller than the <strong>MinimalWeightAllowed</strong>,
            the item will not be added to the collection.
            </summary>
            <param name="item">The TagCloud item to add.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Contains(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Checks whether a TagCloud item is present in the collection.
            </summary>
            <param name="item">The TagCloud item to check.</param>
            <returns>Bool value indicating whether the TagCloud item is present in the Items collection.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.CopyTo(Telerik.Web.UI.RadTagCloudItem[],System.Int32)">
            <summary>
            Copies the TagCloud Items collection to an array, starting at a particular index.
            </summary>
            <param name="array">The one-dimensional, zero-based index destination array, to which the elements of the Items collection will be copied.</param>
            <param name="index">The zero-based index of the array, at which the copying begins.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.IndexOf(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Gets the index of the TagCloud item in the Items collection
            </summary>
            <param name="item">The TagCloud item the index of.</param>
            <returns>The index of the TagCloud item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Insert(System.Int32,Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Inserts a TagCloud item at the specified index.
            </summary>
            <param name="index">The index (position), where the TagCloud item will be inserted.</param>
            <param name="item">The TagCloud item to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Remove(Telerik.Web.UI.RadTagCloudItem)">
            <summary>
            Removes the passed TagCloud item from the Items collection.
            </summary>
            <param name="item">The TagCloud item to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.RemoveAt(System.Int32)">
            <summary>
            Removes a TagCloud item from the Items collection, at the specified index.
            </summary>
            <param name="index">The index of the TagCloud item.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Sort">
            <summary>
            Sorts the current list of TagCloud items. The collection itself is not modified.
            If any of the <strong>MinimalWeightAllowed</strong>, <strong>MaxNumberOfItems</strong> and <strong>TakeTopWeightedItems</strong>
            properties are set, the collection will be filtered too.
            </summary>
            <returns>The collection of sorted items.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Filter">
            <summary>
            Filters the current collection (the collection itself is not modified) of items based on the values of 
            <strong>MinimalWeightAllowed</strong>, <strong>MaxNumberOfItems</strong> and <strong>TakeTopWeightedItems</strong> properties, 
            and returns the filtered collection of TagCloud items.
            </summary>
            <returns>
            The collection of filtered items.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Min">
            <summary>
            Finds the TagCloud item with minimal weight.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.Max">
            <summary>
            Finds the TagCloud item with maximal weight.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.FindMinMax">
            <summary>
            Finds the TagCloud item with maximal/minimal weight. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.SortByWeight(Telerik.Web.UI.RadTagCloudItemCollection,System.Boolean)">
            <summary>
            Sort the items using the ListOfSortedItems
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTagCloudItemCollection.FilterItems(System.Boolean,Telerik.Web.UI.RadTagCloudItemCollection)">
            <summary>
            Filters the list of items based on a maximum number of items allowed in the tag cloud.
            </summary>
            <param name="takeTopWeightedItems">Should the items with the highest weight be taken.</param>
            <param name="filteredItems">The list of items to filter.</param>
            <returns>Returns the filtered list of TagCloud items</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItemCollection.ItemContainer">
            <summary>
            The parent TagCloud control, which the items collection belongs to.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTagCloudItemCollection.List">
            <summary>
            Gets an IList object of the Items collection of the TagCloud.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockCloseCommand">
            <summary>
            Represents the Close command item in a RadDock control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockCommand">
            <summary>
            Represents a custom command item in a RadDock control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommand.#ctor">
            <summary>
            Initializes a new instance of the DockCommand class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommand.#ctor(System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
            Initializes a new instance of the DockCommand class with the specified 
            clientTypeName, cssClass, name, text and autoPostBack
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommand.CreateElement">
            <summary>
            Creates an HtmlAnchor control with applied CssClass and Title
            </summary>
            <returns>An HtmlAnchor control</returns>
        </member>
        <member name="M:Telerik.Web.UI.DockCommand.GetCssClass">
            <summary>
            Returns the value of the CssClass property. This method should be overridden
            in multistate commands, such as DockToggleCommand, to return one of the 
            CssClass and AlternateCssClass properties, depending on the command state.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommand.GetText">
            <summary>
            Returns the value of the Text property. This method should be overridden
            in multistate commands, such as DockToggleCommand, to return one of the 
            Text and AlternateText properties, depending on the command state.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.ClientTypeName">
            <summary>
            Specifies the name of the type of the client object, which 
            will be instantiated when the command is initialized for the first time.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.Name">
            <summary>
            Specifies the name of the command. The value of this property is used 
            to determine on the server which command was clicked on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.Text">
            <summary>
            Specifies the text, which will be displayed as tooltip when the user
            hovers the mouse cursor over the command button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server 
            automatically occurs when the user drags the RadDock control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.OnClientCommand">
            <summary>
            Gets or sets the client-side script that executes when the Command event is raised
            on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommand.CssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class rendered by the Command item
            on the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCloseCommand.#ctor">
            <summary>
            Initializes a new instance of the DockCloseCommand class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCloseCommand.Text">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockCloseCommand.CssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockCloseCommand.Name">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.DockCommandCollection">
            <summary>
            A collection of DockCommand objects in a RadDock control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommandCollection.Add(Telerik.Web.UI.DockCommand)">
            <summary>
            Appends a DockCommand to the end of the collection
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockCommandCollection.Insert(System.Int32,Telerik.Web.UI.DockCommand)">
            <summary>
            Inserts a DockCommand to a given index in the collection
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockCommandEventArgs">
            <summary>
            Provides data for the DockCommand event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockCommandEventArgs.Command">
            <summary>
            Gets the DockCommand item which initiated the event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockCommandEventHandler">
            <summary>
            Represents the method that handles a DockCommand event
            </summary>
            <param name="sender">The source of the event</param>
            <param name="e">A DockCommandEventArgs that contains the event data</param>
        </member>
        <member name="T:Telerik.Web.UI.DockExpandCollapseCommand">
            <summary>
            Represents the ExpandCollapse command item in a RadDock control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockToggleCommand">
            <summary>
            Represents a two state command item in a RadDock control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockToggleCommand.#ctor">
            <summary>
            Initializes a new instance of the DockToggleCommand class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockToggleCommand.#ctor(System.String,System.String,System.String,System.String,System.String,System.String,System.Boolean)">
            <summary>
            Initializes a new instance of the DockToggleCommand class with the specified 
            clientTypeName, cssClass, alternateCssClass, name, text, alternateText and autoPostBack
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockToggleCommand.GetCssClass">
            <summary>
            Returns the value of the CssClass property if the value of the State 
            property is Primary, otherwise AlternateCssClass.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockToggleCommand.GetText">
            <summary>
            Returns the value of the Text property if the value of the State property is
            Primary, otherwise AlternateText.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockToggleCommand.State">
            <summary>
            Gets or sets the initial state of the command item. If the value of this property
            is Primary, the values of the Text and CssClass properties will be used initially,
            otherwise the command will use AlternateText and AlternateCssClass.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockToggleCommand.AlternateCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class rendered by the Command item
            on the client when State is Alternate.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockToggleCommand.AlternateText">
            <summary>
            Specifies the text, which will be displayed as tooltip when the user
            hovers the mouse cursor over the command button when State is Alternate.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockExpandCollapseCommand.#ctor">
            <summary>
            Initializes a new instance of the DockExpandCollapseCommand class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.State">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.Text">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.AlternateText">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.CssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.AlternateCssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockExpandCollapseCommand.Name">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.DockState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.DockState.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.DockState.Deserialize(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.DockState.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.DockZoneID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Width">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.ExpandedHeight">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Height">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Index">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Top">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Left">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Closed">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Resizable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Collapsed">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Pinned">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.UniqueName">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Tag">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Title">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockState.Text">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.IDockLayout">
            <summary>
            Implements methods, needed by RadDock or RadDockZone to register with
            a control which will take care of the dock positions.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IDockLayout.RegisterDock(Telerik.Web.UI.RadDock)">
            <summary>
            Each dock will use this method in its OnInit event to register
            with the IDockLayout. This is needed in order the layout to 
            be able to manage the dock position, set on the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IDockLayout.UnRegisterDock(Telerik.Web.UI.RadDock)">
            <summary>
            Each dock will use this method in its OnUnload event to unregister
            with the IDockLayout. This is needed in order the layout to 
            be able to manage the dock state properly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IDockLayout.RegisterDockZone(Telerik.Web.UI.RadDockZone)">
            <summary>
            Each zone will use this method in its OnInit event to register
            with the IDockLayout. This is needed in order the layout to 
            be able to manage the dock positions, set on the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IDockLayout.UnRegisterDockZone(Telerik.Web.UI.RadDockZone)">
            <summary>
            Each zone will use this method in its OnUnload event to unregister
            with the IDockLayout.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IDockLayout.SetDockParent(Telerik.Web.UI.RadDock,System.String)">
            <summary>
            Docks the RadDock control inside a child zone with ID=newParentClientID
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDock">
            <summary>
            RadDock is a control, which enables the developers to move, dock, 
            expand/collapse any DHTML/ASP.NET content
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.OnDockPositionChanged(Telerik.Web.UI.DockPositionChangedEventArgs)">
            <summary>
            Raises the DockPositionChanged event.
            </summary>
            <remarks>
            This method notifies the server control that it should perform actions to
            ensure that it should be docked in the specified RadDockZone on the client.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.OnCommand(Telerik.Web.UI.DockCommandEventArgs)">
            <summary>
            Raises the Command event and allows you to handle the Command event directly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.Dock(System.String)">
            <summary>
            Docks the RadDock control in the zone with ClientID equal to dockZoneID.
            </summary>
            <remarks>
            The RadDock control should be placed into a RadDockLayout in order this 
            method to work. It is not necessary the layout to be direct parent of the 
            RadDock control.
            </remarks>
            <param name="dockZoneID">The ClientID of the RadDockZone control, where
            the control should be docked.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.Dock(Telerik.Web.UI.RadDockZone)">
            <summary>
            Docks the RadDock control in the specified RadDockZone.
            </summary>
            <param name="dockZone">The RadDockZone control where the control should be docked.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.Undock">
            <summary>
            Removes the RadDock control from its parent RadDockZone.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.GetUniqueName">
            <summary>
            Returns the unique name for the dock, based on the UniqueName and
            the ID properties.
            </summary>
            <returns>
            A string, containing the UniqueName property of the dock, or its 
            ID, if the UniqueName property is not set.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.GetState">
            <summary>
            Returns a DockState object, containing data about the current state
            of the RadDock control.
            </summary>
            <returns>A DockState object, containing data about the current state
            of the RadDock control. This object could be passed to ApplyState()
            method.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.ApplyState(Telerik.Web.UI.DockState)">
            <summary>
            Applies the data from the supplied DockState object.
            </summary>
            <param name="state">
            A DockState object, containing data about the state, which should
            be applied on the RadDock control.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.OnInit(System.EventArgs)">
            <summary>
            overridden. Handles the Init event. Inherited from WebControl.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.CreateChildControls">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.Render(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.AddStyleAttributes(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.CreateControlStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDock.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.AutoPostBack">
            <summary>
            Gets or sets a value, indicating whether the control will initiate postback
            when it is docked/undocked or its position changes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Closed">
            <summary>
            Gets or sets a value, indicating whether the control is closed (style="display:none;").
            </summary>
            <remarks>
            When the value of this property is true, the control will be hidden, but its HTML will 
            be rendered on the page
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.CloseText">
            <summary>
            Gets or sets the tooltip of the CloseCommand when the corresponding 
            property was not explicitly set on the command object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Collapsed">
            <summary>
            Gets or sets a value, indicating whether the control is collapsed.
            </summary>
            <remarks>
            When the value of this property is true, the content area of the control 
            will not be visible.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.CollapseText">
            <summary>
            Gets or sets the tooltip of the ExpandCollapseCommand when the dock
            is not collapsed and the corresponding property was not explicitly set 
            on the command object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Commands">
            <summary>
            Gets a collection of DockCommand objects representing the individual commands within the control titlebar.
            </summary>
            <value>
            A DockCommandCollection that contains a collection of DockCommand objects representing the individual commands within the control titlebar.
            </value>
            <remarks>
            Use the Commands collection to programmatically control the commands buttons within the control titlebar. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.CommandsAutoPostBack">
            <summary>
            Gets or sets a value, indicating whether the control will initiate postback
            when its command items are clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.ContentContainer">
            <summary>
            Gets the control, where the ContentTemplate will be instantiated in.
            </summary>
            <remarks>
            You can use this property to programmatically add controls to the content area. If you add controls
            to the ContentContainer the Text property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.ContentTemplate">
            <summary>
            Gets or sets the System.Web.UI.ITemplate that contains the controls which will be 
            placed in the control content area.
            </summary>
            <remarks>
            You cannot set this property twice, or when you added controls to the ContentContainer. If you set
            ContentTemplate the Text property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.DefaultCommands">
            <summary>
            Gets or sets the value, defining the commands which will appear
            in the RadDock titlebar when the commands collection is not modified.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.DockHandle">
            <summary>
            Gets or sets the value, defining the behavior of the control titlebar and grips.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.DockMode">
            <summary>
            Gets or sets a value, indicating whether the control could be left undocked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.DockZoneID">
            <summary>
            Gets the ClientID of the RadDockZone, where the control is docked. When the control is undocked, 
            this property returns string.Empty.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.EnableAnimation">
            <summary>
            Gets or sets a value, indicating whether the control will have animation.
            </summary>
            <remarks>
            When the value of this property is true, the RadDock will be moved, expanded, collapsed,
            showed and hide with animations
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.EnableDrag">
            <summary>
            Gets or sets a value, indicating whether the control could be dragged.
            </summary>
            <remarks>
            When the value of this property is true, the control could be dragged with the mouse
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.EnableRoundedCorners">
            <summary>
            Gets or sets a value, indicating whether the control will be with rounded corners.
            </summary>
            <remarks>
            When the value of this property is true, the control will have rounded corners.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.ExpandText">
            <summary>
            Gets or sets the tooltip of the ExpandCollapseCommand when the dock
            is collapsed and the corresponding property was not explicitly set 
            on the command object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.ForbiddenZones">
            <summary>
            Specifies the UniqueNames of the RadDockZone controls, where
            the RadDock control will <strong>NOT</strong> be allowed to dock.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.AllowedZones">
            <summary>
            Specifies the UniqueNames of the RadDockZone controls, where
            the RadDock control will be <strong>allowed</strong> to dock.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Height">
            <summary>
            Gets or sets the height of the RadDock control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.ExpandedHeight">
            <summary>
            Gets or sets the expanded height of the RadDock control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Index">
            <summary>
            Gets the position of the RadDock control in its parent zone. If undocked returns -1.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.LayoutID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Left">
            <summary>
            Gets or sets the horizontal position of the RadDock control in pixels. This 
            property is ignored when the RadDock control is docked into a RadDockZone.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientCommand">
            <summary>
            Gets or sets the client-side script that executes when a RadDock Command event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientDragStart">
            <summary>
            Gets or sets the client-side script that executes when a RadDock DragStart event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientDragEnd">
            <summary>
            Gets or sets the client-side script that executes when a RadDock DragEnd event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientDrag">
            <summary>
            Gets or sets the client-side script that executes when a RadDock Drag event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientDockPositionChanged">
            <summary>
            Gets or sets the client-side script that executes when the RadDock control changes its position
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientDockPositionChanging">
            <summary>
            Gets or sets the client-side script that executes when the RadDock control is dropped on to a zone
            before it changes its position
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientInitialize">
            <summary>
            Gets or sets the client-side script that executes after the RadDock client-side obect initializes
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientResizeStart">
            <summary>
            Gets or sets the client-side script that executes when a RadDock ResizeStart event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.OnClientResizeEnd">
            <summary>
            Gets or sets the client-side script that executes when a RadDock ResizeEnd event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Resizable">
            <summary>
            Gets or sets a value, indicating whether the control is resizable.
            </summary>
            <remarks>
            When the value of this property is true, the control will be resizable 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Pinned">
            <summary>
            Gets or sets a value, indicating whether the control is pinned.
            </summary>
            <remarks>
            When the value of this property is true, the control will retain its position
            if the page scrolled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.PinText">
            <summary>
            Gets or sets the tooltip of the PinUnpinCommand when the dock
            is not pinned and the corresponding property was not explicitly set 
            on the command object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Tag">
            <summary>
            Gets or sets the additional data, which could be saved in the DockState.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Text">
            <summary>
            Gets or sets the text which will appear in the control content area. If the ContentTemplate
            or the ContentContainer contain any controls, the value of this property is ignored.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Title">
            <summary>
            Gets or sets the text which will appear in the control titlebar area. If the TitlebarTemplate
            or the TitlebarContainer contain any controls, the value of this property is ignored.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.TitlebarContainer">
            <summary>
            Gets the control, where the TitlebarTemplate will be instantiated in.
            </summary>
            <remarks>
            You can use this property to programmatically add controls to the titlebar. If you add controls
            to the TitlebarContainer the Title property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.TitlebarTemplate">
            <summary>
            Gets or sets the System.Web.UI.ITemplate that contains the controls which will be 
            placed in the control titlebar.
            </summary>
            <remarks>
            You cannot set this property twice, or when you added controls to the TitlebarContainer. If you set
            TitlebarTemplate the Title property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Top">
            <summary>
            Gets or sets the vertical position of the RadDock control in pixels. This 
            property is ignored when the RadDock control is docked into a RadDockZone.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.UniqueName">
            <summary>
            Gets or sets the unique name of the control, which allows the parent RadDockLayout to
            automatically manage its position. If this property is not set, the control ID will be
            used instead. RadDockLayout will throw an exception if it finds two RadDock controls with
            the same UniqueName.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.UnpinText">
            <summary>
            Gets or sets the tooltip of the PinUnpinCommand when the dock
            is pinned and the corresponding property was not explicitly set 
            on the command object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.Width">
            <summary>
            Gets or sets the width of the RadDock control
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDock.DockPositionChanged">
            <summary>
            Occurs when the control is docked in another RadDockZone, or its
            in its current zone position was changed.
            </summary>
            <remarks>
            Notifies the server control to perform the needed actions to ensure that
            it should be docked in the specified RadDockZone on the client.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadDock.Command">
            <summary>
            Occurs when a command is clicked.
            </summary>
            <remarks>
            The event handler receives an argument of type DockCommandEventArgs containing
            data related to this event.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.TagKey">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDock.CssClassFormatString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.EditorContentAreaMode">
            <summary>
            This enum is used to list the valid modes for the RadEditor content area.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorContentAreaMode.Iframe">
            <summary>
            The content area will be rendered as a separate document (iframe element).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorContentAreaMode.Div">
            <summary>
            The content area will be rendered in the same document (div element).
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDockLayout">
            <summary>
            Workflow:
            1). OnInit - ensure that the framework will call TrackViewState, LoadViewState and SaveViewState.
            	We expect that all child docks will be created here.
            2). TrackViewState - raise LoadDockLayout event in order to let the developer to supply 
            	the initial parents of the registered docks, because the docks could be created with 
            	different parents than needed.
            2a). LoadViewState - loads and applies the dock parents from the ViewState in order to persist
            	the dock positions between the page postbacks.
            3). LoadPostData - returns true to ensure that RaisePostDataChangedEvent()
            3a). Dock_DockZoneChanged - this event is raised by each dock in its LoadPostData method.
            	We handle this event and store the pair UniqueName/NewDockZoneID in the _clientPositions
            	Dictionary. This Dictionary will be used in #4.
            4). RaisePostDataChangedEvent - sets the parents of the registered docks according their
            	positions, set on the client. These positions are stored in the _clientPositions Dictionary.
            5). OnLoad, other events, such as Click, Command, etc. If you create a dock here it will be
            	rendered on the page, but if it is not recreated in the next OnInit, it will not persist
            	its position, set on the client!
            6). SaveViewState - stores the dock parents in the ViewState in order to persist their positions
            	between the page postbacks. 
            7). Page_SaveStateComplete - raises the SaveDockLayout event to let the developer to save
            	the state in a database or other storage medium.
            Note: The dock parents will be stored in the ViewState if StoreLayoutInViewState is set 
            to true (default). Otherwise the developer should take care of the dock positions when the page
            is posted back.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.OnInit(System.EventArgs)">
            <summary>
            overridden. Handles the Init event. Inherited from Control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Page_InitComplete(System.Object,System.EventArgs)">
            <summary>
            The docks must be already created. We will apply their order
            and if there is a state information, we will apply it.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.LoadViewState(System.Object)">
            <summary>
            We will apply the dock positions saved in the ViewState here.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.OnPreRender(System.EventArgs)">
            <summary>
            Overridden. Raises the PreRender event
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.RenderChildren(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.SaveViewState">
            <summary>
            We will loop through all registered docks and will retrieve their
            positions and state. Those positions will be saved in the ViewState
            if StoreLayoutInViewState is true.
            </summary>
            <returns>base.SaveViewState()</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.SetRegisteredDockParents(System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.Int32})">
            <summary>
            Reorders the docks in the control tree, according the supplied parameters.
            </summary>
            <remarks>
            This method will check for uniqueness of the UniqueNames of the registered docks. If
            there are two docks with equal unique names an exception will be thrown.
            </remarks>
            <param name="parents">A Dictionary, containing UniqueName/DockZoneID pairs.</param>
            <param name="indices">A Dictionary, containing UniqueName/Index pairs.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.SetDockParent(Telerik.Web.UI.RadDock,System.String)">
            <summary>
            Docks the dock to a zone with ClientID = newParentClientID.
            </summary>
            <param name="dock">The dock which should be docked.</param>
            <param name="newParentClientID">The ClientID of the new parent.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.GetRegisteredDocksParents">
            <summary>
            Cycles through all registered docks and retrieves their parents. The Dictionary
            returned by this method could be passed to SetRegisteredDockParents().
            </summary>
            <returns>
            A dictionary, containing UniqueName/DockZoneID pairs.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.GetRegisteredDocksIndices">
            <summary>
            Cycles through all registered docks and retrieves their indices. The Dictionary
            returned by this method could be passed to SetRegisteredDockParents().
            </summary>
            <returns>
            A dictionary, containing UniqueName/Index pairs.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.GetRegisteredDocksState(System.Boolean)">
            <summary>
            Cycles through all registered docks and retrieves their state, depending
            on the omitClosedDocks parameter and the value of the Closed property of 
            each RadDock control. The List returned by this method could be used to 
            recreate the docks when the user visits the page again.
            </summary>
            <returns>
            A List, containing UniqueName/DockState pairs.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.GetRegisteredDocksState">
            <summary>
            Cycles through all registered docks and retrieves their state. The List
            returned by this method could be used to recreate the docks when the user
            visits the page again.
            </summary>
            <returns>
            A List, containing UniqueName/DockState pairs.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.OnLoadDockLayout(Telerik.Web.UI.DockLayoutEventArgs)">
            <summary>
            Raises the LoadDockLayout event
            </summary>
            <param name="e">A DockLayoutEventArgs that contains the event data</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.OnSaveDockLayout(Telerik.Web.UI.DockLayoutEventArgs)">
            <summary>
            Raises the SaveDockLayout event
            </summary>
            <param name="e">A DockLayoutEventArgs that contains the event data</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.EnsureUniqueName(Telerik.Web.UI.RadDock,System.Collections.Generic.List{System.String})">
            <summary>
            Ensures that the dock has unique UniqueName or ID properties to its
            RadDockLayout. If the UniqueName or the ID are not unique, throws an
            exception.
            </summary>
            <returns>
            A string, containing the UniqueName property of the dock, or its 
            ID if the UniqueName property is not set. Got from the RadDock.GetUniqueName().
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Telerik#Web#UI#IDockLayout#RegisterDock(Telerik.Web.UI.RadDock)">
            <summary>
            Each dock will use this method in its OnInit event to register
            with the RadDockLayout. This is needed in order the layout to 
            be able to manage the dock position, set on the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Telerik#Web#UI#IDockLayout#RegisterDockZone(Telerik.Web.UI.RadDockZone)">
            <summary>
            Each zone will use this method in its OnInit event to register
            with the RadDockLayout. This is needed in order the layout to 
            be able to manage the dock positions, set on the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Telerik#Web#UI#IDockLayout#SetDockParent(Telerik.Web.UI.RadDock,System.String)">
            <summary>
            Docks the dock to a zone with ClientID = newParentClientID.
            </summary>
            <param name="dock">The dock which should be docked.</param>
            <param name="newParentClientID">The ClientID of the new parent.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Telerik#Web#UI#IDockLayout#UnRegisterDock(Telerik.Web.UI.RadDock)">
            <summary>
            Each dock will use this method in its OnUnload event to unregister
            with the IDockLayout. This is needed in order the layout to 
            be able to manage the dock state properly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.Telerik#Web#UI#IDockLayout#UnRegisterDockZone(Telerik.Web.UI.RadDockZone)">
            <summary>
            Each zone will use this method in its OnUnload event to unregister
            with the IDockLayout.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadDockLayout._clientPositions">
            <summary>
            Each dock will store its position on the client in the DockZoneChanged event.
            In RaisePostDataChangedEvent() RadDockLayout will reorganize the docks according
            this information.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadDockLayout._registeredDocks">
            <summary>
            All docks, which are direct or indirect children of the RadDockLayout
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadDockLayout._registeredZones">
            <summary>
            All zones, which are direct or indirect children of the RadDockLayout
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockLayout.GetEmbeddedSkinNames">
            <summary>
            Returns the names of all embedded skins. Used by Telerik.Web.Examples.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.RegisteredDocks">
            <summary>
            Returns all registered docks with this RadDockLayout control.
            </summary>
            <returns>
            Returns a read only collection containing all registered docks.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.RegisteredZones">
            <summary>
            Returns all registered zones with this RadDockLayout control.
            </summary>
            <returns>
            Returns a read only collection containing all registered zones.
            </returns>
        </member>
        <member name="E:Telerik.Web.UI.RadDockLayout.LoadDockLayout">
            <summary>
            RadDockLayout will raise the LoadDockLayout event in order to retrieve the parents
            which will be automatically applied on the registered docks. The client
            positions will be applied in a later stage of the lifecycle.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDockLayout.SaveDockLayout">
            <summary>
            RadDockLayout will raise this event to let the developer to save
            the parents of the registered docks in a database or other storage
            medium. These parents can be later supplied to the LoadDockLayout event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.StoredPositions">
            <summary>
            This is the container where we will store the dock positions, set on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.StoredIndices">
            <summary>
            This is the container where we will store the dock positions, set on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.StoreLayoutInViewState">
            <summary>
            By default RadDockLayout will store the positions of its inner docks in
            the ViewState. If you want to store the positions in other storage medium
            such as a database, or the Session, set this property to false. Setting this 
            property to false will also minimize the ViewState usage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.Skin">
            <summary>Gets or sets the skin name for the child controls' user interface.</summary>
            <value>A string containing the skin name for the control user interface. The 
            default is string.Empty.</value>
            <remarks>
            <para>
            If this property is set, RadDockLayout will set the Skin and EnableEmbeddedSkins properties
            of each child RadDock and RadDockZone, unless their Skin property is not explicitly set.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            <para>
            If the Skin property is set, RadDockLayout will set the Skin and EnableEmbeddedSkins properties
            of each child RadDock and RadDockZone, unless their Skin property is not explicitly set.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDockLayout.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadDockZone">
            <summary>
            RadDockZone is a control which represents a virtual placeholder, where
            RadDock controls could be docked.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.GetUniqueName">
            <summary>
            Returns the unique name for the dock, based on the UniqueName and
            the ID properties.
            </summary>
            <returns>
            A string, containing the UniqueName property of the dock, or its 
            ID, if the UniqueName property is not set.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.AddedControl(System.Web.UI.Control,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.RemovedControl(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.RenderChildren(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.OnInit(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDockZone.ControlPreRender">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.Controls">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.TagKey">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.CssClassFormatString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.FitDocks">
            <summary>
            Gets or sets a value, indicating whether the control will set the size
            of the docked RadDock controls to 100% depending the control Orientation.
            </summary>
            <remarks>
            When Orientation is Horizontal, the Height of the docked RadDock controls
            will become 100%, otherwise the Width will become 100%.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.HighlightedCssClass">
            <summary>
            Gets or sets a css class name, which will be applied when the RadDockZone is highlighted.
            If this property is not set, the control will not have a highlighted style.
            </summary>       
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.UniqueName">
            <summary>
            Gets or sets the unique name of the control. If this property is not set, the control ID will be
            used instead. RadDockLayout will throw an exception if it finds two RadDockZone controls with
            the same UniqueName.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.Orientation">
            <summary>
            Gets or sets a value that specifies the dimension in which docked RadDock controls are arranged
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.MinWidth">
            <summary>
            Gets or sets the minimum width of the RadDockZone control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.MinHeight">
            <summary>
            Gets or sets the minimum height of the RadDockZone control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.LayoutID">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadDockZone.AllowedDocks">
            <summary>
            Specifies the UniqueNames of the RadDock controls, that will be <strong>allowed</strong> to dock in the zone.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSlider">
            <summary>
            Telerik RadSlider is a flexible UI component that allows users to select a value from a defined range using a smooth or step-based slider.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSlider.OnValueChanged(System.EventArgs)">
            <summary>
            Gets or sets a value indicating the server-side event handler that is called 
            when the value of the slider has been changed.
            </summary>
            <value>
            A string specifying the name of the server-side event handler that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnValueChanged</strong>
            		<font color="black">event handler that is called 
            when the value of the slider has been changed.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnValueChanged</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnValueChanged="OnValueChanged"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadSlider.OnItemDataBound(Telerik.Web.UI.RadSliderItemEventArgs)">
            <summary>
            Raises the ItemDataBound event.
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadSlider.BindToEnumerableData(System.Collections.IEnumerable)">
            <summary>
            Binds the Slider control to a IEnumerable data source
            </summary>
            <param name="dataSource">IEnumerable data source</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSlider.BindItem(Telerik.Web.UI.RadSliderItemCollection,System.Object)">
            <summary>
            Creates a Slider item based on the data item object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSlider.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds HTML attributes and styles that need to be rendered to the specified <see cref="T:System.Web.UI.HtmlTextWriterTag"></see>. This method is used primarily by control developers.
            </summary>
            <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter"></see> that represents the output stream to render HTML content on the client.</param>
        </member>
        <member name="F:Telerik.Web.UI.RadSlider.originalEnabled">
            <summary>
            The Enabled property is reset in AddAttributesToRender in order
            to avoid setting disabled attribute in the control tag (this is
            the default behavior). This property has the real value of the 
            Enabled property in that moment.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Value">
            <summary>
            Get/Set the value of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.DbValue">
            <summary>
            Gets or sets the value of <strong>RadSlider</strong> in a database-friendly way.
            </summary>
            <value>
                A <see cref="T:System.Decimal">Decimal</see> object that represents the value.
                The default value is 0m.
            </value>
            <example>
                The following example demonstrates how to use the <strong>DbValue</strong>
                property to set the value of RadSlider. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadSlider1.DbValue = tableRow["SliderValue"];
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                 RadSlider1.DbValue = tableRow("SliderValue")
            End Sub
                </code>
            </example>
            <remarks>
            This property behaves exactly as the <strong>Value</strong> property.
            The only difference is that it will not throw an exception if the new value is null or
            DBNull. Setting a null value will revert the selected value to 0m.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectionStart">
            <summary>
            Get/Set the SelectionStart of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectionEnd">
            <summary>
            Get/Set the SelectionEnd of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.IsSelectionRangeEnabled">
            <summary>
            Get/Set the IsSelectionRangeEnabled of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.EnableDragRange">
            <summary>
            Get/Set the EnableDragRange of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.IsDirectionReversed">
            <summary>
            Get/Set the IsDirectionReversed of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.LiveDrag">
            <summary>
            Get/Set the LiveDrag of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ItemType">
            <summary>
            Get/Set the ItemType of the slider items
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.TrackPosition">
            <summary>
            Get/Set the TrackPosition of the slider track
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Orientation">
            <summary>
            Get/Set orientation of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SmallChange">
            <summary>
            Get/Set the step with which the slider value will change
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.LargeChange">
            <summary>
            Get/Set the delta with which the value will change 
            when user click on the track
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.AnimationDuration">
            <summary>
            Get/Set the length of the animation
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Length">
            <summary>
            Get/Set the length of the slider including the decrease and increase handles.
            </summary>
            <remarks>
            If the slider is horizontal the width will be set, otherwise the height will be set.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Width">
            <summary>
            Get/Set the Width of the slider including the decrease and increase handles.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Height">
            <summary>
            Get/Set the Height of the slider including the decrease and increase handles.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.AutoPostBack">
            <summary>
            True to cause a postback on value change.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.MinimumValue">
            <summary>
            Get/Set the min value of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.MaximumValue">
            <summary>
            Get/Set the max value of the slider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.TrackMouseWheel">
            <summary>
            Enable/Disable whether the mouse wheel should be handled
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ShowDragHandle">
            <summary>
            Show/Hide the drag handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ShowDecreaseHandle">
            <summary>
            Show/Hide the decrease handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ShowIncreaseHandle">
            <summary>
            Show/Hide the increase handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.DecreaseText">
            <summary>
            Gets or sets the text for the decrease handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.IncreaseText">
            <summary>
            Gets or sets the text for the increase handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.DragText">
            <summary>
            Gets or sets the text for the increase handle
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.EnableServerSideRendering">
            <summary>
            Gets or sets a value, indicating whether the HTML of the control will be output from the server or created with client-side code.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ThumbsInteractionMode">
            <summary>
            Get/Set the InteractionMode of the slider thumbs
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.AppendDataBoundItems">
            <summary>
            Gets/Sets a value indicating whether the DataBound items should be appended to the Slider Items collection, or the collection
            should be cleared before creating the DataBound items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.ItemBinding">
            <summary>
            Gets the object through which the user should provide the binding information about the slider items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSlider</strong> control is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlideStart">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the sliding is started.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlideStart</strong>
            		<font color="black">client-side event handler is called before
            the sliding is started.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlideStart</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnSlideBeginHandler(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlideStart="OnSlideBeginHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlide">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            while the handle is being slided.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlide</strong>
            		<font color="black">client-side event handler that is called 
            while the handle is being slided.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlide</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnSlidingHandler(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlide="OnSlidingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlideEnd">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when slide has ended.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlideEnd</strong>
            		<font color="black">client-side event handler that is called 
            when slide has ended.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlideEnd</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnSlideHandler(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlideEnd="OnSlideHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlideRangeStart">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called just before the
            user starts sliding the selected region of RadSlider, thus changing both SelectionStart and SelectionEnd values.
            </summary>
            <value>
            A string specifying the name of the JavaScript function which will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlideRangeStart</strong>
            		<font color="black">client-side event handler is called before the
            user starts sliding the selected region.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlideRangeStart</strong> property.
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientSlideRangeStart(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlideRangeStart="OnClientSlideRangeStart"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlideRange">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            while the user is sliding the selected region, thus changing the both SelectionStart and SelectionEnd values.
            </summary>
            <value>
            A string specifying the name of the JavaScript function which will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlideRange</strong>
            		<font color="black">client-side event handler that is called 
            while the selected region is being slided.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlideRange</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientSlideRange(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlideRange="OnClientSlideRange"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientSlideRangeEnd">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the
            user releases the selected region of RadSlider, after dragging it, thus changing both SelectionStart and SelectionEnd values.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientSlideRangeEnd</strong>
            		<font color="black">client-side event handler that is called 
            when slide has ended.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientSlideRangeEnd</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientSlideRangeEnd(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientSlideRangeEnd="OnClientSlideRangeEnd"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientValueChanged">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when the value of the slider has been changed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientValueChanged</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientValueChanged(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientValueChanged="OnClientValueChanged"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientValueChanging">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            just before the value of the slider changes.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientValueChanging</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientValueChanging(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientValueChanging="OnClientValueChanging"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.OnClientItemsCreated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the items of the <strong>RadSlider</strong> control are created.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlider object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientItemsCreated</strong> property.
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientItemsCreated(sender, args)<br/>
                         {<br/>
                         var slider = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadSlider ID="RadSlider1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientItemsCreated="OnClientItemsCreated"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadSlider&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see> object that contains the items of the current RadSlider control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see> that contains the items of the current RadSlider control. By default
            	the collection is empty (RadSlider is a numeric slider).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the child items of RadSlider
            You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectedItem">
            <summary>
            Gets a RadSliderItem object that represents the selected item in the RadSlider control in case 
            <see cref="P:Telerik.Web.UI.RadSlider.ItemType">ItemType</see> of the control equals SliderItemType.Item.
            </summary>
            <returns>A RadSliderItem object that represents the selected item. If there are no items in the Items collection
            of the RadSlider control, returns null.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectedItems">
            <summary>
            Gets a collection of RadSliderItem objects that represent the items in the RadSlider control that are currently selected
            in case <see cref="P:Telerik.Web.UI.RadSlider.ItemType">ItemType</see> of the control equals SliderItemType.Item.
            </summary>
            <returns>A RadSliderItemCollection containing the selected items.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectedValue">
            <summary>
            Gets the <see cref="P:Telerik.Web.UI.RadSliderItem.Value">Value</see> of the selected item in case 
            <see cref="P:Telerik.Web.UI.RadSlider.ItemType">ItemType</see> of the RadSlider control equals SliderItemType.Item.
            </summary>
            <returns>
            The <see cref="P:Telerik.Web.UI.RadSliderItem.Value">Value</see> of the selected item. If there are no items in the Items collection
            of the RadSlider control, returns empty string.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSlider.SelectedIndex">
            <summary>
            Gets the <see cref="P:Telerik.Web.UI.RadSliderItem.Value">Value</see> of the selected item in case 
            <see cref="P:Telerik.Web.UI.RadSlider.ItemType">ItemType</see> of the RadSlider control equals SliderItemType.Item.
            </summary>
            <returns>
            The <see cref="P:Telerik.Web.UI.RadSliderItem.Value">Value</see> of the selected item. If there are no items in the Items collection
            of the RadSlider control, returns empty string.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.RadPane">
            <summary>
            RadPane class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterItem.Index">
            <summary>
            This property is being used internally by the <strong>RadSplitter</strong> control.
            Setting it may lead to unpredictable results.
            </summary>
            <remarks>
                The <strong>Index</strong> property is used internally.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.MinWidth">
            <summary>
            Sets/gets the min width to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.MaxWidth">
            <summary>
            Sets/gets the max width to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.MinHeight">
            <summary>
            Sets/gets the min height to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.MaxHeight">
            <summary>
            Sets/gets the max height to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.Scrolling">
            <summary>
            Sets/gets whether the content of the pane will get a scrollbars when it exceeds the pane area size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientCollapsed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadPane</strong> is collapsed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the pane object that raised the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientCollapsed</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientCollapsed(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientCollapsed="OnClientCollapsed"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientCollapsing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadPane</strong> is collapsed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the pane object that raised the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientCollapsing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientCollapsing(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 args.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientCollapsing="OnClientCollapsing"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientExpanded">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadPane</strong> is expanded.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the pane object that raised the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientExpanded</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientExpanded(sender, eventArgs)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientExpanded="OnClientExpanded"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientExpanding">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadPane</strong> is expanded.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the pane object that raised the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientExpanding</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientExpanding(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 args.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientExpanding="OnClientExpanding"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientResized">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the <strong>RadPane</strong> is resized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the pane object that raised the event</item>
            		<item><strong>args</strong> with the following methods:
             			<list type="bullet">
            				<item><strong>get_oldWidth</strong> - the width of the pane before the resize</item>
            				<item><strong>get_oldHeight</strong> - the height of the pane before the resize</item>
            			</list>
                    </item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientResized</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientResized(sender, eventArgs)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientResized="OnClientResized"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.OnClientResizing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadPane</strong> is resized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the event object</item>
            		<item><strong>args</strong> with the following methods:
             			<list type="bullet">
            				<item><strong>get_delta</strong> - the delta with which the pane will be resized</item>
            				<item><strong>get_resizeDirection</strong> - the direction in which the pane will be resized. You can use the Telerik.Web.UI.SplitterDirection hash to check the direction. The 2 possible values are : Forward and Backward</item>
            			</list>
                    </item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientResizing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientResizing(sender, eventArgs)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 eventArgs.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadPane ID="RadPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientResizing="OnClientResizing"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.SplitterPaneBase.PersistScrollPosition">
            <summary>
            Sets/gets whether the scrolls position will be persisted acrosss postbacks
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPane.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPane.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPane.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPane.GetExpandedSize">
            <summary>
            Get the expanded Size of the pane, when the pane is collapsed. 
            In case the Orientation of the splitter is Vertical, returns the expanded Height, otherwise, the expanded Width. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPane.SetExpandedSize(System.Web.UI.WebControls.Unit)">
            <summary>
            Set the expanded Size of the pane, when the pane is collapsed. 
            In case the Orientation of the splitter is Vertical, sets the expanded Height, otherwise, the expanded Width. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.Collapsed">
            <summary>
            Sets/gets whether the pane is collapsed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.Locked">
            <summary>
            Sets/gets whether the pane is locked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.ContentUrl">
            <summary>
            The URL of the page to load inside the pane.
            </summary>
            <remarks>
            Use the <strong>ContentUrl</strong> property if you want to load external page 
            into the pane content area.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.ShowContentDuringLoad">
            <summary>
            Gets or sets a value indicating whether the page that is loaded
            through the ContentUrl property should be shown during the loading process, or a loading sign is displayed instead.
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.Width">
            <summary>
            Get/Set the Width of the pane.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.Height">
            <summary>
            Get/Set the Height of the pane.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPane.Splitter">
            <summary>
            Reference to the parent Splitter object
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSlidingPane">
            <summary>
            RadSlidingPane class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingPane.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingPane.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingPane.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.MinHeight">
            <summary>
            Sets/gets the min height to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.Height">
            <summary>
            Sets/gets the height of the sliding pane
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.MinWidth">
            <summary>
            Sets/gets the min width to which the pane can be resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.Width">
            <summary>
            Sets/gets the width of the sliding pane
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.EnableResize">
            <summary>
            Sets/gets whether the resize bar will be active
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.DockOnOpen">
            <summary>
            Sets/gets whether the sliding pane will automatically dock on open
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.IconUrl">
            <summary>
            Gets or sets the path to an image to display for the item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.TabView">
            <summary>
            Sets/gets way the tab of the pane is rendered
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.EnableDock">
            <summary>
            Sets/gets whether the pane can be docked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.Title">
            <summary>
            The title that will be displayed when the pane is docked/docked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.ResizeText">
            <summary>
            Gets or sets the text for resize bar
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.UndockText">
            <summary>
            Gets or sets the text for undock image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.DockText">
            <summary>
            Gets or sets the text for dock image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.CollapseText">
            <summary>
            Gets or sets the text for collapse image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.Overlay">
            <summary>Gets or sets a value indicating whether the sliding pane will create an overlay element.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.OnClientDocked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSlidingPane</strong> is docked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlidingPane client object that fired the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientDocked</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientDocked(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSlidingPane ID="RadSlidingPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientDocked="OnClientDocked"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSlidingPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.OnClientUndocked">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSlidingPane</strong> is undocked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlidingPane client object that fired the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientUndocked</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientUndocked(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSlidingPane ID="RadSlidingPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientUndocked="OnClientUndocked"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSlidingPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.OnClientDocking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadSlidingPane</strong> is docked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlidingPane client object that fired the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientDocking</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientDocking(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 args.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSlidingPane ID="RadSlidingPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientDocking="OnClientDocking"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSlidingPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.OnClientUndocking">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadSlidingPane</strong> is undocked.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlidingPane client object that fired the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientUndocking</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientUndocking(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 args.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSlidingPane ID="RadSlidingPane1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientUndocking="OnClientUndocking"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSlidingPane&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingPane.SlidingZone">
            <summary>
            Reference to the parent SlidingZone object
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSlidingZone">
            <summary>
            RadSlidingZone class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SplitterItemsContainer.Items">
            <summary>
            Gets the collection of child items in the <strong>RadSplitter</strong>
            control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.SplitterItemsCollection">SplitterItemsCollection</see> that represents the children within
                the <strong>RadSplitter</strong> control. The default is empty collection.
            </value>
            <remarks>
            Use this property to retrieve the child items of the <strong>RadSplitter</strong>
            control. You can also use it to programmatically add or remove items.
            </remarks>
            <example>
                The following example demonstrates how to programmatically add items. 
                <code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                if (!Page.IsPostBack)
                {
                    RadPane pane1 = new RadPane();
                    RadSplitter1.Items.Add(pane1);
             
                    RadSplitbar splitBar1 = new RadSplitBar();
                    RadSplitter1.Items.Add(splitBar1);
                
                    RadPane pane2 = new RadPane();
                    RadSplitter1.Items.Add(pane2);
                }
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                If Not Page.IsPostBack Then
                    Dim pane1 As RadPane = New RadPane()
                    RadSplitter1.Items.Add(pane1)
             
                    Dim splitBar1 As RadSplitbar = New RadSplitBar()
                    RadSplitter1.Items.Add(splitBar1)
             
                    Dim pane2 As RadPane = New RadPane()
                    RadSplitter1.Items.Add(pane2)
            
                End If
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingZone.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingZone.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingZone.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSlidingZone.RenderPanes(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.Height">
            <summary>
            Sets/gets the height of the sliding zone
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.Width">
            <summary>
            Sets/gets the width of the sliding zone
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.ClickToOpen">
            <summary>
            Sets/gets whether the pane should be clicked in order to open
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.DockedPaneId">
            <summary>
            Sets/gets the id of the pane that is will be displayed docked
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.ExpandedPaneId">
            <summary>
            Sets/gets the id of the pane that is will be expanded
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.SlideDirection">
            <summary>
            Sets/gets the direction in which the panes will slide
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.ResizeStep">
            <summary>
            Sets/gets the step in px in which the resize bar will be moved when dragged.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.SlideDuration">
            <summary>
            Sets/gets the duration of the slide animation in milliseconds.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSlidingZone</strong> control is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSlidingZone that fired the event</item>
            		<item><strong>args</strong> </item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, eventArgs)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSlidingZone ID="RadSlidingZone1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSlidingZone&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSlidingZone.Splitter">
            <summary>
            Reference to the parent Splitter object
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSplitBar">
            <summary>
            RadSplitBar class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitBar.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitBar.RenderCollapseBars(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitBar.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitBar.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.CollapseMode">
            <summary>
            Sets/gets the collapse mode of the splitbar
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.EnableResize">
            <summary>
            Sets/gets whether the resize bar will be active
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.ResizeStep">
            <summary>
            Sets/gets the step in px in which the resize bar will be moved when dragged.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.Splitter">
            <summary>
            Reference to the parent Splitter object
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.CollapseExpandPaneText">
            <summary>
            Gets or sets the text for collapse bar images
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitBar.AdjacentPanesNames">
            <summary>
            Gets or sets the names of the adjacent panes as they appear in the tooltips for the splitbar buttons.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SplitBarCollapseMode">
            <summary>
            Specifies the collapse mode of a splitbar
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitBarCollapseMode.None">
            <summary>
            No collapse is available
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitBarCollapseMode.Forward">
            <summary>
            Forward collapse availalbe only
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitBarCollapseMode.Backward">
            <summary>
            Backward collapse availalbe only
            </summary>
            <value>3</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitBarCollapseMode.Both">
            <summary>
            Both - forward and backward collapse available
            </summary>
            <value>4</value>
        </member>
        <member name="T:Telerik.Web.UI.RadSplitter">
            <summary>
            telerik RadSplitter is a flexible UI component for ASP.NET applications which allows users to manage effectively the content size and layout.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitter.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitter.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitter.RenderEndTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSplitter.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.HeightOffset">
            <summary>
            Sets/gets the pixels that should be substracted from the splitter height when its height is defined in percent
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.FullScreenMode">
            <summary>
            Resize the splitter in 100% of the page
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.VisibleDuringInit">
            <summary>
            Whether the Splitter should be visible during its initialization or not
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.Height">
            <summary>
            Sets/gets the height of the splitter
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.Width">
            <summary>
            Sets/gets the width of the splitter
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.LiveResize">
            <summary>
            Sets/gets whether the rendering of the splitter panes is previewed during the resize
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.ResizeWithBrowserWindow">
            <summary>
            Sets/gets whether the splitter will be resized when the browser window is resized. The Width or Height properties should be defined in percent.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.ResizeWithParentPane">
            <summary>
            Sets/gets whether the splitter will resize when the parent pane is resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.Orientation">
            <summary>
            Specify the orientation of the panes inside the splitter
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.ResizeMode">
            <summary>
            Set/Get the way the panes are resized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.BorderSize">
            <summary>
            Set/Get size of the splitter border
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.PanesBorderSize">
            <summary>
            Set/Get size of the splitter panes border
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.SplitBarsSize">
            <summary>
            Set/Get size of the split bars - in pixels
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSplitter</strong> control is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSplitter that fired the event</item>
            		<item><strong>args</strong></item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSplitter ID="RadSplitter1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSplitter&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.OnClientResized">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadSplitter</strong> is resized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientResized</strong>
            		<font color="black">client-side event handler is called when the <strong>RadSplitter</strong>
                is resized.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the event object</item>
            		<item><strong>eventArgs</strong> with the following methods:
             			<list type="bullet">
            				<item><strong>get_oldWidth</strong> - the width of the splitter before the resize</item>
            				<item><strong>get_oldHeight</strong> - the height of the splitter before the resize</item>
            			</list>
                    </item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientResized</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientResizedHandler(sender, eventArgs)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSplitter ID="RadSplitter1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientResized="OnClientResizedHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSplitter&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSplitter.OnClientResizing">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before the <strong>RadSplitter</strong> is resized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadSplitter that fired the event</item>
            		<item><strong>args</strong> with the following methods:
             			<list type="bullet">
            				<item><strong>get_newWidth</strong> - the new width that will be applied to the <strong>RadSplitter</strong> object</item>
            				<item><strong>get_newHeight</strong> - the new height that will be applied to the <strong>RadSplitter</strong> object</item>
            			</list>
                    </item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientResizing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientResizing(sender, args)<br/>
                         {<br/>
                         alert(sender.get_id());<br/>
            			 args.set_cancel(true);//cancel the event<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radspl:RadSplitter ID="RadSplitter1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientResizing="OnClientResizing"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radspl:RadSplitter&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.SplitterCollapseDirection">
            <summary>
            Specifies the collapse direction options of the splitter bar
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitterCollapseDirection.Forward">
            <summary>
            On collapse the current pane is collapsed
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterCollapseDirection.Backward">
            <summary>
            On collapse the next pane is resized
            </summary>
            <value>2</value>
        </member>
        <member name="T:Telerik.Web.UI.SplitterItemsCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.SplitterItem">SplitterItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadSplitter">RadSplitter</see> control.
            </summary>
            <remarks>
            	<para>The <strong>SplitterItemsCollection</strong> class represents a collection of
                <strong>SplitterItem</strong> objects. The <strong>SplitterItem</strong> objects in turn represent 
                panes items within a <strong>RadSplitter</strong> control.</para>
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.SplitterItemsCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single SplitterItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of panes in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:System.Web.UI.ControlCollection.Add(System.Web.UI.Control)">Add</see> method to add panes in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:System.Web.UI.ControlCollection.Remove(System.Web.UI.Control)">Remove</see> method to remove panes from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.#ctor(Telerik.Web.UI.SplitterItemsContainer)">
            <summary>Initializes a new instance of the <strong>SplitterItemsCollection</strong> class.</summary>
            <remarks>Use the constructor to create a new <strong>SplitterItemsCollection</strong> class.</remarks>
            <param name="container">The container of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Add(Telerik.Web.UI.SplitterItem)">
            <summary>Appends a <see cref="T:Telerik.Web.UI.SplitterItem">SplitterItem</see> to the end of the collection.</summary>
            <example>
            	<para>The following example demonstrates how to programmatically add items in a
                <strong>RadSplitter</strong> control.</para>
            	<code lang="CS">
            RadPane pane = new RadPane();
             
            RadMenu1.Panes.Add(pane);
                </code>
            	<code lang="VB">
            Dim pane As RadPane = New RadPane()
             
            RadMenu1.Panes.Add(pane)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Add(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Insert(System.Int32,Telerik.Web.UI.SplitterItem)">
            <summary>
                Inserts the specified <see cref="T:Telerik.Web.UI.SplitterItem">SplitterItem</see> in the collection at the specified
                index location.
            </summary>
            <remarks>
            Use the <b>Insert</b> method to add a <strong>SplitterItem</strong> to the collection at
            the index specified by the <i>index</i> parameter.
            </remarks>
            <param name="index">The location in the collection to insert the <strong>SplitterItem</strong>.</param>
            <param name="item">The <strong>SplitterItem</strong> to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.AddAt(System.Int32,System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.IndexOf(Telerik.Web.UI.SplitterItem)">
            <summary>
                Determines the index value that represents the position of the specified
                <paramref name="item">SplitterItem</paramref> in the collection.
            </summary>
            <returns>
            The zero-based index position of the specified <strong>SplitterItem</strong> in the
            collection.
            </returns>
            <remarks>
            Use the <b>IndexOf</b> method to determine the index value of the
            <strong>SplitterItem</strong> specified by the <i>item</i> parameter in the collection. If an item
            with this criteria is not found in the collection, -1 is returned.
            </remarks>
            <param name="item">A <strong>SplitterItem</strong> to search for in the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.IndexOf(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Contains(Telerik.Web.UI.SplitterItem)">
            <summary>
                Determines whether the collection contains the specified
                <paramref name="item">SplitterItem</paramref>.
            </summary>
            <returns>
            	<strong>true</strong> if the collection contains the specified item; otherwise,
            <b>false</b>.
            </returns>
            <remarks>
            Use the <b>Contains</b> method to determine whether the <strong>SplitterItem</strong>
            specified by the <i>item</i> parameter is in the collection.
            </remarks>
            <param name="item">A SplitterItem to search for in the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Contains(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Remove(Telerik.Web.UI.SplitterItem)">
            <summary>Removes the specified <paramref name="item">SplitterItem</paramref> from the collection.</summary>
            <remarks>
            Use the <b>Remove</b> method to remove a <strong>SplitterItem</strong> from the
            collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically remove a SplitterItem from a
                <strong>RadSplitter</strong> control. 
                <code lang="CS">
            RadPane pane = RadSplitter1.GetPaneById("pane1");
            if (pane != null)
            {
                RadSplitter1.Panes.Remove(pane);
            }
                </code>
            	<code lang="VB">
            Dim pane As RadPane = RadSplitter1.GetPaneById("pane1")
            If Not pane Is Nothing Then
                RadSplitter1.Panes.Remove(pane)
            End If
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Remove(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.RemoveAt(System.Int32)">
            <summary>Removes the <see cref="T:Telerik.Web.UI.SplitterItem">SplitterItem</see> at the specified index from the collection.</summary>
            <remarks>
            	<para>Use the <b>RemoveAt</b> method to remove the <strong>SplitterItem</strong> at the
                specified index from the collection.</para>
            </remarks>
            <param name="index">The index of the <strong>SplitterItem</strong> to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.SplitterItemsCollection.Clear">
            <summary>Removes all items from the collection.</summary>
            <remarks>
                Use the <strong>Clear</strong> method to remove all items from the collection. The
                <strong>Count</strong> property is set to 0.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SplitterItemsCollection.Item(System.Int32)">
            <summary>
            	<para>
                    Gets a <see cref="T:Telerik.Web.UI.SplitterItem">SplitterItem</see> at the specified index in the collection.
                </para>
            </summary>
            <remarks>
            	<para>Use this indexer to get a <strong>SplitterItem</strong> from the collection at the
                specified index, using array notation.</para>
            </remarks>
            <param name="index">
            The zero-based index of the <strong>SplitterItem</strong> to retrieve from the
            collection.
            </param>		
        </member>
        <member name="T:Telerik.Web.UI.SplitterPaneScrolling">
            <summary>
            Specifies the scrolling options for the RadPane object
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitterPaneScrolling.Both">
            <summary>
            Both X and Y scrolls are displayed
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterPaneScrolling.X">
            <summary>
            Only the scroll on X dimension is displayed
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterPaneScrolling.Y">
            <summary>
            Only the scroll on Y dimension is displayed
            </summary>
            <value>3</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterPaneScrolling.None">
            <summary>
            No scrolls are displayed
            </summary>
            <value>1</value>
        </member>
        <member name="T:Telerik.Web.UI.SplitterResizeMode">
            <summary>
            Specifies resize mode options for the RadSplitter object
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitterResizeMode.AdjacentPane">
            <summary>
            On resize of a pane the adjacent pane is resized also
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterResizeMode.Proportional">
            <summary>
            On resize of a pane the other panes are resize proportionaly
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterResizeMode.EndPane">
            <summary>
            On resize of a pane the end pane in the splitter is resized also
            </summary>
            <value>3</value>
        </member>
        <member name="T:Telerik.Web.UI.SplitterSlideDirection">
            <summary>
            Specifies the available directions for the slide panes
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlideDirection.Right">
            <summary>
            Slide panes are sliding from left to right
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlideDirection.Left">
            <summary>
            Slide panes are sliding from right to left
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlideDirection.Top">
            <summary>
            Slide panes are sliding from top to bottom
            </summary>
            <value>3</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlideDirection.Bottom">
            <summary>
            Slide panes are sliding from bottom to top
            </summary>
            <value>4</value>
        </member>
        <member name="T:Telerik.Web.UI.SplitterSlidePaneTabView">
            <summary>
            Specifies views of the pane tab
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlidePaneTabView.TextAndImage">
            <summary>
            Pane tab is displayed using its Title and Icon
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlidePaneTabView.TextOnly">
            <summary>
            Pane tab is displayed using only its Title
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.SplitterSlidePaneTabView.ImageOnly">
            <summary>
            Pane tab is displayed using only its Icon
            </summary>
            <value>3</value>
        </member>
        <member name="T:Telerik.Web.UI.AjaxUpdatedControl">
            <summary>
            This class holds a reference to a single updated control and the loading panel to
            display.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControl.#ctor(System.String,System.String)">
            <summary>
            A constructor of AjaxUpdatedControl which takes the control to be updated and the
            id of the loading panel to display as parameters.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControl.#ctor">
            <summary>The default constructor of the AjaxUpdatedControl class.</summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxUpdatedControl.ControlID">
            <summary>The ID of the web control that is to be updated.</summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxUpdatedControl.LoadingPanelID">
            <summary>
            The ID of the RadAjaxLoadingPanel to be displayed during the update of the
            control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxUpdatedControl.UpdatePanelHeight">
            <summary>
            Height which will be set to the generated UpdatePanel
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxUpdatedControl.UpdatePanelRenderMode">
            <summary>
            Gets or sets the render mode of the the RadAjaxPanel. The default value is Block.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AjaxUpdatedControlsCollection">
            <summary>A collection of the controls that are updated by the AjaxManager.</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControlsCollection.Add(Telerik.Web.UI.AjaxUpdatedControl)">
            <summary>Adds an item to the collection</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControlsCollection.Remove(Telerik.Web.UI.AjaxUpdatedControl)">
            <summary>Removes the specified item from the collection</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControlsCollection.Contains(Telerik.Web.UI.AjaxUpdatedControl)">
            <summary>Checks wether the collection contains the specified item.</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControlsCollection.IndexOf(Telerik.Web.UI.AjaxUpdatedControl)">
            <summary>Gets the index of the specified item in the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxUpdatedControlsCollection.Insert(System.Int32,Telerik.Web.UI.AjaxUpdatedControl)">
            <summary>Inserts an item at the specified index in the collection.</summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxUpdatedControlsCollection.Item(System.Int32)">
            <summary>The default indexer of the collection.</summary>
        </member>
        <member name="T:Telerik.Web.UI.AjaxSetting">
            <summary>
            Represents a single AjaxManager setting - a mapping between a control that
            initiates an AJAX request and a collection of controls to be updated by the
            operation.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSetting.#ctor">
            <summary>Default constructor for the AjaxSetting class.</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSetting.#ctor(System.String)">
            <summary>
            A constructor for AjaxSetting taking the ClientID of the control initiating the
            AJAX request.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxSetting.AjaxControlID">
            <summary>
            This field holds the control id of the control that can initiate an
            AJAX request.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxSetting.EventName">
            <summary>Corresponds to the EventName property of the internally created AsyncPostBackTrigger.</summary>
        </member>
        <member name="P:Telerik.Web.UI.AjaxSetting.UpdatedControls">
            <summary>A collection of controls that will be updated by the AjaxManager</summary>
        </member>
        <member name="T:Telerik.Web.UI.AjaxSettingsCollection">
            <summary>
            Summary description for ConfiguredControls.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.#ctor">
            <summary>The default constructor for AjaxSettingsCollection class.</summary>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.AddAjaxSetting(System.Web.UI.Control,System.Web.UI.Control)">
            <summary>
            This method adds a new AjaxSetting to the collection by building one from its
            parameters.
            </summary>
            <param name="ajaxifiedControl">The web control to be ajaxified (the initiator of the AJAX request)</param>
            <param name="updatedControl">The web control that has to be updated.</param>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.Add(Telerik.Web.UI.AjaxSetting)">
            <summary>Adds an item to the collection.</summary>
            <param name="ajaxSetting">An instance of <see cref="T:Telerik.Web.UI.AjaxSetting">AjaxSetting</see> to be added.</param>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.Remove(Telerik.Web.UI.AjaxSetting)">
            <summary>Removes an item from the collection.</summary>
            <param name="ajaxSetting">An instance of <see cref="T:Telerik.Web.UI.AjaxSetting">AjaxSetting</see> to be removed</param>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.Contains(Telerik.Web.UI.AjaxSetting)">
            <summary>Checks wether the item is present in the collection.</summary>
            <param name="ajaxSetting">An instance of <see cref="T:Telerik.Web.UI.AjaxSetting">AjaxSetting</see></param>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.IndexOf(Telerik.Web.UI.AjaxSetting)">
            <summary>Determines the index of the specified item.</summary>
            <param name="ajaxSetting">An instance of <see cref="T:Telerik.Web.UI.AjaxSetting">AjaxSetting</see></param>
        </member>
        <member name="M:Telerik.Web.UI.AjaxSettingsCollection.Insert(System.Int32,Telerik.Web.UI.AjaxSetting)">
            <summary>Inserts an item at the specificed index in the collection.</summary>
            <param name="index">The index at which the setting will be inserted</param>
            <param name="ajaxSetting">An instance of <see cref="T:Telerik.Web.UI.AjaxSetting">AjaxSetting</see></param>
        </member>
        <member name="P:Telerik.Web.UI.AjaxSettingsCollection.Item(System.Int32)">
            <summary>Default indexer for the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxControl.Redirect(System.String)">
            <summary>Redirects the page to another location.</summary>
            <returns>None.</returns>
            <remarks>
            This method is usually used in the AJAX event handler instead of
            Response.Redirect(). It provides the only way to redirect to a page which does not
            contain any AJAX control at all.
            </remarks>
            <example>
                The following code redirects from a button's click event handler. Note the control
                should be ajaxified in order redirection to work.
                <code lang="CS" title="Redirect(C#)">
            private void Button1_Click(object sender, System.EventArgs e)
            {
                RadAjaxManager1.Redirect("support.aspx");
            }
                </code>
            	<code lang="VB" title="Redirect(VB)">
            Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
            RadAjaxManager1.Redirect("support.aspx")
            End Sub 'Button1_Click
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxControl.Alert(System.String)">
            <summary>Displays an alert message at client-side.</summary>
            <returns>None.</returns>
            <remarks>
            	<para>This is the easiest way to show a message, generated from the server, on the
            client in a message box.</para>
            	<para><strong>Note:</strong> Special characteres are not escaped.</para>
            </remarks>
            <example>
                The following example illustrates a sample usage of the <strong>Alert</strong>
                method. 
                <code lang="CS" title="Alert(C#)">
            private void Button1_Click(object sender, System.EventArgs e)
            {
            if (!UserAccessAllowed(UserProfile))
            {
            RadAjaxManager1.Alert("You are not allowed to access this user control!");
            }
            else
            {
            LoadSecretControl();
            }
            }
                </code>
            	<code lang="VB" title="Alert(VB)">
            Private Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
            If Not UserAccessAllowed(UserProfile) Then
            RadAjaxManager1.Alert("You are not allowed to access this user control!")
            Else
            LoadSecretControl()
            End If
            End Sub 'Button1_Click
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxControl.GetAjaxEventReference(System.String)">
            <summary>
            Gets client side code which raises an AjaxRequest event in either AJAX Manager or
            AJAX Panel.
            </summary>
            <example>
            	<code lang="CS" title="GetAjaxEventReference">
            		<![CDATA[
            private void Page_Load(object sender, System.EventArgs e)
            {
                // Create a generic AJAX Request when the button is clicked.
                // "return false" to prevent postbacks
                Button1.Attributes["onclick"] = RadAjaxPanel1.GetAjaxEventReference("argument...") + " return false;"; 
                // Generic requests can be fired on both AJAX Manager and AJAX Panel
                Button1.Attributes["onclick"] = RadAjaxManager1.GetAjaxEventReference("argument...") + " return false;"; 
            }]]>
            	</code>
            	<code lang="VB" title="GetAjaxRequestReference">
            		<![CDATA[
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Page.Load
                ' Create a generic AJAX Request When the button Is clicked.
                ' "return false" To prevent postbacks
                Button1.Attributes("onclick") = RadAjaxPanel1.GetAjaxEventReference("argument...") &amp; " return false;"
                ' Generic requests can be fired On both AJAX Manager And AJAX Panel
                Button1.Attributes("onclick") = RadAjaxManager1.GetAjaxEventReference("argument...") &amp; " return false;"
            End Sub]]>
            	</code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxControl.FocusControl(System.Web.UI.Control)">
            <summary>
            Sets focus to the specified web control after the AJAX Request is
            finished.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxControl.FocusControl(System.String)">
            <summary>
            Sets focus to the specified web control after the AJAX Request is
            finished.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxControl.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxControl.EnableHistory">
            <summary>
            Enables browser back/forward buttons state (browser history).
            Please, review the RadAjax "Changes and backwards compatibility" - "Back and Forward buttons" article for more info.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxControl.ClientIDMode">
            <summary>
            This property is overridden in order to support controls which implement INamingContainer.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxControl.RequestQueueSize">
            <summary>
            By design ASP.NET AJAX Framework cancels the ongoing ajax request if you try to initiate another one prior to receiving the response for the first request. 
            By setting the RequestQueueSize property to a value greater than zero, you are enabling the queuing mechanism of RadAjax 
            that will allow you to complete the ongoing request and then initiate the pending requests in the control queue.
            </summary>
            <remarks>
            If the queue is full (queue size equals RequestQueueSize), an attempt for new ajax request will be discarded.
            </remarks>
            <value>
            The default value is 0 (queuing disabled).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.OurUpdatePanel.ClientIDMode">
            <summary>
            This property is overridden in order to support controls which implement INamingContainer.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AjaxLoadingPanelBackgroundPosition">
            <summary>
            This enumeration defines the possible positions of the RadAjaxLoadingPanel background
            image. This property matters only if the Skin property is set. The default value is Center.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxLoadingPanel.RegisterCssReferences">
            <summary>
            Registers the CSS references
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxLoadingPanel.RenderScriptsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxLoadingPanel.RenderDescriptorsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxLoadingPanel.GetEmbeddedSkinNames">
            <summary>
            Returns the names of all embedded skins. Used by Telerik.Web.Examples.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadAjaxLoadingPanel.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.RegisterWithScriptManager">
            <summary>
            Gets or sets the value, indicating whether to register with the ScriptManager control on the page.
            </summary>
            <remarks>
            <para>
            If RegisterWithScriptManager is set to false the control can be rendered on the page using Web Services or normal callback requests/page methods.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.ScriptManager">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.Transparency">
            <summary>
            Gets or sets transparency in percentage. Default value is 0 percents.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.EnableSkinTransparency">
            <summary>
            Defines whether the transparency set in the skin will be applied.
            Default value is True.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.ZIndex">
            <summary>
            Gets or sets the z-index of the loading panel. Default value is 90,000.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.BackgroundPosition">
            <summary>
            Gets or sets the position of the skin background image. Default value is center.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.IsSticky">
            <summary>
            	<para>The <strong>IsSticky</strong> property of the Loading Panel controls where
                the panel will appear during the AJAX request. If this property is set to
                <strong>true</strong>, the panel will appear where you have placed it on your
                webform. If this property is set to <strong>false</strong>, the Loading panel will
                appear on the place of the updated control(s).</para>
            	<para>By default this property is set to <strong>false</strong>.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.InitialDelayTime">
            <summary>
            Gets or sets a value specifying the delay in milliseconds, after which the
            <strong>RadAjaxLoadingPanel</strong> will be shown. If the request returns before this time,
            the <strong>RadAjaxLoadingPanel</strong> will not be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.MinDisplayTime">
            <summary>
            Gets or sets a value that specifies the minimum time in milliseconds that the
            <strong>RadAjaxLoadingPanel</strong> will last. The control will not be updated before this
            period has passed even if the request returns. This will ensure more smoother interface
            for your page.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.AnimationDuration">
            <summary>
            Gets or sets animation duration in milliseconds. Default value is 0, i.e. no animation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.OnClientShowing">
            <summary>
            
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.OnClientHiding">
            <summary>
            
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will not use any skin (backwards compatibility)
            If EnableEmbeddedSkins is set to false, the control will not register a skin CSS file automatically.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.RuntimeSkin">
            <summary>
            Gets the real skin name for the control user interface. If Skin is not set, returns
            an empty string, otherwise returns Skin.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxLoadingPanel.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.TabIndex">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.Enabled">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.AccessKey">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.BackColor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.BorderColor">
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.CssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.BorderStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.BorderWidth">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.Font">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.ForeColor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.ToolTip">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.Width">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxManager.Height">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadAjaxPage">
            <summary>
            This class is required as a base class for any page that hosts a 
            RadAjaxManager control and runs under Medium trust privileges.
            </summary>
            <remarks>Inheriting from RadAjaxPage is not required if you run under Full trust.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxPanel.Wrap">
            <summary>
            This property specifies the layout of the AjaxPanel. When this is set to FALSE,
            the AjaxPanel contents will not be wrapped to a new line no matter how wide the control
            is.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxPanel.HorizontalAlign">
            <summary>
            This property specifies the horizontal alignment of the RadAjaxPanel
            contents.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadAjaxPanel.BackImageUrl">
            <summary>
            This property specifies the image that should be displayed as background in the
            AjaxPanel. If left blank, no background image is applied.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection">
            <summary>
            Summary description for CalendarDayCollection.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.IClientData">
            <summary>
            IClientData is used to provide a standard way of generating data output from a component,
            which will be processed and streamed thereafter to the client.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.IClientData.GetClientData">
            <summary>
            gets the data that is required on the client. The returned ArrayList should be processed
            further and serialized as clientside array of values.
            </summary>
            <returns>ArrayList with the properties to serialize to the client.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Add(Telerik.Web.UI.RadCalendarDay)">
            <summary>
            Adds a RadCalendarDay object to the collection of CalendarDays.
            </summary>
            <param name="inputItem">The RadCalendarDay object to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.IndexOf(System.Object)">
            <summary>
            Returns a zero based index of a RadCalendarDay object depending on the passed index.
            </summary>
            <param name="inputItem">The zero-based index, RadCalendarDay object or the date represented by  the searched RadCalendarDay object.</param>
            <returns>A zero based index of the RadCalendarDay object in the collection, or -1 if the RadCalendarDay object is not found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Insert(System.Int32,Telerik.Web.UI.RadCalendarDay)">
            <summary>
            Adds a RadCalendarDay object in the collection at the specified index.
            </summary>
            <param name="insertIndex">The index after which the RadCalendarDay object is inserted.</param>
            <param name="inputItem">The RadCalendarDay object to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Remove(Telerik.Web.UI.RadCalendarDay)">
            <summary>
            Deletes a RadCalendarDay object from the collection.
            </summary>
            <param name="inputItem">The RadCalendarDay object to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.RemoveAt(System.Int32)">
            <summary>
            Deletes the RadCalendarDay object from the collection at the specified index.
            </summary>
            <param name="index">The index in collection at which the RadCalendarDay object will be deleted.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Clear">
            <summary>
            Removes all RadCalendarDay objects in the collection of CalendarDays.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Contains(Telerik.Web.UI.RadCalendarDay)">
            <summary>
            Checks whether a specific RadCalendarDay object is in the collection of CalendarDays.
            </summary>
            <param name="inputItem">The RadCalendarDay object to search.</param>
            <returns>True if the RadCalendarDay is found, false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Reverse">
            <summary>
            Reverses the order of the elements in the entire collection.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Reverse"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.ToArray">
            <summary>
            Copies the elements of CalendarDayCollection to a new
            <see cref="T:System.Array"/> of <see cref="T:Telerik.Web.UI.RadCalendarDay"/> elements.
            </summary>
            <returns>A one-dimensional <see cref="T:System.Array"/> of <see cref="T:Telerik.Web.UI.RadCalendarDay"/>
            elements containing copies of the elements of the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection"/>.</returns>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.ToArray"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Sort">
            <overloads>
            Sorts the elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection"/> or a portion of it.
            </overloads>
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection"/>
            using the <see cref="T:System.IComparable"/> implementation of each element.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Sort(System.Collections.IComparer)">
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection"/>
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Sort(System.Int32,System.Int32,System.Collections.IComparer)">
            <summary>
            Sorts the elements in the specified range 
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="startIndex">The zero-based starting index of the range
            of elements to sort.</param>
            <param name="itemCount">The number of elements to sort.</param>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.ArgumentException">
            <paramref name="startIndex"/> and <paramref name="itemCount"/> do not denote a
            valid range of elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection"/>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para><paramref name="startIndex"/> is less than zero.</para>
            <para>-or-</para>
            <para><paramref name="itemCount"/> is less than zero.</para>
            </exception>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort"/> for details.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.Collections.CalendarDayCollection.Item(System.Object)">
            <summary>
            Returns a RadCalendarDay object depending on the passed index.
            Only integer and string indexes are valid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Collections.CalendarDayTemplateCollection">
            <summary>
            Summary description for DayTemplatess.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection">
            <summary>
            Summary description for CalendarViewCollection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Add(Telerik.Web.UI.Calendar.View.CalendarView)">
            <summary>
            Adds a CalendarView object to the collection of CalendarDays.
            </summary>
            <param name="inputItem">The CalendarView object to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.IndexOf(System.Object)">
            <summary>
            Returns a zero based index of a CalendarView object depending on the passed index.
            </summary>
            <param name="inputItem">The zero-based index, CalendarView object or the date represented by  the searched CalendarView object.</param>
            <returns>A zero based index of the CalendarView object in the collection, or -1 if the CalendarView object is not found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Insert(System.Int32,Telerik.Web.UI.Calendar.View.CalendarView)">
            <summary>
            Adds a CalendarView object in the collection at the specified index.
            </summary>
            <param name="insertIndex">The index after which the CalendarView object is inserted.</param>
            <param name="inputItem">The CalendarView object to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Remove(Telerik.Web.UI.Calendar.View.CalendarView)">
            <summary>
            Deletes a CalendarView object from the collection.
            </summary>
            <param name="inputItem">The CalendarView object to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.RemoveAt(System.Int32)">
            <summary>
            Deletes the CalendarView object from the collection at the specified index.
            </summary>
            <param name="index">The index in collection at which the CalendarView object will be deleted.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Clear">
            <summary>
            Removes all CalendarView objects in the collection of CalendarDays.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Contains(Telerik.Web.UI.Calendar.View.CalendarView)">
            <summary>
            Checks whether a specific CalendarView object is in the collection of CalendarDays.
            </summary>
            <param name="inputItem">The CalendarView object to search.</param>
            <returns>True if the CalendarView is found, false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Reverse">
            <summary>
            Reverses the order of the elements in the entire collection.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Reverse"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.ToArray">
            <summary>
            Copies the elements of CalendarViewCollection to a new
            <see cref="T:System.Array"/> of <see cref="T:Telerik.Web.UI.Calendar.View.CalendarView"/> elements.
            </summary>
            <returns>A one-dimensional <see cref="T:System.Array"/> of <see cref="T:Telerik.Web.UI.Calendar.View.CalendarView"/>
            elements containing copies of the elements of the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection"/>.</returns>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.ToArray"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Sort">
            <overloads>
            Sorts the elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection"/> or a portion of it.
            </overloads>
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection"/>
            using the <see cref="T:System.IComparable"/> implementation of each element.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Sort(System.Collections.IComparer)">
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection"/>
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Sort(System.Int32,System.Int32,System.Collections.IComparer)">
            <summary>
            Sorts the elements in the specified range 
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="startIndex">The zero-based starting index of the range
            of elements to sort.</param>
            <param name="itemCount">The number of elements to sort.</param>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.ArgumentException">
            <paramref name="startIndex"/> and <paramref name="itemCount"/> do not denote a
            valid range of elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection"/>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para><paramref name="startIndex"/> is less than zero.</para>
            <para>-or-</para>
            <para><paramref name="itemCount"/> is less than zero.</para>
            </exception>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.Collections.CalendarViewCollection.Item(System.Object)">
            <summary>
            Returns a CalendarView object depending on the passed index.
            Only integer and string indexes are valid.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Add(Telerik.Web.UI.RadDate)">
            <summary>
            Adds a DateTime object to the collection of CalendarDays.
            </summary>
            <param name="inputItem">The RadDate object to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.IndexOf(System.Object)">
            <summary>
            Returns a zero based index of a DateTime object depending on the passed index.
            </summary>
            <param name="inputItem">The zero-based index, DateTime object or the date represented by  the searched DateTime object.</param>
            <returns>A zero based index of the DateTime object in the collection, or -1 if the DateTime object is not found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Insert(System.Int32,Telerik.Web.UI.RadDate)">
            <summary>
            Adds a DateTime object in the collection at the specified index.
            </summary>
            <param name="insertIndex">The index after which the DateTime object is inserted.</param>
            <param name="inputItem">The DateTime object to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Remove(Telerik.Web.UI.RadDate)">
            <summary>
            Deletes a DateTime object from the collection.
            </summary>
            <param name="inputItem">The DateTime object to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.RemoveAt(System.Int32)">
            <summary>
            Deletes the DateTime object from the collection at the specified index.
            </summary>
            <param name="index">The index in collection at which the DateTime object will be deleted.</param>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Clear">
            <summary>
            Removes all DateTime objects in the collection of CalendarDays.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Contains(Telerik.Web.UI.RadDate)">
            <summary>
            Checks whether a specific DateTime object is in the collection of CalendarDays.
            </summary>
            <param name="inputItem">The DateTime object to search.</param>
            <returns>True if the DateTime is found, false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Reverse">
            <summary>
            Reverses the order of the elements in the entire collection.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Reverse"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.ToArray">
            <summary>
            Copies the elements of DateTimeCollection to a new
            <see cref="T:System.Array"/> of <see cref="T:System.DateTime"/> elements.
            </summary>
            <returns>A one-dimensional <see cref="T:System.Array"/> of <see cref="T:System.DateTime"/>
            elements containing copies of the elements of the <see cref="T:Telerik.Web.UI.Calendar.Collections.DateTimeCollection"/>.</returns>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.ToArray"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Sort">
            <overloads>
            Sorts the elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.DateTimeCollection"/> or a portion of it.
            </overloads>
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.DateTimeCollection"/>
            using the <see cref="T:System.IComparable"/> implementation of each element.
            </summary>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Sort(System.Collections.IComparer)">
            <summary>
            Sorts the elements in the entire <see cref="T:Telerik.Web.UI.Calendar.Collections.DateTimeCollection"/>
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Sort(System.Int32,System.Int32,System.Collections.IComparer)">
            <summary>
            Sorts the elements in the specified range 
            using the specified <see cref="T:System.Collections.IComparer"/> interface.
            </summary>
            <param name="startIndex">The zero-based starting index of the range
            of elements to sort.</param>
            <param name="itemCount">The number of elements to sort.</param>
            <param name="itemComparer">
            <para>The <see cref="T:System.Collections.IComparer"/> implementation to use when comparing elements.</para>
            <para>-or-</para>
            <para>A null reference to use the <see cref="T:System.IComparable"/> implementation 
            of each element.</para></param>
            <exception cref="T:System.ArgumentException">
            <paramref name="startIndex"/> and <paramref name="itemCount"/> do not denote a
            valid range of elements in the <see cref="T:Telerik.Web.UI.Calendar.Collections.DateTimeCollection"/>.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException">
            <para><paramref name="startIndex"/> is less than zero.</para>
            <para>-or-</para>
            <para><paramref name="itemCount"/> is less than zero.</para>
            </exception>
            <exception cref="T:System.NotSupportedException"/>
            <remarks>Please refer to <see cref="M:System.Collections.ArrayList.Sort(System.Collections.IComparer)"/> for details.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.Collections.DateTimeCollection.Item(System.Object)">
            <summary>
            Returns a DateTime object depending on the passed index.
            Only integer and string indexes are valid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Utils.Constants">
            <summary>
            Summary description for Constants.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DatePickingCalendar">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadCalendar">
            <summary>
            RadCalendar class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.CreateChildControls">
            <summary>
            Create controls from template, fill ContentPanes and add them to Controls collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.ResetTemplates">
            <summary>
            	<para>This method supports the Telerik RadCalendar infrastructure and
                is not intended to be used directly from your code.</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.FindControlRecursive(System.String,System.Web.UI.ControlCollection)">
            <summary>
            Recursively searches for a control with the specified id in the passed controls collection.
            </summary>
            <param name="controlID">The id of the control to look for.</param>
            <param name="controlsCollection">The current Controls collection to search in.</param>
            <returns>The found control or null if nothing was found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.FindControl(System.String)">
            <summary>
            When using templates, their content is instantiated and "lives" inside the
               <a href="RadCalendar~Telerik.Web.UI.RadCalendar~Controls.html">Controls
               collection</a> of RadCalendar class. To access the controls instantiated from the
               templates they must be found using this method (RadCalendar implements
               INamingContainer interface).
            </summary>
            <returns>Reference to the found control or null if no control was found.</returns>
            <param name="id">The ID of the searched control.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous page request that was saved by the <see cref="M:Telerik.Web.UI.RadCalendar.SaveViewState">SaveViewState</see> method.
            </summary>
            <param name="savedState">The saved view state.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadCalendar.SaveViewState">
            <summary>
            Saves any server control view-state changes that have occurred since the time the page was posted back to the server.
            </summary>
            <returns>The saved view state.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationSettings">
            <summary>
            Gets or sets the
            <a href="RadCalendar~Telerik.Web.UI.MonthYearFastNavigationSettings.html">MonthYearFastNavigationSettings</a>
            object whose inner properties can be used to modify the fast Month/Year client
            navigation settings.
            </summary>
            <value><see cref="T:Telerik.Web.UI.MonthYearFastNavigationSettings">MonthYearFastNavigationSettings</see></value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.IsDesignMode">
            <summary>
            Returns whether RadCalendar is currently in design mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ImagesPath">
            <summary>Gets or sets default path for the grid images when EnableEmbeddedSkins is set to false.</summary>
            <value>A string containing the path for the grid images. The default is string.Empty.</value>
            <remarks>
            <para>
            
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableShadows">
            <summary>Gets or sets whether popup shadows will appear.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.RangeSelectionMode">
            <summary>
            Gets or sets the <strong>RadCalendar</strong> range selection mode.
            Default value is <strong>None</strong>.
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>Member</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><strong>None</strong></term>
            			<description>Does not allow range selection.</description>
            		</item>
            		<item>
            			<term><strong>OnKeyHold</strong></term>
            			<description>Allow range selection by pressing [Shift] key and clicking on the date.</description>
            		</item>
            		<item>
            			<term><strong>None</strong></term>
            			<description>Allow range selection by clicking consecutively two dates.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class rendered by the Web server
            control on the client.
            </summary>
            <value>
            The CSS class rendered by the Web server control on the client. The default is
            <strong>calendarWrapper_[skin name]</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CalendarDayTemplates">
            <summary>
            Gets or sets a collection of type
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.CalendarDayTemplateCollection.html">
            CalendarDayTemplateCollection</a> which stores the created templates to use with
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a>. All of the
            items are represented by
            <a href="RadCalendar~Telerik.Web.UI.DayTemplate.html">DayTemplate</a>
            instances.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ClientEvents">
            <summary>
            Gets the instance of
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Clientside.CalendarClientEvents.html">
            CalendarClientEvents</a> class which defines the JavaScript functions (client-side
            event handlers) that are invoked when specific client-side events are raised.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableRepeatableDaysOnClient">
            <summary>
            Gets or sets whether the repeatable days logic should be supported on the client
            (effective for client calendar - with set property
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~AutoPostBack.html">AutoPostBack</a>="false").
            </summary>
            <value>
            	<strong>true</strong>, if the repeatable days logic should be supported on the
            client; otherwise, <strong>false</strong>. The default value is
            <strong>true</strong>.
            </value>
            <remarks>
            The <strong>EnableRepeatableDaysOnClient</strong> property has effect over the
            logic of the recurring events to the calendar. It should be true, if you wants the
            repeatable days to be supported by a calendar with AutoPostBack="false". If you are not
            using repeatable days or/and client calendar, you can improve the calendar performance
            by setting it to false.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadCalendar.SpecialDays">SpecialDays Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CellDayFormat">
            <summary>
            Gets or sets the format string that will be applied to the dates presented in the
            calendar area.
            </summary>
            <remarks>
            For additional details see <a href="DateFormat.html">Date Format Pattern</a>
            topic
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SingleViewRows">
            <summary>
            Gets or sets the the count of rows to be displayed by a single
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
            <remarks>
            If the calendar represents a multi view, this property applies to the child views
            inside the multi view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SingleViewColumns">
            <summary>
            Gets or sets the the count of columns to be displayed by a single
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
            <remarks>
            If the calendar represents a multi view, this property applies to the child views
            inside the multi view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SingleViewWidth">
            <summary>
            Gets or sets the Width applied to a single
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
            <remarks>
            If the calendar represents a multi view, this property applies to the child views
            inside the multi view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SingleViewHeight">
            <summary>
            Gets or sets the Height applied to a single
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
            <remarks>
            If the calendar represents a multi view, this property applies to the child views
            inside the multi view.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.MonthLayout">
            <summary>
            	<para>Gets or sets the predefined pairs of rows and columns, so that the product of
                the two values is exactly 42, which guarantees valid calendar layout. It is applied
                on a single view level to every
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.MonthView.html">MonthView</a>
                instance in the calendar.</para>
            </summary>
            <remarks>
            	<para>The following values are applicable and defined in the MonthLayout
                enumeration:<br/>
            		<br/>
                Layout_7columns_x_6rows - horizontal layout<br/>
            		<br/>
                Layout_14columns_x_3rows - horizontal layout<br/>
            		<br/>
                Layout_21columns_x_2rows - horizontal layout<br/>
            		<br/>
                Layout_7rows_x_6columns - vertical layout, required when
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~UseDaysAsSelectors.html">UseDaysAsSelectors</a>
                is true and
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~Orientation.html">Orientation</a>
                is set to
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Enumerations.Orientation.html">
                RenderInColumns</a>.<br/>
            		<br/>
                Layout_14rows_x_3columns - vertical layout, required when
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~UseDaysAsSelectors.html">UseDaysAsSelectors</a>
                is true and
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~Orientation.html">Orientation</a>
                is set to
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Enumerations.Orientation.html">
                RenderInColumns</a>.<br/>
            		<br/>
                Layout_21rows_x_2columns - vertical layout, required when
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~UseDaysAsSelectors.html">UseDaysAsSelectors</a>
                is true and
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~Orientation.html">Orientation</a>
                is set to
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Enumerations.Orientation.html">
                RenderInColumns</a>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CellAlign">
            <summary>
            	<para>Gets or sets the horizontal alignment of the date cells content inside the
                calendar area.</para>
            	<para>The HorizontalAlign enumeration is defined in
                <strong>System.Web.UI.WebControls</strong></para>
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>
            				<para align="left">Member name</para>
            			</term>
            			<description>
            				<para align="left">Description</para>
            			</description>
            		</listheader>
            		<item>
            			<term>
            				<para align="left"><b>Center</b></para>
            			</term>
            			<description>The contents of a container are centered.</description>
            		</item>
            		<item>
            			<term><b>Justify</b></term>
            			<description>The contents of a container are uniformly spread out and
                        aligned with both the left and right margins.</description>
            		</item>
            		<item>
            			<term><b>Left</b></term>
            			<description>The contents of a container are left justified.</description>
            		</item>
            		<item>
            			<term><b>NotSet</b></term>
            			<description>The horizontal alignment is not set.</description>
            		</item>
            		<item>
            			<term><b>Right</b></term>
            			<description>The contents of a container are right justified.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CellVAlign">
            <summary>
            	<para>Gets or sets the vertical alignment of the date cells content inside the
                calendar area.</para>
            	<para>The VerticalAlign enumeration is defined in
                <strong>System.Web.UI.WebControls</strong></para>
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>Member name</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><b>Bottom</b></term>
            			<description>Text or object is aligned with the bottom of the enclosing
                        control.</description>
            		</item>
            		<item>
            			<term><b>Middle</b></term>
            			<description>Text or object is aligned with the center of the enclosing
                        control.</description>
            		</item>
            		<item>
            			<term><b>NotSet</b></term>
            			<description>Vertical alignment is not set.</description>
            		</item>
            		<item>
            			<term><b>Top</b></term>
            			<description>Text or object is aligned with the top of the enclosing
                        control.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.MultiViewRows">
            <summary>
            Gets or sets the the count of rows to be displayed by a multi month
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.MultiViewColumns">
            <summary>
            Gets or sets the the count of columns to be displayed by a multi month
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.RangeMaxDate">
            <summary>
            Gets or sets the maximum date valid for selection by
            Telerik RadCalendar. Must be interpreted as the Higher bound of the valid
            dates range available for selection. Telerik RadCalendar will not allow
            navigation or selection past this date.
            </summary>
            <remarks>
            This property has a default value of <font size="1"><strong>12/30/2099</strong>
            (Gregorian calendar date).</font>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.RangeMinDate">
            <summary>
            Gets or sets the minimal date valid for selection by
            Telerik RadCalendar. Must be interpreted as the Lower bound of the valid
            dates range available for selection. Telerik RadCalendar will not allow
            navigation or selection prior to this date.
            </summary>
            <remarks>
            This property has a default value of <font size="1"><strong>1/1/1980</strong>
            (Gregorian calendar date).</font>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FirstDayOfWeek">
            <summary>
            	<para>Specifies the day to display as the first day of the week on the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a>
                control.</para>
            	<para>The FirstDayOfWeek enumeration can be found in
                <strong>System.Web.UI.WebControls</strong> Namespace.</para>
            </summary>
            <remarks>
            	<para>The <b>FirstDayOfWeek</b> enumeration represents the values that specify
                which day to display as the first day of the week on the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a>
                control.</para>
            	<list type="table">
            		<listheader>
            			<term>Member name</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><b>Default</b></term>
            			<description>The first day of the week is specified by the system
                        settings.</description>
            		</item>
            		<item>
            			<term><b>Friday</b></term>
            			<description>The first day of the week is Friday.</description>
            		</item>
            		<item>
            			<term><b>Monday</b></term>
            			<description>The first day of the week is Monday.</description>
            		</item>
            		<item>
            			<term><b>Saturday</b></term>
            			<description>The first day of the week is Saturday.</description>
            		</item>
            		<item>
            			<term><b>Sunday</b></term>
            			<description>The first day of the week is Sunday.</description>
            		</item>
            		<item>
            			<term><b>Thursday</b></term>
            			<description>The first day of the week is Thursday.</description>
            		</item>
            		<item>
            			<term><b>Tuesday</b></term>
            			<description>The first day of the week is Tuesday.</description>
            		</item>
            		<item>
            			<term><b>Wednesday</b></term>
            			<description>The first day of the week is Wednesday.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SelectedDate">
            <summary>
            Sets or returns the currently selected date. The default value is the value of
            <strong>System.DateTime.MinValue</strong>.
            </summary>
            <remarks>
            	<para>Use the <b>SelectedDate</b> property to determine the selected date on the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a>
                control.</para>
            	<para>The <b>SelectedDate</b> property and the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SelectedDates.html">SelectedDates</a>
                collection are closely related. When the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~EnableMultiSelect.html">EnableMultiSelect</a>
                property is set to <b>false</b>, a mode that allows only a single date selection,
                <b>SelectedDate</b> and <b>SelectedDates[0]</b> have the same value and
                <b>SelectedDates.Count</b> equals 1. When the <b>EnableMultiSelect</b> property is
                set to <b>true</b>, mode that allows multiple date selections, <b>SelectedDate</b>
                and <b>SelectedDates[0]</b> have the same value.</para>
            	<para>The <b>SelectedDate</b> property is set using a System.DateTime
                object.</para>
            	<para>When the user selects a date on the <strong>RadCalendar</strong> control, the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SelectionChanged_EV.html">SelectionChanged</a>
                event is raised. The <b>SelectedDate</b> property is updated to the selected date.
                The <b>SelectedDates</b> collection is also updated to contain just this
                date.</para>
            	<blockquote class="dtBlock">
            		<b class="le">Note</b> Both the <b>SelectedDate</b> property and the
                    <b>SelectedDates</b> collection are updated before the <b>SelectionChanged</b>
                    event is raised. You can override the date selection by using the
                    <strong>OnSelectionChanged</strong> event handler to manually set the
                    <b>SelectedDate</b> property. The <b>SelectionChanged</b> event does not get
                    raised when this property is programmatically set.
                </blockquote>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FocusedDate">
            <summary>
            Gets or sets the value that is used by
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a> to determine
            the viewable area displayed .
            </summary>
            <remarks>
            	<para>By default, the <strong>FocusedDate</strong> property returns the current
                system date when in runtime, and in design mode defaults to
                <strong>System.DateTime.MinValue.</strong> When the <strong>FocusedDate</strong> is
                set, from that point, the value returned by the <strong>FocusedDate</strong>
                property is the one the user sets.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FocusedDateRow">
            <summary>
            Gets or sets the row index where the
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~FocusedDate.html">FocusedDate</a>
            (and the month view it belongs to) will be positioned inside a multi view area.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FocusedDateColumn">
            <summary>
            Gets or sets the column index where the
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~FocusedDate.html">FocusedDate</a>
            (and the month view it belongs to) will be positioned inside a multi view area.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SelectedDates">
            <summary>
            Gets a collection of
            <a href="RadCalendar~Telerik.Web.UI.RadDate.html">RadDate</a> objects (that
            encapsulate values of type <strong>System.DateTime</strong>) that represent the
            selected dates on the <strong>RadCalendar</strong> control.
            </summary>
            <value>
            A
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.DateTimeCollection.html">
            DateTimeCollection</a> that contains a collection of
            <a href="RadCalendar~Telerik.Web.UI.RadDate.html">RadDate</a> objects (that
            encapsulate values of type <strong>System.DateTime</strong>) representing the selected
            dates on the <strong>RadCalendar</strong> control. The default value is an empty
            <b>DateTimeCollection</b>.
            </value>
            <remarks>
            	<para>Use the <b>SelectedDates</b> collection to determine the currently selected
                dates on the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar.html">RadCalendar</a>
                control.</para>
            	<para>The
                <a href="frlrfsystemwebuiwebcontrolscalendarclassselecteddatetopic.htm">SelectedDate</a>
                property and the <b>SelectedDates</b> collection are closely related. When the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~EnableMultiSelect.html">EnableMultiSelect</a>
                property is set to <b>false</b>, a mode that allows only a single date selection,
                <b>SelectedDate</b> and <b>SelectedDates[0]</b> have the same value and
                <b>SelectedDates.Count</b> equals 1. When the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~EnableMultiSelect.html">EnableMultiSelect</a>
                property is set to <b>true</b>, mode that allows multiple date selections,
                <b>SelectedDate</b> and <b>SelectedDates[0]</b> have the same value.</para>
            	<para>The <b>SelectedDates</b> property stores a collection of
                <a href="RadCalendar~Telerik.Web.UI.RadDate.html">RadDate</a> objects (that
                encapsulate values of type <strong>System.DateTime</strong>).</para>
            	<para>When the user selects a date or date range (for example with the column or
                rows selectors) on the <strong>RadCalendar</strong> control, the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SelectionChanged_EV.html">SelectionChanged</a>
                event is raised. The selected dates are added to the <b>SelectedDates</b>
                collection, accumulating with previously selected dates. The range of dates are not
                sorted by default. The <strong>SelectedDate</strong> property is also updated to
                contain the first date in the <b>SelectedDates</b> collection.</para>
            	<para>You can also use the <b>SelectedDates</b> collection to programmatically
                select dates on the <b>Calendar</b> control. Use the
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.DateTimeCollection~Add.html">
                Add</a>,
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.DateTimeCollection~Remove.html">
                Remove</a>,
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.DateTimeCollection~Clear.html">
                Clear</a>, and
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.Collections.DateTimeCollection~SelectRange.html">
                SelectRange</a> methods to programmatically manipulate the selected dates in the
                <b>SelectedDates</b> collection.</para>
            	<blockquote class="dtBlock">
            		<b class="le">Note</b> Both the <b>SelectedDate</b> property and the
                    <b>SelectedDates</b> collection are updated before the <b>SelectionChanged</b>
                    event is raised.You can override the dates selection by using the
                    <strong>OnSelectionChanged</strong> event handler to manually set the
                    <b>SelectedDates</b> collection. The <b>SelectionChanged</b> event is not
                    raised when this collection is programmatically set.
                </blockquote>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationStep">
            <summary>
            Gets or sets an integer value representing the number of
            <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>
            views that will be scrolled when the user clicks on a fast navigation link.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DayNameFormat">
            <summary>
            Specifies the display formats for the days of the week used as selectors by
            <strong>RadCalendar</strong>.
            </summary>
            <remarks>
            	<para>Use the <b>DayNameFormat</b> property to specify the name format for the days
                of the week. This property is set with one of the <strong>DayNameFormat</strong>
                enumeration values. You can specify whether the days of the week are displayed as
                the full name, short (abbreviated) name, first letter of the day, or first two
                letters of the day.</para>
            	<para>The <b>DayNameFormat</b> enumeration represents the display formats for the
                days of the week used as selectors by <strong>RadCalendar</strong>.</para>
            	<list type="table">
            		<listheader>
            			<term>Member name</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><b>FirstLetter</b></term>
            			<description>The days of the week displayed with just the first letter. For
                        example, <strong>T</strong>.</description>
            		</item>
            		<item>
            			<term><b>FirstTwoLetters</b></term>
            			<description>The days of the week displayed with just the first two
                        letters. For example, <strong>Tu</strong>.</description>
            		</item>
            		<item>
            			<term><b>Full</b></term>
            			<description>The days of the week displayed in full format. For example,
                        <strong>Tuesday</strong>.</description>
            		</item>
            		<item>
            			<term><b>Short</b></term>
            			<description>The days of the week displayed in abbreviated format. For
                        example, <strong>Tues</strong>.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DateTimeFormat">
            <summary>
            Gets or sets a <strong>DateTimeFormatInfo</strong> instance that defines the
            culturally appropriate format of displaying dates and times as specified by the default
            culture.
            </summary>
            <remarks>
            	<para>A <strong>DateTimeFormatInfo</strong> can be created only for the invariant
                culture or for specific cultures, not for neutral cultures.</para>
            	<para>The cultures are generally grouped into three sets: the invariant culture,
                the neutral cultures, and the specific cultures.</para>
            	<para>The invariant culture is culture-insensitive. You can specify the invariant
                culture by name using an empty string ("") or by its culture identifier 0x007F.
                <strong>InvariantCulture</strong> retrieves an instance of the invariant culture.
                It is associated with the English language but not with any country/region. It can
                be used in almost any method in the Globalization namespace that requires a
                culture. If a security decision depends on a string comparison or a case-change
                operation, use the <b>InvariantCulture</b> to ensure that the behavior will be
                consistent regardless of the culture settings of the system. However, the invariant
                culture must be used only by processes that require culture-independent results,
                such as system services; otherwise, it produces results that might be
                linguistically incorrect or culturally inappropriate.</para>
            	<para>A neutral culture is a culture that is associated with a language but not
                with a country/region. A specific culture is a culture that is associated with a
                language and a country/region. For example, "fr" is a neutral culture and "fr-FR"
                is a specific culture. Note that "zh-CHS" (Simplified Chinese) and "zh-CHT"
                (Traditional Chinese) are neutral cultures.</para>
            	<para>The user might choose to override some of the values associated with the
                current culture of Windows through Regional and Language Options (or Regional
                Options or Regional Settings) in Control Panel. For example, the user might choose
                to display the date in a different format or to use a currency other than the
                default for the culture.</para>
            	<para>If <strong>UseUserOverride</strong> is <b>true</b> and the specified culture
                matches the current culture of Windows, the <strong>CultureInfo</strong> uses those
                overrides, including user settings for the properties of the
                <b>DateTimeFormatInfo</b> instance returned by the <b>DateTimeFormat</b> property,
                the properties of the <strong>NumberFormatInfo</strong> instance returned by the
                <strong>NumberFormat</strong> property, and the properties of the
                <strong>CompareInfo</strong> instance returned by the <strong>CompareInfo</strong>
                property. If the user settings are incompatible with the culture associated with
                the <b>CultureInfo</b> (for example, if the selected calendar is not one of the
                <strong>OptionalCalendars</strong> ), the results of the methods and the values of
                the properties are undefined.<br/>
            		<br/>
            		<strong>Note:</strong> In this version of <strong>RadCalendar</strong> the
                <strong>NumberFormatInfo</strong> instance returned by the
                <strong>NumberFormat</strong> property is not taken into account.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CultureInfo">
            <summary>
            	<para>Gets or sets the <strong>CultureInfo</strong> instance that represents
                information about the culture of this <strong>RadCalendar</strong> object.</para>
            	<para>A <b>CultureInfo</b> class describes information about the culture of this
                RadCalendar instance including the names of the culture, the writing system, and
                the calendar used, as well as access to culture-specific objects that provide
                methods for common operations, such as formatting dates and sorting strings.</para>
            </summary>
            <remarks>
            	<para>The culture names follow the RFC 1766 standard in the format
                "&lt;languagecode2&gt;-&lt;country/regioncode2&gt;", where &lt;languagecode2&gt; is
                a lowercase two-letter code derived from ISO 639-1 and &lt;country/regioncode2&gt;
                is an uppercase two-letter code derived from ISO 3166. For example, U.S. English is
                "en-US". In cases where a two-letter language code is not available, the
                three-letter code derived from ISO 639-2 is used; for example, the three-letter
                code "div" is used for cultures that use the Dhivehi language. Some culture names
                have suffixes that specify the script; for example, "-Cyrl" specifies the Cyrillic
                script, "-Latn" specifies the Latin script.</para>
            	<para>The following predefined <b>CultureInfo</b> names and identifiers are
                accepted and used by this class and other classes in the System.Globalization
                namespace.</para>
            	<table cellspacing="0">
            		<tbody>
            			<tr valign="top">
            				<th width="32%">Culture Name</th>
            				<th width="34%">Culture Identifier</th>
            				<th width="34%">Language-Country/Region</th>
            			</tr>
            			<tr valign="top">
            				<td width="32%">"" (empty string)</td>
            				<td width="34%">0x007F</td>
            				<td width="34%">invariant culture</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">af</td>
            				<td width="34%">0x0036</td>
            				<td width="34%">Afrikaans</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">af-ZA</td>
            				<td width="34%">0x0436</td>
            				<td width="34%">Afrikaans - South Africa</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sq</td>
            				<td width="34%">0x001C</td>
            				<td width="34%">Albanian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sq-AL</td>
            				<td width="34%">0x041C</td>
            				<td width="34%">Albanian - Albania</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar</td>
            				<td width="34%">0x0001</td>
            				<td width="34%">Arabic</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-DZ</td>
            				<td width="34%">0x1401</td>
            				<td width="34%">Arabic - Algeria</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-BH</td>
            				<td width="34%">0x3C01</td>
            				<td width="34%">Arabic - Bahrain</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-EG</td>
            				<td width="34%">0x0C01</td>
            				<td width="34%">Arabic - Egypt</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-IQ</td>
            				<td width="34%">0x0801</td>
            				<td width="34%">Arabic - Iraq</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-JO</td>
            				<td width="34%">0x2C01</td>
            				<td width="34%">Arabic - Jordan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-KW</td>
            				<td width="34%">0x3401</td>
            				<td width="34%">Arabic - Kuwait</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-LB</td>
            				<td width="34%">0x3001</td>
            				<td width="34%">Arabic - Lebanon</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-LY</td>
            				<td width="34%">0x1001</td>
            				<td width="34%">Arabic - Libya</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-MA</td>
            				<td width="34%">0x1801</td>
            				<td width="34%">Arabic - Morocco</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-OM</td>
            				<td width="34%">0x2001</td>
            				<td width="34%">Arabic - Oman</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-QA</td>
            				<td width="34%">0x4001</td>
            				<td width="34%">Arabic - Qatar</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-SA</td>
            				<td width="34%">0x0401</td>
            				<td width="34%">Arabic - Saudi Arabia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-SY</td>
            				<td width="34%">0x2801</td>
            				<td width="34%">Arabic - Syria</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-TN</td>
            				<td width="34%">0x1C01</td>
            				<td width="34%">Arabic - Tunisia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-AE</td>
            				<td width="34%">0x3801</td>
            				<td width="34%">Arabic - United Arab Emirates</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ar-YE</td>
            				<td width="34%">0x2401</td>
            				<td width="34%">Arabic - Yemen</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hy</td>
            				<td width="34%">0x002B</td>
            				<td width="34%">Armenian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hy-AM</td>
            				<td width="34%">0x042B</td>
            				<td width="34%">Armenian - Armenia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">az</td>
            				<td width="34%">0x002C</td>
            				<td width="34%">Azeri</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">az-AZ-Cyrl</td>
            				<td width="34%">0x082C</td>
            				<td width="34%">Azeri (Cyrillic) - Azerbaijan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">az-AZ-Latn</td>
            				<td width="34%">0x042C</td>
            				<td width="34%">Azeri (Latin) - Azerbaijan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">eu</td>
            				<td width="34%">0x002D</td>
            				<td width="34%">Basque</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">eu-ES</td>
            				<td width="34%">0x042D</td>
            				<td width="34%">Basque - Basque</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">be</td>
            				<td width="34%">0x0023</td>
            				<td width="34%">Belarusian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">be-BY</td>
            				<td width="34%">0x0423</td>
            				<td width="34%">Belarusian - Belarus</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">bg</td>
            				<td width="34%">0x0002</td>
            				<td width="34%">Bulgarian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">bg-BG</td>
            				<td width="34%">0x0402</td>
            				<td width="34%">Bulgarian - Bulgaria</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ca</td>
            				<td width="34%">0x0003</td>
            				<td width="34%">Catalan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ca-ES</td>
            				<td width="34%">0x0403</td>
            				<td width="34%">Catalan - Catalan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-HK</td>
            				<td width="34%">0x0C04</td>
            				<td width="34%">Chinese - Hong Kong SAR</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-MO</td>
            				<td width="34%">0x1404</td>
            				<td width="34%">Chinese - Macau SAR</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-CN</td>
            				<td width="34%">0x0804</td>
            				<td width="34%">Chinese - China</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-CHS</td>
            				<td width="34%">0x0004</td>
            				<td width="34%">Chinese (Simplified)</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-SG</td>
            				<td width="34%">0x1004</td>
            				<td width="34%">Chinese - Singapore</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-TW</td>
            				<td width="34%">0x0404</td>
            				<td width="34%">Chinese - Taiwan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">zh-CHT</td>
            				<td width="34%">0x7C04</td>
            				<td width="34%">Chinese (Traditional)</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hr</td>
            				<td width="34%">0x001A</td>
            				<td width="34%">Croatian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hr-HR</td>
            				<td width="34%">0x041A</td>
            				<td width="34%">Croatian - Croatia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">cs</td>
            				<td width="34%">0x0005</td>
            				<td width="34%">Czech</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">cs-CZ</td>
            				<td width="34%">0x0405</td>
            				<td width="34%">Czech - Czech Republic</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">da</td>
            				<td width="34%">0x0006</td>
            				<td width="34%">Danish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">da-DK</td>
            				<td width="34%">0x0406</td>
            				<td width="34%">Danish - Denmark</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">div</td>
            				<td width="34%">0x0065</td>
            				<td width="34%">Dhivehi</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">div-MV</td>
            				<td width="34%">0x0465</td>
            				<td width="34%">Dhivehi - Maldives</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">nl</td>
            				<td width="34%">0x0013</td>
            				<td width="34%">Dutch</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">nl-BE</td>
            				<td width="34%">0x0813</td>
            				<td width="34%">Dutch - Belgium</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">nl-NL</td>
            				<td width="34%">0x0413</td>
            				<td width="34%">Dutch - The Netherlands</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en</td>
            				<td width="34%">0x0009</td>
            				<td width="34%">English</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-AU</td>
            				<td width="34%">0x0C09</td>
            				<td width="34%">English - Australia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-BZ</td>
            				<td width="34%">0x2809</td>
            				<td width="34%">English - Belize</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-CA</td>
            				<td width="34%">0x1009</td>
            				<td width="34%">English - Canada</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-CB</td>
            				<td width="34%">0x2409</td>
            				<td width="34%">English - Caribbean</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-IE</td>
            				<td width="34%">0x1809</td>
            				<td width="34%">English - Ireland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-JM</td>
            				<td width="34%">0x2009</td>
            				<td width="34%">English - Jamaica</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-NZ</td>
            				<td width="34%">0x1409</td>
            				<td width="34%">English - New Zealand</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-PH</td>
            				<td width="34%">0x3409</td>
            				<td width="34%">English - Philippines</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-ZA</td>
            				<td width="34%">0x1C09</td>
            				<td width="34%">English - South Africa</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-TT</td>
            				<td width="34%">0x2C09</td>
            				<td width="34%">English - Trinidad and Tobago</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-GB</td>
            				<td width="34%">0x0809</td>
            				<td width="34%">English - United Kingdom</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-US</td>
            				<td width="34%">0x0409</td>
            				<td width="34%">English - United States</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">en-ZW</td>
            				<td width="34%">0x3009</td>
            				<td width="34%">English - Zimbabwe</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">et</td>
            				<td width="34%">0x0025</td>
            				<td width="34%">Estonian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">et-EE</td>
            				<td width="34%">0x0425</td>
            				<td width="34%">Estonian - Estonia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fo</td>
            				<td width="34%">0x0038</td>
            				<td width="34%">Faroese</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fo-FO</td>
            				<td width="34%">0x0438</td>
            				<td width="34%">Faroese - Faroe Islands</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fa</td>
            				<td width="34%">0x0029</td>
            				<td width="34%">Farsi</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fa-IR</td>
            				<td width="34%">0x0429</td>
            				<td width="34%">Farsi - Iran</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fi</td>
            				<td width="34%">0x000B</td>
            				<td width="34%">Finnish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fi-FI</td>
            				<td width="34%">0x040B</td>
            				<td width="34%">Finnish - Finland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr</td>
            				<td width="34%">0x000C</td>
            				<td width="34%">French</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-BE</td>
            				<td width="34%">0x080C</td>
            				<td width="34%">French - Belgium</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-CA</td>
            				<td width="34%">0x0C0C</td>
            				<td width="34%">French - Canada</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-FR</td>
            				<td width="34%">0x040C</td>
            				<td width="34%">French - France</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-LU</td>
            				<td width="34%">0x140C</td>
            				<td width="34%">French - Luxembourg</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-MC</td>
            				<td width="34%">0x180C</td>
            				<td width="34%">French - Monaco</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">fr-CH</td>
            				<td width="34%">0x100C</td>
            				<td width="34%">French - Switzerland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">gl</td>
            				<td width="34%">0x0056</td>
            				<td width="34%">Galician</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">gl-ES</td>
            				<td width="34%">0x0456</td>
            				<td width="34%">Galician - Galician</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ka</td>
            				<td width="34%">0x0037</td>
            				<td width="34%">Georgian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ka-GE</td>
            				<td width="34%">0x0437</td>
            				<td width="34%">Georgian - Georgia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de</td>
            				<td width="34%">0x0007</td>
            				<td width="34%">German</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de-AT</td>
            				<td width="34%">0x0C07</td>
            				<td width="34%">German - Austria</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de-DE</td>
            				<td width="34%">0x0407</td>
            				<td width="34%">German - Germany</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de-LI</td>
            				<td width="34%">0x1407</td>
            				<td width="34%">German - Liechtenstein</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de-LU</td>
            				<td width="34%">0x1007</td>
            				<td width="34%">German - Luxembourg</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">de-CH</td>
            				<td width="34%">0x0807</td>
            				<td width="34%">German - Switzerland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">el</td>
            				<td width="34%">0x0008</td>
            				<td width="34%">Greek</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">el-GR</td>
            				<td width="34%">0x0408</td>
            				<td width="34%">Greek - Greece</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">gu</td>
            				<td width="34%">0x0047</td>
            				<td width="34%">Gujarati</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">gu-IN</td>
            				<td width="34%">0x0447</td>
            				<td width="34%">Gujarati - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">he</td>
            				<td width="34%">0x000D</td>
            				<td width="34%">Hebrew</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">he-IL</td>
            				<td width="34%">0x040D</td>
            				<td width="34%">Hebrew - Israel</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hi</td>
            				<td width="34%">0x0039</td>
            				<td width="34%">Hindi</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hi-IN</td>
            				<td width="34%">0x0439</td>
            				<td width="34%">Hindi - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hu</td>
            				<td width="34%">0x000E</td>
            				<td width="34%">Hungarian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">hu-HU</td>
            				<td width="34%">0x040E</td>
            				<td width="34%">Hungarian - Hungary</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">is</td>
            				<td width="34%">0x000F</td>
            				<td width="34%">Icelandic</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">is-IS</td>
            				<td width="34%">0x040F</td>
            				<td width="34%">Icelandic - Iceland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">id</td>
            				<td width="34%">0x0021</td>
            				<td width="34%">Indonesian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">id-ID</td>
            				<td width="34%">0x0421</td>
            				<td width="34%">Indonesian - Indonesia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">it</td>
            				<td width="34%">0x0010</td>
            				<td width="34%">Italian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">it-IT</td>
            				<td width="34%">0x0410</td>
            				<td width="34%">Italian - Italy</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">it-CH</td>
            				<td width="34%">0x0810</td>
            				<td width="34%">Italian - Switzerland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ja</td>
            				<td width="34%">0x0011</td>
            				<td width="34%">Japanese</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ja-JP</td>
            				<td width="34%">0x0411</td>
            				<td width="34%">Japanese - Japan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kn</td>
            				<td width="34%">0x004B</td>
            				<td width="34%">Kannada</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kn-IN</td>
            				<td width="34%">0x044B</td>
            				<td width="34%">Kannada - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kk</td>
            				<td width="34%">0x003F</td>
            				<td width="34%">Kazakh</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kk-KZ</td>
            				<td width="34%">0x043F</td>
            				<td width="34%">Kazakh - Kazakhstan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kok</td>
            				<td width="34%">0x0057</td>
            				<td width="34%">Konkani</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">kok-IN</td>
            				<td width="34%">0x0457</td>
            				<td width="34%">Konkani - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ko</td>
            				<td width="34%">0x0012</td>
            				<td width="34%">Korean</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ko-KR</td>
            				<td width="34%">0x0412</td>
            				<td width="34%">Korean - Korea</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ky</td>
            				<td width="34%">0x0040</td>
            				<td width="34%">Kyrgyz</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ky-KZ</td>
            				<td width="34%">0x0440</td>
            				<td width="34%">Kyrgyz - Kazakhstan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">lv</td>
            				<td width="34%">0x0026</td>
            				<td width="34%">Latvian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">lv-LV</td>
            				<td width="34%">0x0426</td>
            				<td width="34%">Latvian - Latvia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">lt</td>
            				<td width="34%">0x0027</td>
            				<td width="34%">Lithuanian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">lt-LT</td>
            				<td width="34%">0x0427</td>
            				<td width="34%">Lithuanian - Lithuania</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mk</td>
            				<td width="34%">0x002F</td>
            				<td width="34%">Macedonian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mk-MK</td>
            				<td width="34%">0x042F</td>
            				<td width="34%">Macedonian - FYROM</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ms</td>
            				<td width="34%">0x003E</td>
            				<td width="34%">Malay</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ms-BN</td>
            				<td width="34%">0x083E</td>
            				<td width="34%">Malay - Brunei</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ms-MY</td>
            				<td width="34%">0x043E</td>
            				<td width="34%">Malay - Malaysia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mr</td>
            				<td width="34%">0x004E</td>
            				<td width="34%">Marathi</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mr-IN</td>
            				<td width="34%">0x044E</td>
            				<td width="34%">Marathi - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mn</td>
            				<td width="34%">0x0050</td>
            				<td width="34%">Mongolian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">mn-MN</td>
            				<td width="34%">0x0450</td>
            				<td width="34%">Mongolian - Mongolia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">no</td>
            				<td width="34%">0x0014</td>
            				<td width="34%">Norwegian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">nb-NO</td>
            				<td width="34%">0x0414</td>
            				<td width="34%">Norwegian (Bokmål) - Norway</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">nn-NO</td>
            				<td width="34%">0x0814</td>
            				<td width="34%">Norwegian (Nynorsk) - Norway</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pl</td>
            				<td width="34%">0x0015</td>
            				<td width="34%">Polish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pl-PL</td>
            				<td width="34%">0x0415</td>
            				<td width="34%">Polish - Poland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pt</td>
            				<td width="34%">0x0016</td>
            				<td width="34%">Portuguese</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pt-BR</td>
            				<td width="34%">0x0416</td>
            				<td width="34%">Portuguese - Brazil</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pt-PT</td>
            				<td width="34%">0x0816</td>
            				<td width="34%">Portuguese - Portugal</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pa</td>
            				<td width="34%">0x0046</td>
            				<td width="34%">Punjabi</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">pa-IN</td>
            				<td width="34%">0x0446</td>
            				<td width="34%">Punjabi - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ro</td>
            				<td width="34%">0x0018</td>
            				<td width="34%">Romanian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ro-RO</td>
            				<td width="34%">0x0418</td>
            				<td width="34%">Romanian - Romania</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ru</td>
            				<td width="34%">0x0019</td>
            				<td width="34%">Russian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ru-RU</td>
            				<td width="34%">0x0419</td>
            				<td width="34%">Russian - Russia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sa</td>
            				<td width="34%">0x004F</td>
            				<td width="34%">Sanskrit</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sa-IN</td>
            				<td width="34%">0x044F</td>
            				<td width="34%">Sanskrit - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sr-SP-Cyrl</td>
            				<td width="34%">0x0C1A</td>
            				<td width="34%">Serbian (Cyrillic) - Serbia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sr-SP-Latn</td>
            				<td width="34%">0x081A</td>
            				<td width="34%">Serbian (Latin) - Serbia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sk</td>
            				<td width="34%">0x001B</td>
            				<td width="34%">Slovak</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sk-SK</td>
            				<td width="34%">0x041B</td>
            				<td width="34%">Slovak - Slovakia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sl</td>
            				<td width="34%">0x0024</td>
            				<td width="34%">Slovenian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sl-SI</td>
            				<td width="34%">0x0424</td>
            				<td width="34%">Slovenian - Slovenia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es</td>
            				<td width="34%">0x000A</td>
            				<td width="34%">Spanish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-AR</td>
            				<td width="34%">0x2C0A</td>
            				<td width="34%">Spanish - Argentina</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-BO</td>
            				<td width="34%">0x400A</td>
            				<td width="34%">Spanish - Bolivia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-CL</td>
            				<td width="34%">0x340A</td>
            				<td width="34%">Spanish - Chile</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-CO</td>
            				<td width="34%">0x240A</td>
            				<td width="34%">Spanish - Colombia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-CR</td>
            				<td width="34%">0x140A</td>
            				<td width="34%">Spanish - Costa Rica</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-DO</td>
            				<td width="34%">0x1C0A</td>
            				<td width="34%">Spanish - Dominican Republic</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-EC</td>
            				<td width="34%">0x300A</td>
            				<td width="34%">Spanish - Ecuador</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-SV</td>
            				<td width="34%">0x440A</td>
            				<td width="34%">Spanish - El Salvador</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-GT</td>
            				<td width="34%">0x100A</td>
            				<td width="34%">Spanish - Guatemala</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-HN</td>
            				<td width="34%">0x480A</td>
            				<td width="34%">Spanish - Honduras</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-MX</td>
            				<td width="34%">0x080A</td>
            				<td width="34%">Spanish - Mexico</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-NI</td>
            				<td width="34%">0x4C0A</td>
            				<td width="34%">Spanish - Nicaragua</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-PA</td>
            				<td width="34%">0x180A</td>
            				<td width="34%">Spanish - Panama</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-PY</td>
            				<td width="34%">0x3C0A</td>
            				<td width="34%">Spanish - Paraguay</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-PE</td>
            				<td width="34%">0x280A</td>
            				<td width="34%">Spanish - Peru</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-PR</td>
            				<td width="34%">0x500A</td>
            				<td width="34%">Spanish - Puerto Rico</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-ES</td>
            				<td width="34%">0x0C0A</td>
            				<td width="34%">Spanish - Spain</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-UY</td>
            				<td width="34%">0x380A</td>
            				<td width="34%">Spanish - Uruguay</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">es-VE</td>
            				<td width="34%">0x200A</td>
            				<td width="34%">Spanish - Venezuela</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sw</td>
            				<td width="34%">0x0041</td>
            				<td width="34%">Swahili</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sw-KE</td>
            				<td width="34%">0x0441</td>
            				<td width="34%">Swahili - Kenya</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sv</td>
            				<td width="34%">0x001D</td>
            				<td width="34%">Swedish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sv-FI</td>
            				<td width="34%">0x081D</td>
            				<td width="34%">Swedish - Finland</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">sv-SE</td>
            				<td width="34%">0x041D</td>
            				<td width="34%">Swedish - Sweden</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">syr</td>
            				<td width="34%">0x005A</td>
            				<td width="34%">Syriac</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">syr-SY</td>
            				<td width="34%">0x045A</td>
            				<td width="34%">Syriac - Syria</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ta</td>
            				<td width="34%">0x0049</td>
            				<td width="34%">Tamil</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ta-IN</td>
            				<td width="34%">0x0449</td>
            				<td width="34%">Tamil - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">tt</td>
            				<td width="34%">0x0044</td>
            				<td width="34%">Tatar</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">tt-RU</td>
            				<td width="34%">0x0444</td>
            				<td width="34%">Tatar - Russia</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">te</td>
            				<td width="34%">0x004A</td>
            				<td width="34%">Telugu</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">te-IN</td>
            				<td width="34%">0x044A</td>
            				<td width="34%">Telugu - India</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">th</td>
            				<td width="34%">0x001E</td>
            				<td width="34%">Thai</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">th-TH</td>
            				<td width="34%">0x041E</td>
            				<td width="34%">Thai - Thailand</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">tr</td>
            				<td width="34%">0x001F</td>
            				<td width="34%">Turkish</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">tr-TR</td>
            				<td width="34%">0x041F</td>
            				<td width="34%">Turkish - Turkey</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">uk</td>
            				<td width="34%">0x0022</td>
            				<td width="34%">Ukrainian</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">uk-UA</td>
            				<td width="34%">0x0422</td>
            				<td width="34%">Ukrainian - Ukraine</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ur</td>
            				<td width="34%">0x0020</td>
            				<td width="34%">Urdu</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">ur-PK</td>
            				<td width="34%">0x0420</td>
            				<td width="34%">Urdu - Pakistan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">uz</td>
            				<td width="34%">0x0043</td>
            				<td width="34%">Uzbek</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">uz-UZ-Cyrl</td>
            				<td width="34%">0x0843</td>
            				<td width="34%">Uzbek (Cyrillic) - Uzbekistan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">uz-UZ-Latn</td>
            				<td width="34%">0x0443</td>
            				<td width="34%">Uzbek (Latin) - Uzbekistan</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">vi</td>
            				<td width="34%">0x002A</td>
            				<td width="34%">Vietnamese</td>
            			</tr>
            			<tr valign="top">
            				<td width="32%">vi-VN</td>
            				<td width="34%">0x042A</td>
            				<td width="34%">Vietnamese - Vietnam</td>
            			</tr>
            		</tbody>
            	</table>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.Calendar">
            <summary>
            Gets the default <strong>System.Globalization.Calendar</strong> instance as
            specified by the default culture.
            </summary>
            <remarks>
            	<para>A calendar divides time into measures, such as weeks, months, and years. The
                number, length, and start of the divisions vary in each calendar.</para>
            	<para>Any moment in time can be represented as a set of numeric values using a
                particular calendar. For example, the last vernal equinox occurred at (0.0, 0, 46,
                8, 20, 3, 1999) in the Gregorian calendar. An implementation of <b>Calendar</b> can
                map any <strong>DateTime</strong> value to a similar set of numeric values, and
                <b>DateTime</b> can map such sets of numeric values to a textual representation
                using information from <b>Calendar</b> and <strong>DateTimeFormatInfo</strong>. The
                textual representation can be culture-sensitive (for example, "8:46 AM March 20th
                1999 AD" for the en-US culture) or culture-insensitive (for example,
                "1999-03-20T08:46:00" in ISO 8601 format).</para>
            	<para>A <b>Calendar</b> implementation can define one or more eras. The
                <b>Calendar</b> class identifies the eras as enumerated integers where the current
                era (<strong>CurrentEra</strong>) has the value 0.</para>
            	<para>In order to make up for the difference between the calendar year and the
                actual time that the earth rotates around the sun or the actual time that the moon
                rotates around the earth, a leap year has a different number of days than a
                standard calendar year. Each <b>Calendar</b> implementation defines leap years
                differently.</para>
            	<para>For consistency, the first unit in each interval (for example, the first
                month) is assigned the value 1.</para>
            	<para>The <strong>System.Globalization</strong> namespace includes the following
                <b>Calendar</b> implementations: <strong>GregorianCalendar</strong>,
                <strong>HebrewCalendar</strong>, <strong>HijriCalendar</strong>,
                <strong>JapaneseCalendar</strong>, <strong>JulianCalendar</strong>,
                <strong>KoreanCalendar</strong>, <strong>TaiwanCalendar</strong>, and
                <strong>ThaiBuddhistCalendar</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.PresentationType">
            <summary>
            Gets or sets the default type used by <strong>RadCalendar</strong> to handle its
            layout, and how will react to user interaction.
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>Member</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><strong>Interactive</strong></term>
            			<description>Interactive - user is allowed to select dates, navigate,
                        etc.</description>
            		</item>
            		<item>
            			<term><strong>Preview</strong></term>
            			<description>Preview - does not allow user interaction, for presentation
                        purposes only.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.Orientation">
            <summary>
            Gets or sets the orientation (rendering direction) of the calendar component.
            Default value is <strong>RenderInRows</strong>.
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>Member</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><strong>RenderInRows</strong></term>
            			<description>Renders the calendar data row after row.</description>
            		</item>
            		<item>
            			<term><strong>RenderInColumns</strong></term>
            			<description>RenderInColumns - Renders the calendar data column after
                        column.</description>
            		</item>
            		<item>
            			<term><strong>None</strong></term>
            			<description>Enforces fallback to the default Orientation for
                        Telerik RadCalendar.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make Telerik RadCalendar postback to the server 
            on date selection or when navigating to a different month.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowDayCellToolTips">
            <summary>
            Gets or sets a value indicating whether a tooltips for day cells should be rendered.
            </summary>
            <remarks>
            Setting this property to false will force Telerik RadCalendar to not render day cell tooltips 
            </remarks>
            <value>
            The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationSummary">
            <summary>
            Gets or sets a value for navigation controls summary.
            </summary>
            <remarks>
            Setting this property to empty string will force Telerik RadCalendar to not render summary attribute 
            </remarks>
            <value>
            The default value is <strong>"title and navigation"</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CalendarSummary">
            <summary>
            Gets or sets a value for RadCalendar summary.
            </summary>
            <remarks>
            Setting this property to empty string will force Telerik RadCalendar to not render summary attribute 
            </remarks>
            <value>
            The default value is <strong>"Calendar"</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.HeaderTemplate">
            <summary>
            Gets or sets the <strong>System.Web.UI.ITemplate</strong> that defines how the
            header section of the <strong>RadCalendar</strong> control is displayed.
            </summary>
            <remarks>
            	<para>Header section of the <strong>RadCalendar</strong> control is displayed under
                the title section and above the main calendar area (the section that displays the
                dates information).</para>
            	<para>Use this property to create a template that controls how the header section
                of a <strong>RadCalendar</strong> control is displayed.</para>
            	<blockquote class="dtBlock">
            		<b class="le">CAUTION</b> This control can be used to display user input, which
                    might include malicious client script. Check any information that is sent from
                    a client for executable script, SQL statements, or other code before displaying
                    it in your application. ASP.NET provides an input request validation feature to
                    block script and HTML in user input. Validation server controls are also
                    provided to assess user input. For more information, see <strong>Validation
                    Server Controls</strong> in <strong>MSDN</strong><font color="black">.</font>
            	</blockquote>
            </remarks>
            <value>The default value is a null reference (<b>Nothing</b> in Visual Basic).</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FooterTemplate">
            <value>The default value is a null reference (<b>Nothing</b> in Visual Basic).</value>
            <summary>
            Gets or sets the <strong>System.Web.UI.ITemplate</strong> that defines how the
            footer section of the <strong>RadCalendar</strong> control is displayed.
            </summary>
            <remarks>
            	<para>Footer section of the <strong>RadCalendar</strong> control is displayed under
                the main calendar area (the section that displays the dates information).</para>
            	<para>Use this property to create a template that controls how the footer section
                of a <strong>RadCalendar</strong> control is displayed.</para>
            	<blockquote class="dtBlock">
            		<b class="le">CAUTION</b> This control can be used to display user input, which
                    might include malicious client script. Check any information that is sent from
                    a client for executable script, SQL statements, or other code before displaying
                    it in your application. ASP.NET provides an input request validation feature to
                    block script and HTML in user input. Validation server controls are also
                    provided to assess user input. For more information, see <strong>Validation
                    Server Controls</strong> in <strong>MSDN</strong><font color="black">.</font>
            	</blockquote>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableNavigation">
            <summary>
            Gets or sets whether the navigation controls in the title section will be
            displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowNavigationButtons">
            <summary>
            Gets or sets whether the navigation buttons in the title section will be
            displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowFastNavigationButtons">
            <summary>
            Gets or sets whether the fast navigation buttons in the title section will be
            displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableMonthYearFastNavigation">
            <summary>
            Gets or sets whether the month/year fast navigation controls in the title section will be
            enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationPrevText">
            <summary>
                Gets or sets the text displayed for the previous month navigation control. Will be
                applied only if there is no image set (see
                <see cref="P:Telerik.Web.UI.RadCalendar.NavigationPrevImage">NavigationPrevImage</see>).
            </summary>
            <remarks>
            	<para>Use the <em>NavigationPrevText</em> property to provide custom text for the
                previous month navigation element in the title section of
                <strong>RadCalendar</strong>.</para>
            	<para><strong>Note</strong> that the <em>NavigationPrevImage</em> has priority and
                its value should be set to an empty string in order to be applied the
                <em>NavigationPrevText</em> value.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <em>NavigationPrevText</em> property. For example,
                if you want to display an image for the next month navigation control, you can set
                this property to an expression that contains an <strong>&lt;img&gt;</strong>
                element. However note that
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~NavigationPrevImage.html">NavigationPrevImage</a>
                property is available for this type of functionality.</para>
            	<para>This property applies only if the <strong>EnableNavigation</strong> property
                is set to <strong>true</strong>.</para>
            </remarks>
            <value>
            The text displayed for the <strong>CalendarView</strong> previous month
            navigation cell. The default value is <b>"&amp;lt;"</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationNextText">
            <summary>
                Gets or sets the text displayed for the next month navigation control. Will be
                applied if there is no image set (see
                <see cref="P:Telerik.Web.UI.RadCalendar.NavigationNextImage">NavigationNextImage</see>).
            </summary>
            <value>
            The text displayed for the <strong>CalendarView</strong> next month navigation
            cell. The default value is <b>"&amp;gt;"</b>.
            </value>
            <remarks>
            	<para>Use the <em>NavigationNextText</em> property to provide custom text for the
                next month navigation element in the title section of
                <strong>RadCalendar</strong>.</para>
            	<para><strong>Note</strong> that the <em>NavigationNextImage</em> has priority and
                its value should be set to an empty string in order to be applied the
                <em>NavigationNextText</em> value.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <em>NavigationNextText</em> property. For example,
                if you want to display an image for the next month navigation control, you can set
                this property to an expression that contains an <strong>&lt;img&gt;</strong>
                element. However note that
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~NavigationNextImage.html">NavigationNextImage</a>
                property is available for this type of functionality.</para>
            	<para>This property applies only if the <strong>EnableNavigation</strong> property
                is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationPrevText">
            <summary>
                Gets or sets the text displayed for the fast navigation previous month control.
                Will be applied if there is no image set (see
                <see cref="P:Telerik.Web.UI.RadCalendar.FastNavigationPrevImage">FastNavigationPrevImage</see>).
            </summary>
            <value>
            The text displayed for the <strong>CalendarView</strong> selection element in the
            fast navigation previous month cell. The default value is
            <b>"&amp;lt;&amp;lt;"</b>.
            </value>
            <remarks>
            	<para>Use the <em>FastNavigationPrevText</em> property to provide custom text for
                the next month navigation element in the title section of
                <strong>RadCalendar</strong>.</para>
            	<para><strong>Note</strong> that the <em>FastNavigationPrevImage</em> has priority
                and its value should be set to an empty string in order to be applied the
                <em>FastNavigationPrevText</em> value.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <em>FastNavigationPrevText</em> property. For
                example, if you want to display an image for the next month navigation control, you
                can set this property to an expression that contains an
                <strong>&lt;img&gt;</strong> element. However note that
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~FastNavigationPrevImage.html">FastNavigationPrevImage</a>
                property is available for this type of functionality.</para>
            	<para>This property applies only if the <strong>EnableNavigation</strong> property
                is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationNextText">
            <summary>
                Gets or sets the text displayed for the fast navigation next month control. Will be
                applied if there is no image set (see
                <see cref="P:Telerik.Web.UI.RadCalendar.FastNavigationNextImage">FastNavigationNextImage</see>).
            </summary>
            <value>
            The text displayed for the <strong>CalendarView</strong> selection element in the
            fast navigation next month cell. The default value is <b>"&amp;gt;&amp;gt;"</b>.
            </value>
            <remarks>
            	<para>Use the <em>FastNavigationNextText</em> property to provide custom text for
                the next month navigation element in the title section of
                <strong>RadCalendar</strong>.</para>
            	<para><strong>Note</strong> that the <em>FastNavigationNextImage</em> has priority
                and its value should be set to an empty string in order to be applied the
                <em>FastNavigationNextText</em> value.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <em>FastNavigationNextText</em> property. For
                example, if you want to display an image for the next month navigation control, you
                can set this property to an expression that contains an
                <strong>&lt;img&gt;</strong> element. However note that
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~FastNavigationNextImage.html">FastNavigationNextImage</a>
                property is available for this type of functionality.</para>
            	<para>This property applies only if the <strong>EnableNavigation</strong> property
                is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationPrevImage">
            <summary>
            Gets or sets name of the image that is displayed for the previous month navigation control.
            </summary>
            <remarks>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                (if no skin is applied) or the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SkinsPath.html">SkinPath</a>
                (if skin is applied) properties values.</para>
            	<para><br/>
                Example when skin is <strong>NOT</strong> defined:<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "Img/nav.gif"</para>
            	<para>Example when skin is defined:<br/>
            		<strong>SkinPath</strong> = "RadControls/Calendar/Skins/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "RadControls/Calendar/Skins/nav.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationNextImage">
            <summary>
            Gets or sets the name of the image that is displayed for the next month navigation control.
            </summary>
            <remarks>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                (if no skin is applied) or the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SkinsPath.html">SkinPath</a>
                (if skin is applied) properties values.</para>
            	<para><br/>
                Example when skin is <strong>NOT</strong> defined:<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "Img/nav.gif"</para>
            	<para>Example when skin is defined:<br/>
            		<strong>SkinPath</strong> = "RadControls/Calendar/Skins/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "RadControls/Calendar/Skins/nav.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationPrevImage">
            <summary>
            Gets or sets the name of the image that is displayed for the previous month fast
            navigation control.
            </summary>
            <remarks>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                (if no skin is applied) or the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SkinsPath.html">SkinPath</a>
                (if skin is applied) properties values.</para>
            	<para><br/>
                Example when skin is <strong>NOT</strong> defined:<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "Img/nav.gif"</para>
            	<para>Example when skin is defined:<br/>
            		<strong>SkinPath</strong> = "RadControls/Calendar/Skins/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "RadControls/Calendar/Skins/nav.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationNextImage">
            <summary>
            Gets or sets the name of the image that is displayed for the next month fast
            navigation control.
            </summary>
            <remarks>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                (if no skin is applied) or the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SkinsPath.html">SkinPath</a>
                (if skin is applied) properties values.</para>
            	<para><br/>
                Example when skin is <strong>NOT</strong> defined:<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "Img/nav.gif"</para>
            	<para>Example when skin is defined:<br/>
            		<strong>SkinPath</strong> = "RadControls/Calendar/Skins/"<br/>
            		<strong>RowSelectorImage</strong> = "nav.gif"<br/>
            		<strong>complete image URL</strong> : "RadControls/Calendar/Skins/nav.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationPrevToolTip">
            <summary>
            Gets or sets the text displayed as a tooltip for the previous month navigation control.
            </summary>
            <remarks>
            Use the <em>NavigationPrevToolTip</em> property to provide custom text for the
            tooltip of the previous month navigation element in the title section of
            <strong>RadCalendar</strong>.
            </remarks>
            <value>
            The tooltip text displayed for the <strong>CalendarView</strong> previous month
            navigation cell. The default value is <b>"&amp;lt;"</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationNextToolTip">
            <summary>
            Gets or sets the text displayed as a tooltip for the next month navigation control.
            </summary>
            <value>
            The tooltip text displayed for the <strong>CalendarView</strong> next month
            navigation cell. The default value is <b>"&amp;gt;"</b>.
            </value>
            <remarks>
            Use the <em>NavigationNextToolTip</em> property to provide custom text for the
            tooltip of the next month navigation element in the title section of
            <strong>RadCalendar</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationPrevToolTip">
            <summary>
            Gets or sets the text displayed as a tooltip for the fast navigation previous
            month control.
            </summary>
            <remarks>
            Use the <em>FastNavigationPrevToolTip</em> property to provide custom text for
            the tooltip of the fast navigation previous month element in the title section of
            <strong>RadCalendar</strong>.
            </remarks>
            <value>
            The tooltip text displayed for the <strong>CalendarView</strong> fast navigation
            previous month cell. The default value is <b>"&amp;lt;&amp;lt;"</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationNextToolTip">
            <summary>
            Gets or sets the text displayed as a tooltip for the fast navigation next month
            control.
            </summary>
            <remarks>
            Use the <em>FastNavigationNextToolTip</em> property to provide custom text for
            the tooltip of the fast navigation next month element in the title section of
            <strong>RadCalendar</strong>.
            </remarks>
            <value>
            The tooltip text displayed for the <strong>CalendarView</strong> fast navigation
            next month cell. The default value is <b>"&amp;gt;&amp;gt;"</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationCellSpacing">
            <summary>
            Gets or sets the cell spacing that is applied to the title table.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.NavigationCellPadding">
            <summary>
            Gets or sets the cell padding that is applied to the title table.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.TitleAlign">
            <summary>
            	<para>Gets or sets the horizontal alignment of the calendar title.</para>
            	<para>The HorizontalAlign enumeration is defined in
                <strong>System.Web.UI.WebControls</strong></para>
            </summary>
            <remarks>
            	<list type="table">
            		<listheader>
            			<term>
            				<para align="left">Member name</para>
            			</term>
            			<description>
            				<para align="left">Description</para>
            			</description>
            		</listheader>
            		<item>
            			<term>
            				<para align="left"><b>Center</b></para>
            			</term>
            			<description>The contents of a container are centered.</description>
            		</item>
            		<item>
            			<term><b>Justify</b></term>
            			<description>The contents of a container are uniformly spread out and
                        aligned with both the left and right margins.</description>
            		</item>
            		<item>
            			<term><b>Left</b></term>
            			<description>The contents of a container are left justified.</description>
            		</item>
            		<item>
            			<term><b>NotSet</b></term>
            			<description>The horizontal alignment is not set.</description>
            		</item>
            		<item>
            			<term><b>Right</b></term>
            			<description>The contents of a container are right justified.</description>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.TitleFormat">
            <summary>Gets or sets the format string that is applied to the calendar title.</summary>
            <remarks>
            	<para>The <i>property</i> should contain either a format specifier character or a
                custom format pattern. For more information, see the summary page for
                <strong>System.Globalization.DateTimeFormatInfo</strong>.</para>
            	<para>By default this <em>property</em> uses formatting string of
                '<font size="2"><strong>MMMM yyyy</strong>'. Valid formats are all supported by the .NET
                Framework.</font></para>
            	<para><font size="2">Example:</font></para>
            	<ul class="noindent">
            		<li>"d" is the standard short date pattern.</li>
            		<li>"%d" returns the day of the month; "%d" is a custom pattern.</li>
            		<li>"d " returns the day of the month followed by a white-space character; "d "
                    is a custom pattern.</li>
            	</ul>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DayCellToolTipFormat">
            <summary>Gets or sets the format string that is applied to the days cells tooltip.</summary>
            <remarks>
            	<para>The <i>property</i> should contain either a format specifier character or a
                custom format pattern. For more information, see the summary page for
                <strong>System.Globalization.DateTimeFormatInfo</strong>.</para>
            	<para>By default this <em>property</em> uses formatting string of
                '<font size="2"><strong>dddd, MMMM dd, yyyy</strong>'. Valid formats are all supported by the .NET
                Framework.</font></para>
            	<para><font size="2">Example:</font></para>
            	<ul class="noindent">
            		<li>"d" is the standard short date pattern.</li>
            		<li>"%d" returns the day of the month; "%d" is a custom pattern.</li>
            		<li>"d " returns the day of the month followed by a white-space character; "d "
                    is a custom pattern.</li>
            	</ul>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DateRangeSeparator">
            <summary>
            Gets or sets the separator string that will be put between start and end months in a multi view title.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.HideNavigationControls">
            <summary>
            Gets or sets a value indicating whether the navigation control should be visible when disabled.
            </summary>
            <value>
            The default value is <strong>false</strong>.
            </value>
            <remarks>
            Setting this property to true will hide the navigation controls when they are disabled
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CssFile">
            <summary>
            Gets or sets the name of the file containing the CSS definition used by RadCalendar. Use "~/" (tilde) as a substitution of the web-application root directory.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DefaultCellPadding">
            <summary>
            Gets or sets the cell padding of the table where are rendered the calendar days.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DefaultCellSpacing">
            <summary>
            Gets or sets the cell spacing of the table where are rendered the calendar days.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SpecialDays">
            <summary>
            A collection of special days in the calendar to which may be applied specific formatting.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Calendar/Examples/Functionality/SpecialDays/DefaultCS.aspx">SpecialDays online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DayStyle">
            <summary>
            Gets the style properties for the days in the displayed month.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the days in the displayed month.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.WeekendDayStyle">
            <summary>
            Gets the style properties for the weekend dates on the Calendar control.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the weekend dates on the Calendar.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CalendarTableStyle">
            <summary>
            Gets the style properties for the Calendar table container.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the Calendar table container.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.OtherMonthDayStyle">
            <summary>
            Gets the style properties for the days on the Calendar control that are not in the displayed month.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the days on the Calendar control that are not in the displayed month. 
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.OutOfRangeDayStyle">
            <summary>
            Gets the style properties for the days on the Calendar control that are out of the valid range for selection.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the days on the Calendar control that are out of the valid range for selection.
            </value> 
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DisabledDayStyle">
            <summary>
            Gets the style properties for the disabled dates.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the disabled dates.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.SelectedDayStyle">
            <summary>
            Gets the style properties for the selected dates.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the selected dates.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.DayOverStyle">
            <summary>
            Gets the style properties applied when hovering over the Calendar days.
            </summary>
            <value>
            A TableItemStyle that contains the style properties applied when hovering over the Calendar days.
            </value> 
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.TitleStyle">
            <summary>
            Gets the style properties of the title heading for the Calendar control.
            </summary>
            <value>
            A TableItemStyle that contains the style properties of the title heading for the Calendar.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.HeaderStyle">
            <summary>
            Gets the style properties for the row and column headers.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the row and column headers.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.FastNavigationStyle">
            <summary>Gets the style properties for the Month/Year fast navigation.</summary>
            <value>
            A TableItemStyle that contains the style properties for the the Month/Year fast
            navigation.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ViewSelectorStyle">
            <summary>
            Gets the style properties for the view selector cell.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the view selector cell.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.CalendarView">
            <summary>
            	<para>Exposes the top instance of <strong>CalendarView</strong> or its derived
                types.</para>
            	<para>Every <strong>CalendarView</strong> class handles the real calculation and
                rendering of <strong>RadCalendar</strong>'s calendric information. The
                <strong>CalendarView</strong> has the
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView~ChildViews.html">
                ChildViews</a> collection which contains all the sub views in case of multi view
                setup.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowColumnHeaders">
            <summary>Gets or sets whether the column headers will appear on the calendar.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowRowHeaders">
            <summary>Gets or sets whether the row headers will appear on the calendar.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableViewSelector">
            <summary>
            Gets or sets whether a selector for the entire <strong>CalendarView</strong> (
            <strong>MonthView</strong> ) will appear on the calendar.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ShowOtherMonthsDays">
            <summary>
            Gets or sets whether the month matrix, when rendered will show days from other (previous or next)
            months or will render only blank cells.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.UseColumnHeadersAsSelectors">
            <summary>
            When the
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ShowColumnHeaders.html">ShowColumnHeaders</a>
            and/or
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ShowRowHeaders.html">ShowRowHeaders</a>
            properties are set to true, the <strong>UseColumnHeadersAsSelectors</strong> property specifies
            whether to use the days of the week, which overrides the used text/image header if
            any.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.UseRowHeadersAsSelectors">
            <summary>
            When the
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~EnableColumnSelectors.html">ShowColumnHeaders</a>
            and/or
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~EnableRowSelectors.html">ShowRowHeaders</a>
            properties are set to true, the <strong>UseRowHeadersAsSelectors</strong> property
            specifies whether to use the number of the week, which overrides the used text/image
            selector if any.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.RowHeaderText">
            <remarks>
            	<para>Use the <strong>RowHeaderText</strong> property to provide custom text for
                the <strong>CalendarView</strong> complete row header element.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <strong>RowHeaderText</strong> property. For
                example, if you want to display an image for the next month navigation control, you
                can set this property to an expression that contains an
                <strong>&lt;img&gt;</strong> element.</para>
            	<para>This property applies only if the <strong>ShowRowsHeaders</strong>
                property is set to <strong>true</strong>.</para>
            </remarks>
            <value>
            The text displayed for the <strong>CalendarView</strong> header element. The default value is <b>""</b>.
            </value>
            <summary>
            Gets or sets the text displayed for the row header element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.RowHeaderImage">
            <value>
            The image displayed for the <strong>CalendarView</strong> row header element. The default value is <b>""</b>.
            </value>
            <summary>
            Gets or sets the image displayed for the row header element.
            </summary>
            <remarks>
            	<para>This property applies only if the <strong>ShowRowHeaders</strong> property is
                set to <strong>true</strong>. If <strong>RowHeaderText</strong> is set too, its
                value is set as an alternative text to the image of the row header.</para>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                value.</para>
            	<para>Example:<br/>
            		<strong>ShowRowHeaders</strong> = "true"<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>RowHeaderImage</strong> = "selector.gif"<br/>
            		<strong>complete image URL</strong> : "Img/selector.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ColumnHeaderText">
            <remarks>
            	<para>Use the <strong>ColumnHeaderText</strong> property to provide custom text
                for the <strong>CalendarView</strong> complete column header element.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <strong>ColumnHeaderText</strong> property. For
                example, if you want to display an image for the next month navigation control, you
                can set this property to an expression that contains an
                <strong>&lt;img&gt;</strong> element.</para>
            	<para>This property applies only if the <strong>ShowColumnHeaders</strong>
                property is set to <strong>true</strong>.</para>
            </remarks>
            <value>
            The text displayed for the <strong>CalendarView</strong> column header element. The default value is <b>""</b>.
            </value>
            <summary>
            Gets or sets the text displayed for the column header element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ColumnHeaderImage">
            <value>
            The image displayed for the <strong>CalendarView</strong> column header element in the
            header cells. The default value is <b>""</b>.
            </value>
            <summary>
            Gets or sets the image displayed for the column header element.
            </summary>
            <remarks>
            	<para>This property applies only if the <strong>ShowColumnHeaders</strong> property
                is set to <strong>true</strong>. If <strong>ColumnHeaderText</strong> is set too,
                its value is set as an alternative text to the image of the column header.</para>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                value.</para>
            	<para>Example:</para>
            	<para><strong>ShowColumnHeaders</strong>="true"<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>ColumnHeaderImage</strong> = "selector.gif"<br/>
            		<strong>complete image URL</strong> : "Img/selector.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ViewSelectorText">
            <summary>
            	<para>Gets or sets the text displayed for the complete
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>
                selection element in the view selector cell.</para>
            </summary>
            <value>
            The text displayed for the <strong>CalendarView</strong> selection element in the
            selector cell. The default value is <b>""</b>.
            </value>
            <remarks>
            	<para>Use the <strong>ViewSelectorText</strong> property to provide custom text for
                the <strong>CalendarView</strong> complete selection element in the selector
                cell.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/hs-tip.gif"/></term>
            				<description>
            					<para>This property does not automatically encode to HTML. You need
                                to convert special characters to the appropriate HTML value, unless
                                you want the characters to be treated as HTML. For example, to
                                explicitly display the greater than symbol (&gt;), you must use the
                                value <strong>&amp;gt;</strong>.</para>
            				</description>
            			</item>
            		</list>
            	</div>
            	<para>Because this property does not automatically encode to HTML, it is possible
                to specify an HTML tag for the <strong>ViewSelectorText</strong> property. For
                example, if you want to display an image for the next month navigation control, you
                can set this property to an expression that contains an
                <strong>&lt;img&gt;</strong> element.</para>
            	<para>This property applies only if the <strong>EnableViewSelector</strong>
                property is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.ViewSelectorImage">
            <summary>
            	<para>Gets or sets the image displayed for the complete
                <a href="RadCalendar~Telerik.Web.UI.Base.Calendar.CalendarView.html">CalendarView</a>
                selection element in the view selector cell.</para>
            </summary>
            <value>
            The image displayed for the <strong>CalendarView</strong> selection element in
            the selector cell. The default value is <b>""</b>.
            </value>
            <remarks>
            	<para>When using this property, the whole image URL is generated using also the
                <a href="RadCalendar~Telerik.Web.UI.RadCalendar~ImagesBaseDir.html">ImagesBaseDir</a>
                value.</para>
            	<para>Example:<br/>
            		<strong>ImagesBaseDir</strong> = "Img/"<br/>
            		<strong>ViewSelectorImage</strong> = "selector.gif"<br/>
            		<strong>complete image URL</strong> : "Img/selector.gif"</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableMultiSelect">
            <summary>
            Allows the selection of multiple dates. If not set, only a single date is selected, and if any dates
            are all ready selected, they are cleared.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.EnableNavigationAnimation">
            <summary>
            Enables the animation shown when the calendar navigates to a different view.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendar.Skin">
            <summary>
            Gets or sets the name of the skin used. All skins reside in the location set by
            the <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SkinsPath.html">SkinsPath
            Property</a>.
            </summary>
            <remarks>
            For additional information please refer to the
            <a href="GeneralSettings.html">Visual Settings</a> topic in this manual.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadCalendar.DayRender">
            <summary>
            	<em>DayRender</em> event is fired after the generation of every calendar cell
            object and just before it gets rendered to the client. It is the last place where
            changes to the already constructed calendar cells can be made.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadCalendar.HeaderCellRender">
            <summary>
            	<em>HeadeCellRender</em> event is fired after the generation of every calendar header cell
            object and just before it gets rendered to the client. It is the preferred place where
            changes to the constructed calendar header cells can be made.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadCalendar.SelectionChanged">
            <summary>
            	<em>SelectionChanged</em> event is fired when a new date is added or removed from
            the
            <a href="RadCalendar~Telerik.Web.UI.RadCalendar~SelectedDates.html">SelectedDates</a>
            collection.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadCalendar.DefaultViewChanged">
            <summary>
            	<em>DefaultViewChanged</em> event is fired a a navigation to a different date
            range occurred. Generally this is done by using the normal navigation buttons or the
            fast date navigation popup that allows "jumping" to a specified date.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDateInput">
            <summary>
            A control which ensures the date entered by the user is verified and
            accurate.
            </summary>
            <example>
                The following example demonstrates how to dynamically add
                <see cref="T:Telerik.Web.UI.RadDateInput">RadDateInput</see> to the page. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e) 
            { 
                RadDateInput dateInput = new RadDateInput();
                dateInput.ID = "dateInput";
                dateInput.Format = "d"; //Short date format
                dateInput.Culture = new CultureInfo("en-US");
                dateInput.SelectedDate = DateTime.Now;
                
                DateInputPlaceholder.Controls.Add(dateInput);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim dateInput As New RadDateInput()
                dateInput.ID = "dateInput"
                dateInput.Format = "d" 'Short Date Format
                dateInput.Culture = New CultureInfo("en-US")
                dateInput.SelectedDate = DateTime.Now
                
                DateInputPlaceholder.Controls.Add(dateInput)
            End Sub
                </code>
            </example>
            <remarks>
                You need to set the <see cref="P:Telerik.Web.UI.RadDateInput.DateFormat">DateFormat Property</see> to specify the
                relevant format for the date. You can also specify the culture information by
                setting the <see cref="P:Telerik.Web.UI.RadDateInput.Culture">Culture Property</see>.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadInputControl">
            <summary>
            RadInputControl class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadInputControl.Focus">
            <summary>Sets input focus to a RadInput.</summary>
            <remarks>
            	<para>Use the Focus method to set the initial focus of the Web page to the
                RadInput. The page will be opened in the browser with the control
                selected.</para>
            	<para>The Focus method causes a call to the page focus script to be emitted on the
                rendered page. If the page does not contain a control with an HTML ID attribute
                that matches the control that the Focus method was invoked on, then page focus will
                not be set. An example where this can occur is when you set the focus on a user
                control instead of setting the focus on a child control of the user control. In
                this scenario, you can use the FindControl method to find the child control of the
                user control and invoke its Focus method.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="E:Telerik.Web.UI.RadInputControl.ChildrenCreated">
            <summary>
            	Occurs after all child controls of the RadDateInput control have been created.
            	You can customize the control there, and add additional child controls.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.Label">
            <summary>
            Gets or sets the text of the <label>tag rendered along with RadInput
            control.</label>
            </summary>
            <value>
            A string used as a label for the control. The default value is empty string
            ("").
            </value>
            <remarks>
            If the value of this property has not been set, a tag will not be rendered. Keep
            in mind that accessibility standards require labels for all input controls.
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <example>
            	<para>The following code example demonstrates how to use the Label property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>
            &lt;head&gt;<br/>
                &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>
            		<br/>        protected void RadTextBox1_TextChanged(object sender, EventArgs e)<br/>
                    {<br/>            this.RadTextBox1.Label = this.RadTextBox1.Text;<br/>        }<br/>&lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        RadTextBox Example<br/>        &lt;/h3&gt;<br/>
                    &lt;radI:RadTextBox ID="RadTextBox1" AutoPostBack="true" EmptyMessage="Type Here" Label="Default Label: " runat="server" OnTextChanged="RadTextBox1_TextChanged"&gt;<br/>
                    &lt;/radI:RadTextBox&gt;<br/>
            		<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.LabelCssClass">
            <summary>
            Gets or sets the CSS class applied to the tag rendered along with RadInput
            control.
            </summary>
            <value>
            A string used specifying the CSS class of the label of the control. The default
            value is empty string ("").
            </value>
            <remarks><para>This property is applicable only if the Label property has been set.</para></remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether an automatic post back to the server
            occurs whenever the user presses the ENTER or the TAB key while in the RadInput
            control.
            </summary>
            <remarks>
            Use the AutoPostBack property to specify whether an automatic post back to the
            server will occur whenever the user presses the ENTER or the TAB key while in the
            RadInput control.
            </remarks>
            <value>
            true if an automatic postback occurs whenever the user presses the ENTER or the
            TAB key while in the RadInput control; otherwise, false. The default is
            false.
            </value>
            <example>
            	<para>The following code example demonstrates how to use the AutoPostBack property
                to automatically display the sum of the values entered in the RadTextBoxes when the
                user presses the ENTER or the TAB key.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>      protected void Page_Load(Object sender, EventArgs e)<br/>      {<br/>         int Answer;<br/>
            		<br/>         // Due to a timing issue with when page validation occurs, call the<br/>
                     // Validate method to ensure that the values on the page are valid.<br/>         Page.Validate();<br/>
            		<br/>         // Add the values in the text boxes if the page is valid.<br/>         if(Page.IsValid)<br/>         {<br/>            Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text);<br/>
            		<br/>            AnswerMessage.Text = Answer.ToString();<br/>         }<br/>
            		<br/>      }<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            RadTextBox Example<br/>
                    &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>                    Enter integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    The two values are automatically added<br/>                    &lt;br /&gt;<br/>                    when you tab out of the text boxes.<br/>
                                &lt;br /&gt;<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" AutoPostBack="True" Text="1" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>
                                +<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" AutoPostBack="True" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>                        ErrorMessage="Please enter a value.&lt;br /&gt;" EnableClientScript="False" Display="Dynamic"<br/>
                                    runat="server" /&gt;<br/>                    &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    EnableClientScript="False" Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>                    &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" EnableClientScript="False" Display="Dynamic"<br/>                        runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>                        MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    EnableClientScript="False" Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>
                &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>&lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>
                  Protected Sub Page_Load(sender As Object, e As EventArgs)<br/><br/>         Dim Answer As Integer<br/><br/>         ' Due to a timing issue with when page validation occurs, call the<br/>         ' Validate method to ensure that the values on the page are valid.<br/>
                     Page.Validate()<br/><br/>         ' Add the values in the text boxes if the page is valid.<br/>         If Page.IsValid Then<br/><br/>            Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text)<br/><br/>
                        AnswerMessage.Text = Answer.ToString()<br/><br/>         End If<br/><br/>      End Sub<br/>    &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        RadTextBox Example<br/>        &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>
                            &lt;td colspan="5"&gt;<br/>                    Enter Integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    The two values are automatically added<br/>
                                &lt;br /&gt;<br/>                    When you tab out of the text boxes.<br/>
                                &lt;br /&gt;<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>
                        &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/><br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" AutoPostBack="True" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" AutoPostBack="True" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" EnableClientScript="False" Display="Dynamic"<br/>
                                    runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    EnableClientScript="False" Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" EnableClientScript="False" Display="Dynamic"<br/>
                                    runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    EnableClientScript="False" Display="Dynamic" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &amp;nbsp<br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.AutoCompleteType">
            <summary>
            Gets or sets a value that indicates the AutoComplete behavior of the input control
            </summary>
            <value>
            One of the System.Web.UI.WebControls.AutoCompleteType enumeration values,
            indicating the AutoComplete behavior for the input control. The default value is
            None.
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="System.ArgumentOutOfRangeException">The selected value is not one of the System.Web.UI.WebControls.AutoCompleteType enumeration values.</exception>
            <remarks>
            	<para>To assist with data entry, Microsoft Internet Explorer 5 and later and
                Netscape support a feature called AutoComplete. AutoComplete monitors a RadInput control
                and creates a list of values entered by the user. When the user returns to the
                input at a later time, the list is displayed. Instead of retyping a previously
                entered value, the user can simply select the value from this list. Use the
                AutoCompleteType property to control the behavior of the AutoComplete feature for a
                RadInput control. The System.Web.UI.WebControls.AutoCompleteType enumeration is
                used to represent the values that you can apply to the AutoCompleteType property.
                Not all browsers support the AutoComplete feature. Check with your browser to
                determine compatibility.</para>
            	<para>By default, the AutoCompleteType property for a RadInput control is set to
                AutoCompleteType.None. With this setting, the RadInput control shares the list
                with other RadInput controls with the same ID property across different pages.
                You can also share a list between RadInput controls based on a category, instead
                of an ID property. When you set the AutoCompleteType property to one of the
                category values (such as AutoCompleteType.FirstName, AutoCompleteType.LastName, and
                so on), all RadInput controls with the same category share the same list. You can
                disable the AutoComplete feature for a RadInput control by setting the
                AutoCompleteType property to AutoCompleteType.Disabled.</para>
            	<para>Refer to your browser documentation for details on configuring and enabling
                the AutoComplete feature. For example, to enable the AutoComplete feature in
                Internet Explorer version 5 or later, select Internet Options from the Tools menu,
                and then select the Content tab. Click the AutoComplete button to view and modify
                the various browser options for the AutoComplete feature.</para>
            	<para>This property cannot be set by themes or style sheet themes.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the AutoCompleteType
                enumeration to specify the AutoComplete category for a RadInput control. This
                example has a text box that accepts user input, which is a potential security
                threat. By default, ASP.NET Web pages validate that user input does not include
                script or HTML elements.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;<br/>
            		<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            		<br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>
            &lt;html&gt;<br/>&lt;head id="Head1" runat="server"&gt;<br/>    &lt;title&gt;AutoCompleteType example&lt;/title&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>
                &lt;form id="form1" runat="server"&gt;<br/>        &lt;!-- You need to enable the AutoComplete feature on --&gt;<br/>
                    &lt;!-- a browser that supports it (such as Internet   --&gt;<br/>        &lt;!-- Explorer 5.0 and later) for this sample to     --&gt;<br/>
                    &lt;!-- work. The AutoComplete lists are created after --&gt;<br/>        &lt;!-- the Submit button is clicked.                  --&gt;<br/>
                    &lt;h3&gt;<br/>            AutoCompleteType example&lt;/h3&gt;<br/>        Enter values in the text boxes and click the Submit<br/>        &lt;br /&gt;<br/>
                    button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;!-- The following TextBox controls have different  --&gt;<br/>
                    &lt;!-- categories assigned to their AutoCompleteType  --&gt;<br/>        &lt;!-- properties.                                    --&gt;<br/>
                    First Name:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="FirstNameTextBox" AutoCompleteType="FirstName" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    Last Name:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="LastNameTextBox" AutoCompleteType="LastName" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    Email:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="EmailTextBox" AutoCompleteType="Email" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;!-- The following TextBox controls have the same   --&gt;<br/>        &lt;!-- categories assigned to their AutoCompleteType  --&gt;<br/>
                    &lt;!-- properties. They share the same AutoComplete   --&gt;<br/>        &lt;!-- list.                                          --&gt;<br/>        Phone Line #1:&lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Phone1TextBox" AutoCompleteType="HomePhone" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        Phone Line #2:&lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Phone2TextBox" AutoCompleteType="HomePhone" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;!-- The following TextBox control has its          --&gt;<br/>        &lt;!-- AutoCompleteType property set to               --&gt;<br/>
                    &lt;!-- AutoCompleteType.None. All TextBox controls    --&gt;<br/>
                    &lt;!-- with the same ID across different pages share  --&gt;<br/>        &lt;!-- the same AutoComplete list.                    --&gt;<br/>        Category:&lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="CategoryTextBox" AutoCompleteType="None" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        &lt;!-- The following TextBox control has the          --&gt;<br/>
                    &lt;!-- AutoComplete feature disabled.                 --&gt;<br/>        Comments:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="CommentsTextBox" AutoCompleteType="Disabled" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" runat="Server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head id="Head1" runat="server"&gt;<br/>
                &lt;title&gt;AutoCompleteType example&lt;/title&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;!-- You need to enable the AutoComplete feature on --&gt;<br/>
                    &lt;!-- a browser that supports it (such as Internet --&gt;<br/>        &lt;!-- Explorer 5.0 and later) for this sample to --&gt;<br/>        &lt;!-- work. The AutoComplete lists are created after --&gt;<br/>
                    &lt;!-- the Submit button is clicked. --&gt;<br/>        &lt;h3&gt;<br/>            AutoCompleteType example&lt;/h3&gt;<br/>        Enter values in the text boxes and click the Submit<br/>        &lt;br /&gt;<br/>
                    button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;!-- The following TextBox controls have different --&gt;<br/>        &lt;!-- categories assigned to their AutoCompleteType --&gt;<br/>
                    &lt;!-- properties. --&gt;<br/>        First Name:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="FirstNameTextBox" AutoCompleteType="FirstName" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    Last Name:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="LastNameTextBox" AutoCompleteType="LastName" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        Email:&lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="EmailTextBox" AutoCompleteType="Email" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        &lt;!-- The following TextBox controls have the same --&gt;<br/>
                    &lt;!-- categories assigned to their AutoCompleteType --&gt;<br/>        &lt;!-- properties. They share the same AutoComplete --&gt;<br/>        &lt;!-- list. --&gt;<br/>        Phone Line #1:&lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Phone1TextBox" AutoCompleteType="HomePhone" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        Phone Line #2:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="Phone2TextBox" AutoCompleteType="HomePhone" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;!-- The following TextBox control has its --&gt;<br/>        &lt;!-- AutoCompleteType property set to --&gt;<br/>        &lt;!-- AutoCompleteType.None. All TextBox controls --&gt;<br/>        &lt;!-- with the same ID across different pages share --&gt;<br/>
                    &lt;!-- the same AutoComplete list. --&gt;<br/>        Category:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="CategoryTextBox" AutoCompleteType="None" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        &lt;!-- The following TextBox control has the --&gt;<br/>
                    &lt;!-- AutoComplete feature disabled. --&gt;<br/>        Comments:&lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="CommentsTextBox" AutoCompleteType="Disabled" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" runat="Server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when the
            RadInput control is set to validate when a postback occurs.
            </summary>
            <value>
            true if validation is performed when the RadInput control is set to validate
            when a postback occurs; otherwise, false. The default value is false.
            </value>
            <remarks>
            	<para>Use the CausesValidation property to determine whether validation is
                performed on both the client and the server when a RadInput control is set to
                validate when a postback occurs. Page validation determines whether the input
                controls associated with a validation control on the page all pass the validation
                rules specified by the validation control.</para>
            	<para>By default, a RadInput control does not cause page validation when the
                control loses focus. To set the RadInput control to validate when a postback
                occurs, set the CausesValidation property to true and the AutoPostBack property to
                true.</para>
            	<para>When the value of the CausesValidation property is set to true, you can also
                use the ValidationGroup property to specify the name of the validation group for
                which the RadInput control causes validation.</para>
            	<para>This property cannot be set by themes or style sheet themes.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.MaxLength">
            <summary>Gets or sets the maximum number of characters allowed in the text box.</summary>
            <value>
            The maximum number of characters allowed in the text box. The default is 0, which
            indicates that the property is not set.
            </value>
            <remarks>
            Use the MaxLength property to limit the number of characters that can be entered
            in the RadInput control. This property cannot be set by themes or style sheet
            themes. For more information, see ThemeableAttribute and Introduction to ASP.NET
            Themes.
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the MaxLength property to
                limit the number of characters allowed in the RadTextBox control to 3. This example
                has a RadTextBox that accepts user input, which is a potential security threat. By
                default, ASP.NET Web pages validate that user input does not include script or HTML
                elements.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>        protected void AddButton_Click(Object sender, EventArgs e)<br/>        {<br/>
                        int Answer;<br/>
            		<br/>            Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text);<br/>
            		<br/>            AnswerMessage.Text = Answer.ToString();<br/>
            		<br/>        }<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>
                    &lt;h3&gt;<br/>            RadTextBox Example<br/>        &lt;/h3&gt;<br/>        &lt;table&gt;<br/>
                        &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>                    Enter integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    Click the Add button to add the two values.<br/>
                                &lt;br /&gt;<br/>                    Click the Reset button to reset the text boxes.<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>
            
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>
                            &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>
                                &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>
                            &lt;td colspan="4"&gt;<br/>                    &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>
            &lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>
                  Protected Sub AddButton_Click(sender As Object, e As EventArgs)<br/><br/>         Dim Answer As Integer<br/><br/>
                     Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text)<br/><br/>         AnswerMessage.Text = Answer.ToString()<br/>
            <br/>      End Sub<br/><br/>    &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>
                    &lt;h3&gt;<br/>            RadTextBox Example<br/>        &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>
                            &lt;td colspan="5"&gt;<br/>                    Enter Integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    Click the Add button To add the two values.<br/> 
                               &lt;br /&gt;<br/>                    Click the Reset button To reset the text boxes.<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/><br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>
                        &lt;tr align="center"&gt;<br/>                &lt;td colspan="4"&gt;<br/>
                                &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/><br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ReadOnly">
            <summary>
            Gets or sets a value indicating whether the contents of the RadInput control
            can be changed.
            </summary>
            <value>
            true if the contents of the RadInput control cannot be changed; otherwise,
            false. The default value is false.
            </value>
            <remarks>
            Use the ReadOnly property to specify whether the contents of the RadInput
            control can be changed. Setting this property to true will prevent users from entering
            a value or changing the existing value. Note that the user of the RadInput control
            cannot change this property; only the developer can. The Text value of a RadInput
            control with the ReadOnly property set to true is sent to the server when a postback
            occurs, but the server does no processing for a read-only RadInput. This prevents a
            malicious user from changing a Text value that is read-only. The value of the Text
            property is preserved in the view state between postbacks unless modified by
            server-side code. This property cannot be set by themes or style sheet themes.
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the ReadOnly property to
                prevent any changes to the text displayed in the RadTextBox control. This example
                has a RadTextBox that accepts user input, which is a potential security threat. By
                default, ASP.NET Web pages validate that user input does not include script or HTML
                elements.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;MultiLine TextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>        protected void SubmitButton_Click(Object sender, EventArgs e)<br/>
                    {<br/>
            		<br/>            Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text;<br/>
            		<br/>        }<br/>
            		<br/>        protected void Check_Change(Object sender, EventArgs e)<br/>        {<br/>
            		<br/>            Comment.Wrap = WrapCheckBox.Checked;<br/>            Comment.ReadOnly = ReadOnlyCheckBox.Checked;<br/>
            		<br/>        }<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        MultiLine TextBox Example<br/>        &lt;/h3&gt;<br/>        Please enter a comment and click the submit button.<br/>
                    &lt;br /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>
                        ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>
                        OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>
                        OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>
                    &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>
            &lt;/html&gt;
                </pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>      Protected Sub SubmitButton_Click(sender As Object, e As EventArgs )<br/>
            		<br/>         Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text<br/>
            		<br/>      End Sub<br/>
            		<br/>      Protected Sub Check_Change(sender As Object, e As EventArgs )<br/>
            		<br/>         Comment.Wrap = WrapCheckBox.Checked<br/>         Comment.ReadOnly = ReadOnlyCheckBox.Checked<br/>
            		<br/>      End Sub<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        MultiLine RadTextBox Example<br/>        &lt;/h3&gt;<br/>        Please enter a comment and click the submit button.<br/>
                    &lt;br /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>
                        ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>
                        OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>
                        OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>
                    &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>
            &lt;/html&gt;
                </pre>
            </example>
            <notes>
            This example has a text box that accepts user input, which is a potential
            security threat. By default, ASP.NET Web pages validate that user input does not
            include script or HTML elements.
            </notes>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.EmptyMessage">
            <summary>Gets or sets a value message shown when the control is empty.</summary>
            <value>
            A string specifying the empty message. The default value is empty string.
            ("").
            </value>
            <remarks>
            Shown when the control is empty and loses focus. You can set the empty message
            text through EmptyMessage property.
            </remarks>
            <example>
            	<para>The following code example demonstrates how to set an empty message in code
                behind:</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head runat="server"&gt;<br/>
                &lt;title&gt;Untitled Page&lt;/title&gt;<br/>    &lt;script runat="server"&gt;    <br/>
                    protected void Button1_Click(object sender, EventArgs e)<br/>        {<br/>
                        RadNumericTextBox1.EmptyMessage = RadNumericTextBox1.Text;<br/>            RadNumericTextBox1.Text = String.Empty;            <br/>
                    }<br/>&lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>
                    &lt;radI:RadTextBox EmptyMessage="Type Here" ID="RadNumericTextBox1" runat="server"&gt;<br/>
                    &lt;/radI:RadTextBox&gt;<br/>
                    &lt;asp:Button ID="Button1" runat="server" Text="Set Empty Message" OnClick="Button1_Click" /&gt;<br/>
                &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" /%&gt;<br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>
            <br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head id="Head1" runat="server"&gt;<br/>
                &lt;title&gt;Untitled Page&lt;/title&gt;<br/>    &lt;script runat="server"&gt;<br/>
                Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click<br/>
                        RadNumericTextBox1.EmptyMessage = RadNumericTextBox1.Text<br/>            RadNumericTextBox1.Text = String.Empty<br/>
                End Sub<br/>    &lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>
                    &lt;radI:RadTextBox EmptyMessage="Type Here" ID="RadNumericTextBox1" runat="server"&gt;<br/>
                    &lt;/radI:RadTextBox&gt;<br/>        &lt;asp:Button ID="Button1" runat="server" Text="Set Empty Message" /&gt;<br/>
                &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.SelectionOnFocus">
            <summary>Gets or sets the selection on focus options for the RadInput control</summary>
            <value>
            	<para>A Telerik.WebControls.SelectionOnFocus object that represents the selection on
                focus in RadInput control. The default value is "None".</para>
            	<list type="bullet">
            		<item>None</item>
            		<item>CaretToBeginning</item>
            		<item>CaretToEnd</item>
            		<item>SelectAll</item>
            	</list>
            </value>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <remarks>
            	<para>Use this property to provide selection on focus of RadInput control. You
                can set one of the following values:</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to set the SelectionOnFocus property
                from DropDownList:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head id="Head1" runat="server"&gt;<br/>
                &lt;title&gt;RadTextBox selection&lt;/title&gt;<br/>    &lt;script runat="server"&gt;<br/>
                protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)<br/>    {<br/>
                    if (DropDownList1.SelectedValue == "CaretToBeginning")<br/>        {<br/>
                        this.RadTextBox1.SelectionOnFocus = Telerik.WebControls.SelectionOnFocus.CaretToBeginning;<br/>
                    }<br/>        else if (DropDownList1.SelectedValue == "CaretToEnd")<br/>        {<br/>
                        this.RadTextBox1.SelectionOnFocus = Telerik.WebControls.SelectionOnFocus.CaretToEnd;<br/>
                    }<br/>        else if (DropDownList1.SelectedValue == "SelectAll")<br/>        {<br/>
                        this.RadTextBox1.SelectionOnFocus = Telerik.WebControls.SelectionOnFocus.SelectAll;<br/>
                    }<br/>    }<br/>    &lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>
                &lt;form id="form1" runat="server"&gt;<br/>    &lt;div&gt;<br/>
                    &lt;radI:RadTextBox SelectionOnFocus="CaretToBeginning" ID="RadTextBox1" runat="server"&gt;&lt;/radI:RadTextBox&gt;<br/>
                    &lt;br /&gt;<br/>
                    &lt;asp:DropDownList AutoPostBack="true" ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"&gt;<br/>
                        &lt;asp:ListItem Text="CaretToBeginning"&gt;CaretToBeginning&lt;/asp:ListItem&gt;<br/>
                        &lt;asp:ListItem Text="CaretToEnd"&gt;CaretToEnd&lt;/asp:ListItem&gt;<br/>
                        &lt;asp:ListItem Text="SelectAll"&gt;SelectAll&lt;/asp:ListItem&gt;<br/>
                    &lt;/asp:DropDownList&gt;&lt;/div&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.InvalidStyleDuration">
            <summary>
            The InvalidStyleDuration property is used to determine how long (in milliseconds)
            the control will display its invalid style when incorrect data is entered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ClientEvents">
            <summary>
            Gets or sets an instance of the Telerik.WebControls.InputClientEvents class which defines 
            the JavaScript functions (client-side event handlers) that are invoked when specific client-side events are raised.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ShowButton">
            <summary>
            Gets or sets a value indicating whether the button is displayed in the
            RadInput control.
            </summary>
            <value>
            true if the button is displayed; otherwise, false. The default value is true,
            however this property is only examined when the ButtonTemplate property is not a null
            reference (Nothing in Visual Basic).
            </value>
            <remarks>
            	<para>Use the ShowButton property to specify whether the button is displayed in the
                RadInput control.</para>
            	<para>The contents of the button are controlled by the ButtonTemplate
                property.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the ShowButton property to
                display the button in the RadInput control.</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;    <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;    <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <br/>
            
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; <br/>&lt;head id="Head1" runat="server"&gt; <br/>
                &lt;title&gt;Untitled Page&lt;/title&gt; <br/>
                &lt;script language="javascript" type="text/javascript"&gt; <br/>    function Click(sender) <br/>    { <br/>
                    alert("click"); <br/>    } <br/>    &lt;/script&gt; <br/>&lt;/head&gt; <br/>&lt;body&gt; <br/>
                &lt;form id="form1" runat="server"&gt; <br/>
                    &lt;radI:RadTextBox ShowButton="true" ID="RadNumericTextBox1" runat="server"&gt; <br/>
                        &lt;ClientEvents OnButtonClick="Click" /&gt; <br/>            &lt;ButtonTemplate&gt; <br/>
                            &lt;input type="button" value="click here"  /&gt; <br/>            &lt;/ButtonTemplate&gt; <br/>
                    &lt;/radI:RadTextBox&gt; <br/>    &lt;/form&gt; <br/>&lt;/body&gt; <br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ButtonsPosition">
            <summary>
            Gets or sets a value that indicates whether the button should be positioned left or right of the RadInput box.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.Text">
            <summary>Gets or sets the text content of the RadInput control.</summary>
            <value>
            The text displayed in the RadInput control. The default is an empty string
            ("").
            </value>
            <remarks>
            	<para>Use the Text property to specify or determine the text displayed in the
                RadInput control. To limit the number of characters accepted by the control, set
                the MaxLength property. If you want to prevent the text from being modified, set
                the ReadOnly property.</para>
            	<para>The value of this property, when set, can be saved automatically to a
                resource file by using a designer tool.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the Text property to
                specify the text displayed in the RadTextBox control.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>
            &lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>
            		<br/>        protected void AddButton_Click(object sender, EventArgs e)<br/>        {<br/> 
                       int Answer;<br/>
            		<br/>            Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text);<br/>
            		<br/>            AnswerMessage.Text = Answer.ToString();<br/>        }<br/>&lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        RadTextBox Example<br/>        &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>
                            &lt;td colspan="5"&gt;<br/>                    Enter integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    Click the Add button to add the two values.<br/>
                                &lt;br /&gt;<br/>                    Click the Reset button to reset the text boxes.<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>
                                &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>
                            &lt;td colspan="4"&gt;<br/>
                                &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>
            &lt;/html&gt;
                </pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>
                  Protected Sub AddButton_Click(sender As Object, e As EventArgs)<br/><br/>         Dim Answer As Integer<br/><br/>
                     Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text)<br/><br/>
                     AnswerMessage.Text = Answer.ToString()<br/><br/>      End Sub<br/><br/>    &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>
            &lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            RadTextBox Example<br/>
                    &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/> 
                               Enter Integer values into the text boxes.<br/>                    &lt;br /&gt;<br/>
                                Click the Add button To add the two values.<br/>                    &lt;br /&gt;<br/>
                                Click the Reset button To reset the text boxes.<br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/><br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>
                                &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &amp;nbsp<br/>
                            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td colspan="4"&gt;<br/>
                                &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>
                            &lt;/td&gt;<br/>
                            &lt;td&gt;<br/><br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ValidationGroup">
            <summary>
            Gets or sets the group of controls for which the ra.a.d.input control causes
            validation when it posts back to the server.
            </summary>
            <value>
            The group of controls for which the RadInput control causes validation when it
            posts back to the server. The default value is an empty string ("").
            </value>
            <remarks>
            	<para>Validation groups allow you to assign validation controls on a page to a
                specific category. Each validation group can be validated independently from other
                validation groups on the page. Use the ValidationGroup property to specify the name
                of the validation group for which the RadInput control causes validation when it
                posts back to the server.</para>
            	<para>This property has an effect only when the CausesValidation property is set to
                true. When you specify a value for the ValidationGroup property, only the
                validation controls that are part of the specified group are validated when the
                RadInput control posts back to the server. If you do not specify a value for
                this property and the CausesValidation property is set to true, all validation
                controls on the page that are not assigned to a validation group are validated when
                the control posts back to the server.</para>
            	<para>This property cannot be set by themes or style sheet themes.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.Display">
            <summary>
            <para>Set to false in order to change "display" style of the wrapper span to "none"</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.EmptyMessageStyle">
            <summary>
            	<para>Gets the style properties for RadInput when when the control is
                empty.</para>
            </summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for RadInput control. The default value is an empty TextBoxStyle object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set EmptyMessageStyle
                property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;    <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;   <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; <br/>&lt;head runat="server"&gt; <br/>    &lt;title&gt;Untitled Page&lt;/title&gt; <br/>
            &lt;/head&gt; <br/>&lt;body&gt; <br/>    &lt;form id="form1" runat="server"&gt; <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt; <br/>
                        &lt;EnabledStyle BackColor="red" /&gt; <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt; <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt; <br/>            &lt;HoveredStyle BackColor="blue" /&gt; <br/>
                    &lt;/radI:RadTextBox&gt; <br/>    &lt;/form&gt; <br/>&lt;/body&gt; <br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <remarks>
            	<para>Use this property to provide a custom style for the empty message state of
                RadInput control. Common style attributes that can be adjusted include
                foreground color, background color, font, and alignment within the RadInput.
                Providing a different style enhances the appearance of the RadInput
                control.</para>
            	<para>Empty message style properties in the RadInput control are inherited from
                one style property to another through a hierarchy. For example, if you specify a
                red font for the EnabledStyle property, all other style properties in the
                RadInput control will also have a red font. This allows you to provide a common
                appearance for the control by setting a single style property. You can override the
                inherited style settings for an item style property that is higher in the hierarchy
                by setting its style properties. For example, you can specify a blue font for the
                FocusedStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;EmptyMessageStyle&gt; tags between
                the opening and closing tags of the RadInput control. You can then list the
                style attributes within the opening &lt;EmptyMessageStyle&gt; tag.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.FocusedStyle">
            <summary>Gets the style properties for focused RadInput control.</summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for focused RadInput control. The default value is an empty TextBoxStyle
            object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set FocusedStyle
                property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;    <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;    <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; <br/>&lt;head runat="server"&gt; <br/>
                &lt;title&gt;Untitled Page&lt;/title&gt; <br/>&lt;/head&gt; <br/>&lt;body&gt; <br/>
                &lt;form id="form1" runat="server"&gt; <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt; <br/>
                        &lt;EnabledStyle BackColor="red" /&gt; <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt; <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt; <br/>            &lt;HoveredStyle BackColor="blue" /&gt; <br/>
                    &lt;/radI:RadTextBox&gt; <br/>    &lt;/form&gt; <br/>&lt;/body&gt; <br/>&lt;/html&gt;
                </pre>
            </example>
            <remarks>
            	<para>Use this property to provide a custom style for the focused RadInput
                control. Common style attributes that can be adjusted include foreground color,
                background color, font, and alignment within the RadInput. Providing a different
                style enhances the appearance of the RadInput control.</para>
            	<para>Focused style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                FocusedStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;FocusedStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;FocusedStyle&gt; tag.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.DisabledStyle">
            <summary>Gets the style properties for disabled RadInput control.</summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for disabled RadInput control. The default value is an empty TextBoxStyle
            object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set
                <strong>DisabledStyle</strong> property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;      <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;      <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;  <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;  <br/>&lt;head runat="server"&gt;  <br/>    &lt;title&gt;Untitled Page&lt;/title&gt;  <br/>
            &lt;/head&gt;  <br/>&lt;body&gt;  <br/>    &lt;form id="form1" runat="server"&gt;  <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt;  <br/>
                        &lt;EnabledStyle BackColor="red" /&gt;  <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt;  <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt;  <br/>            &lt;HoveredStyle BackColor="blue" /&gt;  <br/>
                    &lt;/radI:RadTextBox&gt;  <br/>    &lt;/form&gt;  <br/>&lt;/body&gt;  <br/>&lt;/html&gt;
                </pre>
            </example>
            <remarks>
            	<para>Use this property to provide a custom style for the disabled RadInput
                control. Common style attributes that can be adjusted include foreground color,
                background color, font, and alignment within the RadInput. Providing a different
                style enhances the appearance of the RadInput control.</para>
            	<para>Disabled style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                DisabledStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;DisabledStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;DisabledStyle&gt; tag.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.InvalidStyle">
            <summary>Gets the style properties for invalid state of RadInput control.</summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for invalid RadInput control. The default value is an empty TextBoxStyle
            object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set InvalidStyle
                property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;      <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;      <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;  <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;  <br/>&lt;head runat="server"&gt;  <br/>    &lt;title&gt;Untitled Page&lt;/title&gt;  <br/>
            &lt;/head&gt;  <br/>&lt;body&gt;  <br/>    &lt;form id="form1" runat="server"&gt;  <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt;  <br/>
                        &lt;EnabledStyle BackColor="red" /&gt;  <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt;  <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt;  <br/>            &lt;HoveredStyle BackColor="blue" /&gt;  <br/>        &lt;/radI:RadTextBox&gt;  <br/>
                &lt;/form&gt;  <br/>&lt;/body&gt;  <br/>&lt;/html&gt;<br/>
            	</pre>
            </example>
            <remarks>
            	<para>Use this property to provide a custom style for the invalid state RadInput
                control. Common style attributes that can be adjusted include foreground color,
                background color, font, and alignment within the RadInput. Providing a different
                style enhances the appearance of the RadInput control.</para>
            	<para>Enabled style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                InvalidStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;InvalidStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;InvalidStyle&gt; tag.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.HoveredStyle">
            <summary>Gets the style properties for hovered RadInput control.</summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for hovered RadInput control. The default value is an empty TextBoxStyle
            object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set HoveredStyle
                property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;     <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;     <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; <br/>&lt;head runat="server"&gt; <br/>
                &lt;title&gt;Untitled Page&lt;/title&gt; <br/>&lt;/head&gt; <br/>&lt;body&gt; <br/>    &lt;form id="form1" runat="server"&gt; <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt; <br/>
                        &lt;EnabledStyle BackColor="red" /&gt; <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt; <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt; <br/>            &lt;HoveredStyle BackColor="blue" /&gt; <br/>
                    &lt;/radI:RadTextBox&gt; <br/>    &lt;/form&gt; <br/>&lt;/body&gt; <br/>&lt;/html&gt;
            </pre>
            </example>
            <remarks>
            	<para>Use this property to provide a custom style for the hovered RadInput
                control. Common style attributes that can be adjusted include foreground color,
                background color, font, and alignment within the RadInput. Providing a different
                style enhances the appearance of the RadInput control.</para>
            	<para>Hovered style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                HoveredStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;HoveredStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;HoveredStyle&gt; tag.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.EnabledStyle">
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <summary>Gets the style properties for enabled RadInput control.</summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for enabled RadInput control. The default value is an empty TextBoxStyle
            object.
            </value>
            <remarks>
            	<para>Use this property to provide a custom style for the enabled RadInput
                control. Common style attributes that can be adjusted include foreground color,
                background color, font, and alignment within the RadInput. Providing a different
                style enhances the appearance of the RadInput control.</para>
            	<para>Enabled style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                FocusedStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;EnabledStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;EnabledStyle&gt; tag.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to set EnabledStyle
                property:</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;    <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;    <br/>
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt; <br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt; <br/>&lt;head runat="server"&gt; <br/>    &lt;title&gt;Untitled Page&lt;/title&gt; <br/>&lt;/head&gt; <br/>
            &lt;body&gt; <br/>    &lt;form id="form1" runat="server"&gt; <br/>
                    &lt;radI:RadTextBox EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt; <br/>
                        &lt;EnabledStyle BackColor="red" /&gt; <br/>            &lt;EmptyMessageStyle BackColor="AliceBlue" /&gt; <br/>
                        &lt;FocusedStyle BackColor="yellow" /&gt; <br/>            &lt;HoveredStyle BackColor="blue" /&gt; <br/>
                    &lt;/radI:RadTextBox&gt; <br/>    &lt;/form&gt; <br/>&lt;/body&gt; <br/>&lt;/html&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.LabelWidth">
            <summary>
            Gets or sets width of the Label
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputControl.ButtonContainer">
            <summary>Gets control that contains the buttons of RadInput control</summary>
            <remarks>The ShowButton or ShowSpinButton properties must be set to true</remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="M:Telerik.Web.UI.RadDateInput.Clear">
            <summary>
            Clears the selected date of the RadDateInput control and displays a blank date.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.ShortYearCenturyEnd">
            <summary>
            Gets or sets a value that indicates the end of the century that is used to interpret 
            the year value when a short year (single-digit or two-digit year) is entered in the input.
            </summary>
            <value>
            The year when the century ends. Default is 2029.
            </value>
            <remarks>
            Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. 
            For example 55 will be interpreted as 1955 but 12 -- as 2012 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.ShortYearCenturyStart">
            <summary>
            Gets a value that indicates the start of the century that is used to interpret 
            the year value when a short year (single-digit or two-digit year) is entered in the input.
            </summary>
            <value>
            The year when the century starts. Default is 2029.
            </value>
            <remarks>
            Having a value of 2029 indicates that a short year will be interpreted as a year between 1930 and 2029. 
            For example 55 will be interpreted as 1955 but 12 -- as 2012 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.DisplayDateFormat">
            <summary>
            	<para>Gets or sets the display date format used by
                <strong>RadDateInput</strong>.(Visible when the control is not on focus.)</para>
            </summary>
            <remarks>
            You can examine <see cref="T:System.Globalization.DateTimeFormatInfo">DateTimeFormatInfo</see> class for a list of all
            available format characters and patterns.
            </remarks>
            <example>
            	<code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateInput1.DisplayDateFormat = "M/d/yyyy"; //Short date pattern. The same as "d".
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateInput1.DisplayDateFormat = "M/d/yyyy" 'Short date pattern. The same as "d".
            End Sub
                </code>
            </example>
            <value>
            	<para>A string specifying the display date format used by RadDateInput. The default
                value is "d" (short date format). If the <strong>DisplayDateFormat</strong> is left
                blank, the <strong>DateFormat</strong> will be used both for editing and
                display.</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.DateFormat">
            <summary>
            Gets or sets the date and time format used by
            <strong>RadDateInput</strong>.
            </summary>
            <value>
            A string specifying the date format used by <strong>RadDateInput</strong>. The
            default value is "d" (short date format).
            </value>
            <example>
            	<code lang="CS" title="[New Example]">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateInput1.DateFormat = "M/d/yyyy"; //Short date pattern. The same as "d".
            }
                </code>
            	<code lang="VB" title="[New Example]">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateInput1.DateFormat = "M/d/yyyy" 'Short date pattern. The same as "d".
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.InvalidTextBoxValue">
            <summary>
            Gets the invalid date string in the control's textbox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.SelectedDate">
            <summary>Gets or sets the date content of <strong>RadDateInput</strong>.</summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is <see cref="P:Telerik.Web.UI.RadDateInput.MinDate">MinDate</see>.
            </value>
            <example>
                The following example demonstrates how to use the <strong>SelectedDate</strong>
                property to set the content of <strong>RadDateInput</strong>.
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateInput1.SelectedDate = DateTime.Now;
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateInput1.SelectedDate = DateTime.Now
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.DbSelectedDate">
            <summary>
            Gets or sets the date content of <strong>RadDateInput</strong> in a
            database-friendly way.
            </summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is <see cref="P:Telerik.Web.UI.RadDateInput.MinDate">MinDate</see>.
            </value>
            <example>
                The following example demonstrates how to use the <strong>SelectedDate</strong>
                property to set the content of RadDateInput. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateInput1.DbSelectedDate = tableRow["BirthDate"];
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateInput1.DbSelectedDate = tableRow("BirthDate")
            End Sub
                </code>
            </example>
            <remarks>
            This property behaves exactly like the <strong>SelectedDate</strong> property.
            The only difference is that it will not throw an exception if the new value is null or
            DBNull. Setting a null value will revert the selected date to the MinDate value.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.Culture">
            <summary>
            Gets or sets the culture used by <strong>RadDateInput</strong> to format the
            date.
            </summary>
            <value>
                A <see cref="T:System.Globalization.CultureInfo">CultureInfo</see> object that
                represents the current culture used. The default value is
                <strong>System.Threading.Thread.CurrentThread.CurrentUICulture</strong>.
            </value>
            <example>
                The following example demonstrates how to use the <strong>Culture</strong>
                property. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateInput1.Culture = new CultureInfo("en-US");
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateInput1.Culture = New CultureInfo("en-US")
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.MinDate">
            <summary>
            Gets or sets the smallest date value allowed by
            <strong>RadDateInput</strong>.
            </summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the smallest
                date value by <strong>RadDateInput</strong>. The default value is 1/1/1980.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.MaxDate">
            <summary>
            Gets or sets the largest date value allowed by
            <strong>RadDateInput</strong>.
            </summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the largest
                date value allowed by <strong>RadDateInput</strong>. The default value is
                <em>12/31/2099</em>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.IsEmpty">
            <summary>Used to determine if <strong>RadDateInput</strong> is empty.</summary>
            <value>
            	<strong>true</strong> if the date is empty; otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDateInput.OnClientDateChanged">
            <summary>
            Gets or sets the JavaScript event handler fired whenever the date of
            <strong>RadDateInput</strong> changes.
            </summary>
            <value>
            A string specifying the name of the JavaScript event handling routine. The
            default value is empty string ("").
            </value>
            <remarks>
                The event handler function is called with 2 parameters: 
                <list type="bullet">
            		<item>A reference to the <strong>RadDateInput</strong> object, which triggered
                    the event;</item>
            		<item>
                        An event arguments object that contains the following properties: 
                        <ul>
            				<li><strong>OldDate</strong> - The old date of the
                            <strong>RadDateInput</strong></li>
            				<li><strong>NewDate</strong> - The new date of the
                            <strong>RadDateInput</strong></li>
            			</ul>
            		</item>
            	</list>
            </remarks>
            <example>
            	<para>This example demonstrates the usage of the
                <strong>OnClientDateChanged</strong> property.</para>
            	<pre>
            &lt;script type="text/javascript&amp;quot&gt;<br/>function onDateChange(dateInput, args)<br/>{<br/>     alert("New date:" + args.NewDate);<br/>} <br/>&lt;/script&gt;<br/>
            		<br/>&lt;radI:RadDateInput<br/>      ID="RadDateInput1"<br/>      runat="server"<br/>      OnClientDateChanged="onDateChange"&gt;<br/>&lt;/radI:RadDateInput&gt;
                </pre>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.AutoPostBackControl">
            <summary>
            Summary description for AutoPostBackControl.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.AutoPostBackControl.None">
            <summary>
            Without AutoPostBack 
            </summary>
            <value>0</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.AutoPostBackControl.Both">
            <summary>
            Automatically postback to the server after the Date or Time is modified.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.AutoPostBackControl.TimeView">
            <summary>
            Automatically postback to the server after the Time is modified.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.AutoPostBackControl.Calendar">
            <summary>
            Automatically postback to the server after the Date is modified.
            </summary>
            <value>3</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.ClientsideCalendarType">
            <summary>
            Internal enumeration used by the component
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.HeaderType">
            <summary>Specifies the type of a selector sell.</summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.HeaderType.Row">
            <summary>
            Rendered as the first cell in a row. When clicked if UseRowHeadersAsSelectors is true, 
            it will select the entire row.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.HeaderType.Column">
            <summary>
            Rendered as the first cell in a column. When clicked if UseColumnHeadersAsSelectors is true, 
            it will select the entire column.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.HeaderType.View">
            <summary>
            Rendered in the top left corner of the calendar view. When clicked if EnableViewSelector is true, 
            it will select the entire view.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.MonthLayout">
            <summary>
            Summary description for MonthLayout.
            Layout_7columns_x_6rows  - horizontal layout
            Layout_14columns_x_3rows - horizontal layout     
            Layout_21columns_x_2rows - horizontal layout
            Layout_7rows_x_6columns  - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            Layout_14rows_x_3columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            Layout_21rows_x_2columns - vertical layout, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_7columns_x_6rows">
            <summary>
            Allows the calendar to display the days in a 7  by 6 matrix.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_14columns_x_3rows">
            <summary>
            Alows the calendar to display the days in a 14 by 3 matrix.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_21columns_x_2rows">
            <summary>
            Allows the calendar to display the days in a 21 by 2 matrix.
            </summary>
            <value>4</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_7rows_x_6columns">
            <summary>
            Allows the calendar to display the days in a 7  by 6 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            </summary>
            <value>8</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_14rows_x_3columns">
            <summary>
            Allows the calendar to display the days in a 14 by 3 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            </summary>
            <value>16</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.MonthLayout.Layout_21rows_x_2columns">
            <summary>
            Allows the calendar to display the days in a 21 by 2 matrix, required when UseColumnHeadersAsSelectors is true and Orientation is set to RenderInColumns.
            </summary>
            <value>32</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Orientation">
            <summary>
            Summary description for Orientation.
            RenderInRows - Renders the calendar data row after row.
            RenderInColumns - Renders the calendar data column after column.
            None - Enforces fallback to the default Orientation for Telerik RadCalendar.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.Orientation.RenderInRows">
            <summary>
            Renders the calendar data row after row.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.Orientation.RenderInColumns">
            <summary>
            RenderInColumns - Renders the calendar data column after column.
            </summary>
            <value>3</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.PresentationType">
            <summary>
            Describes how <strong>RadCalendar</strong> will handle its layout, and how will
            react to user interaction. Interactive - user is allowed to select dates, navigate,
            etc. Preview - does not allow user interaction, for presentation purposes only.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.PresentationType.Interactive">
            <summary>
            Interactive - user is allowed to select dates, navigate, etc.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.PresentationType.Preview">
            <summary>
            Preview - does not allow user interaction, for presentation purposes only.
            </summary>
            <value>2</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.RecurringEvents">
            <summary>
            Summary description for RecurringEvents.
            DayInMonth - Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day.
            DayAndMonth - The month and the day part of the date is taken into account. That gives the ability to serve events repeated in a specific month on the same day.
            Today - gives the ability to control the visual appearace of today's date.
            None - Default value, means that the day in question is a single point event, no recurrences.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.DayInMonth">
            <summary>
            Only the day part of the date is taken into account. That gives the ability to serve events repeated every month on the same day.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.DayAndMonth">
            <summary>
            The month and the day part of the date are taken into account. That gives the ability to serve events repeated in a specific month on the same day.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.Week">
            <summary>
            The week day is taken into account. That gives the ability to serve events repeated in a specific day of the week.
            </summary>
            <value>4</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.WeekAndMonth">
            <summary>
            The week day and the month are taken into account. That gives the ability to serve events repeated in a specific week day in a specific month.
            </summary>
            <value>8</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.Today">
            <summary>
             Gives the ability to control the visual appearace of today's date.
            </summary>
            <value>16</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.WeekDayWeekNumberAndMonth">
            <summary>
            The week number, the weekday (Mon, Tue, etc.) and the month are taken into account. That gives the ability to serve public holiday events
            repeated each year (e.g. Martin Luther King Jr. Day is observed on the third Monday of January each year 
            so you would specify as a date Jan 21st, 2008 (or Jan 19th, 2009 -- it would have the same effect).
            </summary>
            <value>32</value>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.RecurringEvents.None">
            <summary>
            Default value, means that the day in question is a single point event, no recurrence.
            </summary>
            <value>64</value>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.SelectorType">
            <summary>Specifies the type of a selector sell.</summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.SelectorType.Row">
            <summary>
            Rendered as the first cell in a row. When clicked, it will select the entire
            row.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.SelectorType.Column">
            <summary>
            Rendered as the first cell in a column. When clicked, it will select the entire
            column.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Calendar.SelectorType.View">
            <summary>
            Rendered in the top left corner of the calendar view. When clicked, it will
            select the entire view.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.CalendarClientEvents">
            <summary>
            Defines the JavaScript functions (client-side event handlers) that are invoked
            when specific client-side event is raised.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Persistence.PropertiesObject">
            <summary>
            This class implements the PropertyBag "enabled" base object class, from which all other
            classes in Telerik RadCalendar descend, excluding those that are descendents of PropertiesControl.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnInit">
            <summary>
            Event fired after the RadCalendar client object has been completely initialized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnLoad">
            <summary>
            The event is fired immediately after the page onload event. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnDateSelecting">
            <summary>
            Event fired when a valid date is being selected. 
            Return false to cancel selection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnDateSelected">
            <summary>
            Event fired after a valid date has been selected. Can be used in combination with 
            OnDateClick for maximum convenience. This event can be used to conditionally process the 
            selected date or any related event with it on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnDateClick">
            <summary>
            Event fired when a calendar cell, representing a date is clicked. This event is not the same as 
            OnDateSelected. One can have an OnDateClick event for a disabled or read only calendar 
            cell which does not allow.s OnDateSelected event to be fired.
            This event can be used to conditionally process some information/event based on the clicked
            date.
            Return false to cancel the click event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnRowHeaderClick">
            <summary>
            Event fired when a calendar row header is clicked. This event is not the same as 
            OnDateClick. One can have an OnRowHeaderClick event for a disabled or read only calendar 
            cell which does not allow to select calendar dates.
            This event can be used to conditionally process some information/event based on the clicked
            row header.
            Return false to cancel the click event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnColumnHeaderClick">
            <summary>
            Event fired when a calendar column header is clicked. This event is not the same as 
            OnDateClick. One can have an OnColumnHeaderClick event for a disabled or read only calendar 
            cell which does not allow selection of calendar dates.
            This event can be used to conditionally process some information/event based on the clicked
            column header.
            Return false to cancel the click event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnViewSelectorClick">
            <summary>
            Event fired when a calendar view selector is clicked. This event is not the same as 
            OnDateClick. One can have an OnViewSelectorClick event for a disabled or read only calendar 
            cell which does not allow selection of calendar cell.
            This event can be used to conditionally process some information/event based on the clicked
            view selector.
            Return false to cancel the click event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnCalendarViewChanging">
            <summary>
            Event fired when the calendar view is about to change.
            Return false to cancel the event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnCalendarViewChanged">
            <summary>
            Event fired when the calendar view has changed. Generally
            the event is raised as a result of using the built-in navigation controls. Event is
            raised before the results are rendered, so that custom logic could be executed, and the
            change could be prevented if necessary. There is no way to find whether the operation
            was accomplished successfully. This event can be used to preprocess some conditions or
            visual styles/content before the final rendering of the calendar. Return false to
            cancel the event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.CalendarClientEvents.OnDayRender">
            <summary>
            Event fired for every calendar day cell when the calendar is rendered as a result of a client-side navigation (i.e. only in OperationType="Client"). 
            This event mimics the server-side DayRender event -- gives final control over the output of a specific calendar cell.
            This event can be used to apply final changes to the output (content and visial styles) just before the content is displayed.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.DatePickerClientEvents">
            <summary>
            Summary description for DatePickerClientEvents.
            </summary>
            
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DatePickerClientEvents.OnDateSelected">
            <summary>
                Gets or sets the name of the client-side event handler that is executed whenever
                the selected date of the datepicker is changed.
            </summary>
            <example>
            	<pre>
            [ASPX/ASCX]
            </pre>
            	<pre>
            &lt;script type="text/javascript" &gt;<br/>function DatePicker_OnDateSelected(pickerInstance, args)<br/>{<br/>    alert("The picker date has been chanded from " + args.OldDate + " to " + args.NewDate);<br/>}     <br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server" &gt;<br/>    &lt;ClientEvents OnDateSelected="DatePicker_OnDateSelected" /&gt;<br/>&lt;/radCln:RadDatePicker&gt;   
            </pre>
            </example>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DatePickerClientEvents.OnPopupOpening">
            <summary>
            Gets or sets the name of the client-side event handler that is executed prior to
            opening the calendar popup and its synchronizing with the DateInput value.
            </summary>
            <remarks>
            	<para>There can be some conditions you do want not to open the calendar popup on
                click of the popup button. Then you should cancel the event either by <em>return
                false;</em> or set its argument <em>args.CancelOpen = true;</em></para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Opening(sender, args)<br/>{<br/>    args.CancelOpen = true;<br/>    //or<br/>    return false;<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>    &lt;ClientEvents OnPopupOpening="Opening"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;
                </pre>
            	<para>Set the <em>args.CancelSynchronize = true;</em> to override the default
                DatePicker behavior of synchronizing the date in the DateInput and Calendar
                controls. This is useful for focusing the Calendar control on a date different from
                the DateInput one.</para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Opening(sender, args)<br/>{<br/>    args.CancelCalendarSynchronize = true;<br/>    sender.Calendar.NavigateToDate([2006,12,19]);<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server" &gt;<br/>    &lt;ClientEvents OnPopupOpening="Opening"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;
            </pre>
            </remarks>
            <example>
            	<pre>
            [ASPX/ASCX]        
            </pre>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function OnPopupOpening(datepickerInstance, args)<br/>{<br/>   ......<br/>}<br/>&lt;/script&gt;<br/><br/>&lt;radcln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>   &lt;ClientEvents OnPopupOpening="OnPopupOpening" /&gt;<br/>&lt;/radcln:RadDatePicker&gt;
            </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DatePickerClientEvents.OnPopupClosing">
            <summary>
            Gets or sets the name of the client-side event handler that is executed prior to
            closing the calendar popup.
            </summary>
            <example>
            	<pre>
            [ASPX/ASCX]        
            </pre>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function OnPopupClosing(datepickerInstance, args)<br/>{<br/>   ......<br/>}<br/>&lt;/script&gt;<br/><br/>&lt;radcln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>   &lt;ClientEvents OnPopupClosing="OnPopupClosing" /&gt;<br/>&lt;/radcln:RadDatePicker&gt;
            </pre>
            </example>
            <remarks>
            	<para>There can be some conditions you do want not to close the calendar popup on
                click over it. Then you should cancel the event either by <em>return false;</em> or
                set its argument <em>args.CancelClose = true;</em></para>
            	<pre>
            &lt;script type="text/javascript"&gt;<br/>function Closing(sender, args)<br/>{<br/>    args.CancelClose = true;<br/>    //or<br/>    return false;<br/>}<br/>&lt;/script&gt;<br/>&lt;radCln:RadDatePicker ID="RadDatePicker1" runat="server"&gt;<br/>    &lt;ClientEvents OnPopupClosing="Closing"/&gt;<br/>&lt;/radCln:RadDatePicker&gt;   
            </pre>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.DayRenderEventArgs">
            <summary>
            Arguments class used with the DayRender event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DayRenderEventArgs.Cell">
            <summary>
            Gets a reference to the TableCell object that represents the specified day to render.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DayRenderEventArgs.Day">
            <summary>
            Gets a reference to the RadCalendarDay object that represents the specified day to render.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DayRenderEventArgs.View">
            <summary>
            Gets a reference to the MonthView object that represents the current View, corresponding to the specified day to render.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.DefaultViewChangedEventArgs">
            <summary>
            Arguments class used when the DefaultViewChanged event is fired.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DefaultViewChangedEventArgs.OldView">
            <summary>
            Gets the CalendarView instance that was the default one prior to the rise of DefaultViewChanged
            event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.DefaultViewChangedEventArgs.NewView">
            <summary>
            Gets the  new default CalendarView instance set by the DefaultViewChanged event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.HeaderCellRenderEventArgs">
            <summary>
            Arguments class used with the DayRender event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.HeaderCellRenderEventArgs.Cell">
            <summary>
            Gets a reference to the TableCell object that represents the specified day to render.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.HeaderCellRenderEventArgs.HeaderType">
            <summary>
            Gets a reference to the RadCalendarDay object that represents the specified day to render.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.SelectedDateChangedEventArgs">
            <summary>
            Provides data for the SelectedDateChanged event of the DatePicker control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.SelectedDatesEventArgs">
            <summary>
            Arguments class used when the SelectionChanged event is fired.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.SelectedDatesEventArgs.SelectedDates">
            <summary>
            Gets a reference to the SelectedDates collection, represented by the Telerik RadCalendar component
            that rise the SelectionChanged event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Persistence.PropertyItem">
            <summary>
            Summary description for PropertyItem.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDate">
            <summary>
            Wrapper class for System.DateTime, which allows implementing persistable DateTime collections
            like DateTimeCollection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDate.Date">
            <summary>
            The System.DateTime represented by this RadDate wrapper class.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDatePicker">
            <summary>
            RadDatePicker class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDatePicker.ConfigureCalendar">
            <summary>
            Override this method to provide any last minute configuration changes.  Make sure you call the base implementation.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDatePicker.ConfigureDateInput">
            <summary>
            Override this method to provide any last minute configuration changes.  Make sure you call the base implementation.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDatePicker.Clear">
            <summary>
            Clears the selected date of the RadDatePicker control and displays a blank date.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDatePicker.System#Web#UI#IPostBackDataHandler#LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            IPostBackDataHandler implementation
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.ImagesPath">
            <summary>Gets or sets default path for the grid images when EnableEmbeddedSkins is set to false.</summary>
            <value>A string containing the path for the grid images. The default is string.Empty.</value>
            <remarks>
            <para>
            
            </para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadDatePicker.ChildrenCreated">
            <summary>
            	Occurs after all child controls of the DatePicker control have been created.
            	You can customize the control there, and add additional child controls.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDatePicker.SelectedDateChanged">
            <summary>
            	Occurs when the selected date of the DatePicker changes between posts to the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.Calendar">
            <summary>
            Gets the RadCalendar instance of the datepicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.DateInput">
            <summary>
            Gets the RadDateInput instance of the datepicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.DatePopupButton">
            <summary>
            Gets the DatePopupButton instance of the datepicker control.  
            You can use the object to customize the popup button's appearance and behavior.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make RadDatePicker postback to the server 
            on date selection through the Calendar or the DateInput components.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.PopupDirection">
            <summary>Gets or sets the direction in which the popup Calendar is displayed,
            with relation to the DatePicker control.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.EnableScreenBoundaryDetection">
            <summary>Gets or sets whether the screen boundaries should be taken into consideration
            when the Calendar or TimeView are displayed.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.ZIndex">
            <summary>Gets or sets the z-index style of the control's popups</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.EnableShadows">
            <summary>Gets or sets whether popup shadows will appear.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.SelectedDate">
            <summary>Gets or sets the date content of RadDatePicker.</summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is <see cref="P:Telerik.Web.UI.RadDatePicker.MinDate">MinDate</see>.
            </value>
            <example>
                The following example demonstrates how to use the <strong>SelectedDate</strong>
                property to set the content of RadDatePicker. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDatePicker1.SelectedDate = DateTime.Now;
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDatePicker1.SelectedDate = DateTime.Now
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.ValidationDate">
            <summary>
            This property is used by the RadDateInput's internals only. It is subject to
            change in the future versions. Please do not use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.InvalidTextBoxValue">
            <summary>
            Gets the invalid date string in the control's textbox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.DbSelectedDate">
            <summary>Gets or sets the date content of RadDatePicker in a database friendly way.</summary>
            <value>
                A <see cref="T:System.DateTime">DateTime</see> object that represents the selected
                date. The default value is null (Nothing in VB).
            </value>
            <example>
                The following example demonstrates how to use the <strong>DbSelectedDate</strong>
                property to set the content of RadDatePicker. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDatePicker1.DbSelectedDate = tableRow["BirthDate"];
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDatePicker1.DbSelectedDate = tableRow("BirthDate")
            End Sub
                </code>
            </example>
            <remarks>
            This property behaves exactly like the SelectedDate property. The only difference
            is that it will not throw an exception if the new value is null or DBNull. Setting a
            null value will internally revert the SelectedDate to the null value, i.e. the input value will be empty.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.IsEmpty">
            <summary>
            Used to determine if RadDatePicker is empty.
            </summary>
            <value>
            	<strong>true</strong> if the date is empty; otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.EnableTyping">
            <summary>
            Enables or disables typing in the date input box.
            </summary>
            <value>
            	<strong>true</strong> if the user should be able to select a date by typing in the date input box; otherwise
            <strong>false</strong>. The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.ShowPopupOnFocus">
            <summary>
            Gets or sets whether the popup control (Calendar or TimeView) is displayed when the DateInput textbox is focused.
            </summary>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.MinDate">
            <summary>
            Gets or sets the minimal range date for selection.
            Selecting a date earlier than that will not be allowed.
            </summary>
            <remarks>
            This property has a default value of <strong>1/1/1980</strong>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.MaxDate">
            <summary>
            Gets or sets the latest valid date for selection.
            Selecting a date later than that will not be allowed.
            </summary>
            <remarks>
            This property has a default value of <strong>12/31/2099</strong>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.Culture">
            <summary>Gets or sets the culture used by RadDatePicker to format the date.</summary>
            <value>
            A <see cref="T:System.Globalization.CultureInfo">CultureInfo</see> object that represents the current culture used. The default value is System.Threading.Thread.CurrentThread.CurrentUICulture.
            </value>
            <example>
                The following example demonstrates how to use the <strong>Culture</strong>
                property. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDatePicker1.Culture = new CultureInfo("en-US");
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDatePicker1.Culture = New CultureInfo("en-US")
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.SharedCalendarID">
            <summary>
            Gets or sets the ID of the calendar that will be used for picking dates. This
            property allows you to configure several datepickers to use a single RadCalendar
            instance.
            </summary>
            <remarks>
                RadDatePicker will look for the RadCalendar instance in a way similar to how
                ASP.NET validators work. It will not go beyond the current naming container which
                means that you will not be able to configure a calendar that is inside a control in
                another naming container. You can still share a calendar, but you will have to pass
                a direct object reference via the <see cref="P:Telerik.Web.UI.RadDatePicker.SharedCalendar">SharedCalendar</see>
                property.
            </remarks>
            <value>The string ID of the RadCalendar control if set; otherwise String.Empty.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.SharedCalendar">
            <summary>
            Gets or sets the reference to the calendar that will be used for picking dates.
            This property allows you to configure several datepickers to use a single RadCalendar
            instance.
            </summary>
            <value>The RadCalendar instance if set; otherwise <strong>null</strong>;</value>
            <remarks>
            	<para>This property is not accessible from the VS.NET designer and you will have to
                set it from the code-behind. It should be used when the shared calendar instance is
                in another naming container or is created dynamically at runtime.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.FocusedDate">
            <summary>
            Gets or sets the date that the
            <a href="RadCalendar~Telerik.WebControls.RadCalendar.html">Calendar</a> uses for
            focusing itself whenever the
            <a href="RadInput~Telerik.WebControls.RadDateInput.html">RadDateInput</a> component of
            the <a href="RadCalendar~Telerik.WebControls.RadDatePicker.html">RadDatePicker</a> is
            empty.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.Width">
            <summary>
            Gets or sets the width of the datepicker in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDatePicker.ClientEvents">
            <summary>
            Gets or sets an instance of
            <a href="RadCalendar~Telerik.WebControls.Code.DatePickerClientEvents.html">DatePickerClientEvents</a>
            class which defines the JavaScript functions (client-side event handlers) that are
            invoked when specific client-side events are raised.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDateTimePicker">
            <summary>
            RadDateTimePicker class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.ValidationDate">
            <summary>
            This property is used by the RadDateTimeInput's internals only. It is subject to
            change in the future versions. Please do not use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.TimeView">
            <summary>
            Gets the RadTimeView instance of the datetimepicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.TimePopupButton">
            <summary>
            Gets the TimePopupButton instance of the <strong>RadDateTimeView</strong>
            control.
            </summary>
            <remarks>
            You can use the object to customize the popup button's appearance and
            behavior.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.AutoPostBack">
            <summary>
            	<para>Gets or sets a value indicating whether a postback to the server
                automatically occurs when the user interacts with the control.</para>
            </summary>
            <value>The default value is <strong>false</strong>.</value>
            <remarks>
            Setting this property to true will make RadDateTimePicker postback to the server
            on date selection through the Calendar and Time popups or the DateInput
            components.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.Culture">
            <summary>
            Gets or sets the culture used by RadDateTimePicker to format the date and time
            value.
            </summary>
            <value>
                A <see cref="T:System.Globalization.CultureInfo">CultureInfo</see> object that
                represents the current culture used. The default value is
                System.Threading.Thread.CurrentThread.CurrentUICulture.
            </value>
            <example>
                The following example demonstrates how to use the <strong>Culture</strong>
                property.
                <code lang="CS" title="Example 1 (CS)">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadDateTimePicker1.Culture = new CultureInfo("en-US");
            }
                </code>
            	<code title="Example 2 (VB)">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadDateTimePicker1.Culture = New CultureInfo("en-US")
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.AutoPostBackControl">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically
            occurs when the user changes the list selection.
            </summary>
            <value>The default value is None</value>
            <remarks>
            	<para>Set this to Both, TimeView or Calendar if the server needs to capture the
                selection changed event.</para>
                <para>This property is effective only for RadDateTimePicker; for RadTimePicker use the AutoPostBack property.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.SharedTimeViewID">
            <summary>
            Gets or sets the ID of the timeview that will be used for picking time. This
            property allows you to configure several datetimepickers to use a single RadTimeView
            instance.
            </summary>
            <remarks>
                RadDateTimePicker will look for the RadTimeView instance in a way similar to how
                ASP.NET validators work. It will not go beyond the current naming container which
                means that you will not be able to configure a timeview that is inside a control in
                another naming container. You can still share a timeview, but you will have to pass
                a direct object reference via the <see cref="P:Telerik.Web.UI.RadDateTimePicker.SharedTimeView">SharedTimeView</see>
                property.
            </remarks>
            <value>The string ID of the RadTimeView if set; otherwise String.Empty.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadDateTimePicker.SharedTimeView">
            <summary>
            Gets or sets the reference to the timeview that will be used for picking time.
            This property allows you to configure several datetimepickers to use a single RadTimeView
            instance.
            </summary>
            <value>The RadTimeView instance if set; otherwise <strong>null</strong>;</value>
            <remarks>
            	<para>This property is not accessible from the VS.NET designer and you will have to
                set it from the code-behind. It should be used when the shared timeview instance is
                in another naming container or is created dynamically at runtime.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadDateTimePicker.ItemDataBound">
            <summary>
            Occurs when an item is data bound to the <strong>RadTimeView</strong>
            control.
            </summary>
            <remarks>
            	<para>The <strong>ItemDataBound</strong> event is raised after an item is data
                bound to the <strong>RadTimeView</strong> control. This event provides you with the
                last opportunity to access the data item before it is displayed on the client.
                After this event is raised, the data item is no longer available.</para>
            </remarks>
            <example>
            	<para><font face="Courier New">[ASPX]</font></para>
            	<para><font face="Courier New">&lt;%@ Page Language=<font class="string" color="black">"C#"</font> AutoEventWireup=<font class="string" color="black">"true"</font> CodeFile=<font class="string" color="black">"Default.aspx.cs"</font> Inherits=<font class="string" color="black">"_Default"</font> %&gt;<br/>
            			<br/>
                &lt;%@ Register Assembly=<font class="string" color="black">"RadCalendar.Net2"</font> Namespace=<font class="string" color="black">"Telerik.WebControls"</font> TagPrefix=<font class="string" color="black">"radCln"</font> %&gt;<br/>
            			<br/>
                &lt;!DOCTYPE html <font class="keyword" color="black">PUBLIC</font>
            			<font class="string" color="black">"-//W3C//DTD XHTML 1.0 Transitional//EN"</font>
            			<font class="string" color="black">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</font>&gt;<br/>
            			<br/>
                &lt;html xmlns=<font class="string" color="black">"http://www.w3.org/1999/xhtml"</font> &gt;<br/>
                &lt;head runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;title&gt;Untitled Page&lt;/title&gt;<br/>
                &lt;/head&gt;<br/>
                &lt;body&gt;<br/>
                 &lt;form id=<font class="string" color="black">"form1"</font>
                runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;div&gt;<br/>
                 &lt;radCln:RadTimePicker<br/>
                 OnItemDataBound=</font><font color="black"><font face="Courier New"><font class="string">
                "RadTimePicker1_ItemDataBound"</font><br/>
                 ID=<font class="string">"RadTimePicker1"</font><br/>
                 runat=<font class="string">"server"</font>&gt;<br/>
                 &lt;/radCln:RadTimePicker&gt;<br/>
                 &lt;/div&gt;<br/>
                 &lt;/form&gt;<br/>
                &lt;/body&gt;<br/>
                &lt;/html&gt;</font></font></para>
            	<code lang="CS">
            using System;
            using System.Data;
            using System.Configuration;
            using System.Web;
            using System.Web.Security;
            using System.Web.UI;
            using System.Web.UI.WebControls;
            using System.Web.UI.WebControls.WebParts;
            using System.Web.UI.HtmlControls;
             
            public partial class _Default : System.Web.UI.Page
            {
                protected void RadTimePicker1_ItemDataBound(object sender, Telerik.WebControls.Base.Calendar.Events.TimePickerEventArgs e)
                {
                    if (e.Item.ItemType == ListItemType.AlternatingItem)
                    {
                        e.Item.Controls.Add(new LiteralControl("AlternatingItem"));
                    }
                }
            }
                </code>
            	<code lang="VB">
            Imports System
            Imports System.Data
            Imports System.Configuration
            Imports System.Web
            Imports System.Web.Security
            Imports System.Web.UI
            Imports System.Web.UI.WebControls
            Imports System.Web.UI.WebControls.WebParts
            Imports System.Web.UI.HtmlControls
            Public Class _Default
                Inherits System.Web.UI.Page
                
                Protected Sub RadTimePicker1_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.WebControls.Base.Calendar.Events.TimePickerEventArgs)
                    If (e.Item.ItemType = ListItemType.AlternatingItem) Then
                        e.Item.Controls.Add(New LiteralControl("AlternatingItem"))
                    End If
                End Sub
            End Class
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadDateTimePicker.ItemCreated">
            <summary>
            Occurs on the server when an item in the <strong>RadTimeView</strong> control is
            created.
            </summary>
            <remarks>
            	<para>The <strong>ItemCreated</strong> event is raised when an item in the
                <strong>RadTimeView</strong> control is created, both during round-trips and at the
                time data is bound to the control.</para>
            	<para>The <strong>ItemCreated</strong> event is commonly used to control the
                content and appearance of a row in the RadTimeView control.</para>
            </remarks>
            <example>
            	<para><font face="Courier New">The following code example demonstrates how to
                specify and code a handler for the ItemCreated event to set the CSS styles on the
                RadTimeView.</font></para>
            	<para><font face="Courier New"><strong>[ASPX]</strong></font></para>
            	<para><font face="Courier New">&lt;%@ Page Language=<font class="string" color="black">"C#"</font> AutoEventWireup=<font class="string" color="black">"true"</font> CodeFile=<font class="string" color="black">"Default.aspx.cs"</font> Inherits=<font class="string" color="black">"_Default"</font> %&gt;<br/>
            			<br/>
                &lt;%@ Register Assembly=<font class="string" color="black">"RadCalendar.Net2"</font> Namespace=<font class="string" color="black">"Telerik.WebControls"</font> TagPrefix=<font class="string" color="black">"radCln"</font> %&gt;<br/>
            			<br/>
                &lt;!DOCTYPE html <font class="keyword" color="black">PUBLIC</font>
            			<font class="string" color="black">"-//W3C//DTD XHTML 1.0 Transitional//EN"</font>
            			<font class="string" color="black">"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"</font>&gt;<br/>
            			<br/>
                &lt;html xmlns=<font class="string" color="black">"http://www.w3.org/1999/xhtml"</font> &gt;<br/>
                &lt;head runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;title&gt;Untitled Page&lt;/title&gt;<br/>
                 &lt;style type=<font class="string" color="black">"text/css"</font>&gt;<br/>
                 .TimeCss<br/>
                 {<br/>
                 background-color: Red;<br/>
                 }<br/>
                 .AlternatingTimeCss<br/>
                 {<br/>
                 background-color: Yellow;<br/>
                 }<br/>
                 &lt;/style&gt;<br/>
                &lt;/head&gt;<br/>
                &lt;body&gt;<br/>
                 &lt;form id=<font class="string" color="black">"form1"</font>
                runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;div&gt;<br/>
                 &lt;radCln:RadTimePicker<br/>
                 OnItemCreated=</font><font color="black"><font face="Courier New"><font class="string">
                "RadTimePicker1_ItemCreated"</font><br/>
                 ID=<font class="string">"RadTimePicker1"</font><br/>
                 runat=<font class="string">"server"</font>&gt;<br/>
                 &lt;/radCln:RadTimePicker&gt;<br/>
                 &lt;/div&gt;<br/>
                 &lt;/form&gt;<br/>
                &lt;/body&gt;<br/>
                &lt;/html&gt;</font></font></para>
            	<code lang="CS">
               protected void RadTimePicker1_ItemCreated(object sender, Telerik.WebControls.Base.Calendar.Events.TimePickerEventArgs e)
                {
                    if (e.Item.ItemType == ListItemType.Item)
                    {
                        e.Item.CssClass = "TimeCss";
                    }
             
                    if (e.Item.ItemType == ListItemType.AlternatingItem)
                    {
                        e.Item.CssClass = "AlternatingTimeCss";
                    }
                }
                </code>
            	<code lang="VB">
            Protected Sub RadTimePicker1_ItemCreated(sender As Object, e As Telerik.WebControls.Base.Calendar.Events.TimePickerEventArgs)
               If e.Item.ItemType = ListItemType.Item Then
                  e.Item.CssClass = "TimeCss"
               End If
               
               If e.Item.ItemType = ListItemType.AlternatingItem Then
                  e.Item.CssClass = "AlternatingTimeCss"
               End If
            End Sub 'RadTimePicker1_ItemCreated
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimePicker.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make RadTimePicker postback to the server 
            on time selection through the TimeView or the DateInput components.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadTimeView">
            <summary>
            RadTimeView class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTimeView.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous page request that was saved by the <see cref="M:Telerik.Web.UI.RadTimeView.SaveViewState">SaveViewState</see> method.
            </summary>
            <param name="savedState">The saved view state.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTimeView.SaveViewState">
            <summary>
            Saves any server control view-state changes that have occurred since the time the page was posted back to the server.
            </summary>
            <returns>The saved view state.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.DataList">
            <summary>Gets a data bound list control that displays items using templates.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.RenderDirection">
            <summary>
            Gets or sets DataList ReapeatDirection
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.UseClientTimeOffset">
            <summary>
             Gets or sets a value indicating whether the TimeView should use client time zone offset for the values bound to a custom collection.
            </summary>
            <remarks>
            Setting this property to true will make the timeview to convert its values from UTC to the current user time zone.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.AlternatingTimeTemplate">
            <summary>Gets or sets the template for alternating time cells in the RadTimeView.</summary>
            <remarks>
            	<para>Use the <strong>AlternatingTimeTemplate</strong> property to control the
                contents of alternating items in the <strong>RadTimeView</strong> control. The
                appearance of alternating time cells is controlled by the
                <strong>AlternatingTimeStyle</strong> property.</para>
            	<para>To specify a template for the alternating time cells, place the
                &lt;AlternatingTimeTemplate&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the contents of the
                template between the opening and closing &lt;AlternatingTimeTemplate&gt;
                tags.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>AlternatingTimeTemplate</strong> property to control the contents of
                alternating items in the <strong>RadTimeView</strong> control.</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap"></td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimeView&gt;
                            &lt;AlternatingTimeTemplate&gt;
                                &lt;input type="button" id="button1" value='&lt;%# DataBinder.Eval(((DataListItem)Container).DataItem, "time", "{0:t}") %&gt;' /&gt;
                            &lt;/AlternatingTimeTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.FooterTemplate">
            <summary>
            Gets or sets the template for the footer section of the
            <strong>RadTimeView</strong> control.
            </summary>
            <remarks>
            	<para>To specify a template for the footer section, place the
                &lt;FooterTemplate&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the contents of the
                template between the opening and closing &lt;FooterTemplate&gt; tags.</para>
            	<para>The ShowFooter property must be set to true for this property to be
                visible.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>FooterTemplate</strong> property to control the contents of the footer
                section of the <strong>RadTimeView</strong> control.</para>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimeView ShowFooter="true"&gt;
                            &lt;FooterTemplate&gt;
                                &lt;asp:Label ID="Label1" runat="server" Text="Footer"&gt;&lt;/asp:Label&gt;
                            &lt;/FooterTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.HeaderTemplate">
            <summary>
            Gets or sets the template for the heading section of the RadTimeView
            control.
            </summary>
            <remarks>
            	<para>Use the <strong>HeaderTemplate</strong> property to control the contents of
                the heading section. The appearance of the header section is controlled by the
                <strong>HeaderStyle</strong> property.</para>
            	<para>To specify a template for the heading section, place the
                &lt;HeadingTemplate&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the contents of the
                template between the opening and closing &lt;HeadingTemplate&gt; tags.</para>
            	<para>The ShowHeader property must be set to true for this property to be
                visible.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the
                <strong>HeaderTemplate</strong> property to control the contents of the heading
                section of the <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimeView&gt;
                            &lt;HeaderTemplate&gt;
                                &lt;asp:Label ID="Label1" runat="server" Text="Header"&gt;&lt;/asp:Label&gt;
                            &lt;/HeaderTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.TimeTemplate">
            <summary>
            Gets or sets the template for the heading section of the RadTimeView
            control.
            </summary>
            <remarks>
            	<para>Use the <strong>HeaderTemplate</strong> property to control the contents of
                the heading section. The appearance of the header section is controlled by the
                <strong>HeaderStyle</strong> property.</para>
            	<para>To specify a template for the heading section, place the
                &lt;HeadingTemplate&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the contents of the
                template between the opening and closing &lt;HeadingTemplate&gt; tags.</para>
            	<para>The ShowHeader property must be set to true for this property to be
                visible.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the
                <strong>HeaderTemplate</strong> property to control the contents of the heading
                section of the <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimeView&gt;
                            &lt;HeaderTemplate&gt;
                                &lt;asp:Label ID="Label1" runat="server" Text="Header"&gt;&lt;/asp:Label&gt;
                            &lt;/HeaderTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.ForeColor">
            <summary>
            Gets or sets the foreground color (typically the color of the text) of the
            <strong>RadTimeView</strong> control.
            </summary>
            <value>
            A System.Drawing.Color that represents the foreground color of the control. The
            default is Color.Empty.
            </value>
            <remarks>
            	<para>Use the <strong>ForeColor</strong> property to specify the foreground color
                of the <strong>RadTimeView</strong> control. The foreground color is usually the
                color of the text. This property will render on browsers earlier than Microsoft
                Internet Explorer version 4.</para>
            	<para>Note: On browsers that do not support styles, this property is rendered as a
                FONT element.</para>
            </remarks>
            <notes>
            On browsers that do not support styles, this property is rendered as a FONT
            element.
            </notes>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.BackColor">
            <summary>
            Gets or sets the background color of the <strong>RadTimeView</strong>
            control.
            </summary>
            <remarks>
            	<para>Use the <strong>BackColor</strong> property to specify the background color
                of the <strong>RadTimeView</strong> control. This property is set using a
                System.Drawing.Color object.</para>
            	<para>In general, only controls that render as a &lt;table&gt; tag can display a
                background color in HTML 3.2, whereas almost any control can in HTML 4.0.</para>
            	<para>For controls that render as a &lt;span&gt; tag (including Label, all
                validation controls, and list controls with their RepeatLayout property set to
                RepeatLayout.Flow), this property will work in Microsoft Internet Explorer version
                5 or later, but not for Microsoft Internet Explorer version 4.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.BorderColor">
            <summary>Gets or sets the border color of the <strong>RadTimeView</strong> control.</summary>
            <remarks>
            Use the <strong>BorderColor</strong> property to specify the border color of the
            <strong>RadTimeView</strong> control. This property is set using a System.Drawing.Color
            object.
            </remarks>
            <value>
            A System.Drawing.Color that represents the border color of the control. The
            default is Color.Empty, which indicates that this property is not set.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.BorderStyle">
            <summary>Gets or sets the border style of the <strong>RadTimeView</strong> control.</summary>
            <value>
            One of the <strong>BorderStyle</strong> enumeration values. The default is
            <strong>NotSet</strong>.
            </value>
            <remarks>
            	<para>Use the <strong>BorderStyle</strong> property to specify the border style for
                the <strong>RadTimeView</strong> control. This property is set using one of the
                <strong>BorderStyle</strong> enumeration values. The following table lists the
                possible values.</para>
            	<para>
            		<list type="table">
            			<item>
            				<term><strong>Border Style</strong></term>
            				<description><strong>Description</strong></description>
            			</item>
            			<item>
            				<term>NotSet</term>
            				<description>The border style is not set.</description>
            			</item>
            			<item>
            				<term>None</term>
            				<description>No border</description>
            			</item>
            			<item>
            				<term>Dotted</term>
            				<description>A dotted line border.</description>
            			</item>
            			<item>
            				<term>Dashed</term>
            				<description>A dashed line border.</description>
            			</item>
            			<item>
            				<term>Solid</term>
            				<description>A solid line border.</description>
            			</item>
            			<item>
            				<term>Double</term>
            				<description>A solid double line border.</description>
            			</item>
            			<item>
            				<term>Groove</term>
            				<description>A grooved border for a sunken border
                            appearance.</description>
            			</item>
            			<item>
            				<term>Ridge</term>
            				<description>A ridged border for a raised border
                            appearance.</description>
            			</item>
            			<item>
            				<term>Inset</term>
            				<description>An inset border for a sunken control
                            appearance.</description>
            			</item>
            		</list>
            	</para>
            	<para>Note: This property will not render on some browsers.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.BorderWidth">
            <summary>Gets or sets the border width of the <strong>RadTimeView</strong> control.</summary>
            <value>
            A Unit that represents the border width of a RadTimeView control. The default
            value is Unit.Empty, which indicates that this property is not set.
            </value>
            <remarks>
            	<para>Use the <strong>BorderWidth</strong> property to specify a border width for a
                control.</para>
            	<para>This property is set with a Unit object. If the Value property of the Unit
                contains a negative number, an exception is thrown.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.CssClass">
            <summary>
            Gets or sets the cascading style sheet (CSS) class rendered by the
            <strong>RadTimeView</strong> on the client.
            </summary>
            <value>
            The CSS class rendered by the <strong>RadTimeView</strong> control on the client.
            The default is String.Empty.
            </value>
            <remarks>
            	<para>Use the CssClass property to specify the CSS class to render on the client
                for the <strong>RadTimeView</strong> control. This property will render on browsers
                for all controls. It will always be rendered as the class attribute, regardless of
                the browser.</para>
            	<para>For example, suppose you have the following <strong>RadTimeVeiw</strong>
                control declaration:</para>
            	<para>&lt;asp:TextBox id="TextBox1" ForeColor="Red" CssClass="class1" /&gt;</para>
            	<para>The following HTML is rendered on the client for the previous
                <strong>RadTimeView</strong> control declaration:</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Height">
            <summary>Gets or sets the height of the <strong>RadTimeView</strong> control.</summary>
            <value>
            	<para>A Unit that represents the height of the <strong>RadTimeView</strong>
                control. The default is Empty.</para>
            </value>
            <remarks>
            	<para>Use the <strong>Height</strong> property to specify the height of the
                <strong>RadTimeView</strong> control.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Width">
            <summary>Gets or sets the width of the <strong>RadTimeView</strong> control.</summary>
            <value>
            A Unit that represents the width of the <strong>RadTimeView</strong> control. The
            default is Empty.
            </value>
            <remarks>
            Use the <strong>Width</strong> property to specify the width of the
            <strong>RadTimeView</strong> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Font">
            <summary>
            Gets the font properties associated with the <strong>RadTimeView</strong>
            control.
            </summary>
            <value>A FontInfo that represents the font properties of the Web server control.</value>
            <remarks>
            Use the Font property to specify the font properties of the
            <strong>RadTimeView</strong> control. This property includes subproperties that can be
            accessed declaratively in the form of Property-Subproperty (for example Font-Bold) or
            programmatically in the form of Property.Subproperty (for example Font.Bold).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.ImagesPath">
            <summary>Gets or sets default path for the grid images when EnableEmbeddedSkins is set to false.</summary>
            <value>A string containing the path for the grid images. The default is string.Empty.</value>
            <remarks>
            <para>
            
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.GridLines">
            <summary>
            Gets or sets a value that specifies whether the border between the cells of the
            <strong>RadTimeView</strong> control is displayed.
            </summary>
            <value>
            One of the <strong>GridLines</strong> enumeration values. The default is
            Both.
            </value>
            <requirements>
            Use the <strong>GridLines</strong> property to specify whether the border between
            the cells of the data list control is displayed. This property is set with one of the
            <strong>GridLines</strong> enumeration values.
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.HeaderText">
            <summary>
            Gets or sets the hetader associated with the <strong>RadTimeView</strong>
            control.
            </summary>
            <value>Use <strong>HeaderText</strong> when UseAccessibleHeader is set to true</value>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.CaptionAlign">
            <summary>Gets or sets the alignemt of the associated caption.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.UseAccessibleHeader">
            <summary>
            Indicates that the control should use accessible header cells in its containing
            table control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Caption">
            <summary>Gets or sets the descriptive caption associated with the control.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.OnClientTimeSelected">
            <summary>
            Occurs on the client when an time sell in the <strong>RadTimeView</strong>
            control is selected.
            </summary>
            <value>The default value is String.Empty</value>
            <example>
            	<para>The following example demonstrates how to attach the
                <strong>OnClientSelectedEvent</strong></para>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
                &lt;script language="javascript"&gt;
                function ClientTimeSelected(sender, args)
                {   
                    alert(args.oldTime);
                    alert(args.newTime);                
                }
                &lt;/script&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker  
                        ID="RadTimePicker1" 
                        runat="server"&gt;
                        &lt;TimeView OnClientTimeSelected="ClientTimeSelected"&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.OnClientTimeSelecting">
            <summary>
            Occurs on the client when a time cell in <strong>RadTimeView</strong> is about to be selected
            </summary>
            <value>The default value is String.Empty</value>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.HorizontalAlign">
            <summary>
            Gets or sets the horizontal alignment of the <strong>RadTimeView</strong>
            control.
            </summary>
            <value>
            One of the <strong>HorizontalAlign</strong> enumeration values. The default is
            <strong>NotSet</strong>.
            </value>
            <remarks>
            Use the <strong>HorizontalAlign</strong> property to specify the horizontal
            alignment of the data list control within its container. This property is set with one
            of the <strong>HorizontalAlign</strong> enumeration values.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.CellPadding">
            <summary>
            Gets or sets the amount of space between the contents of the cell and the cell's
            border.
            </summary>
            <value>
            The distance (in pixels) between the contents of a cell and the cell's border.
            The default is -1, which indicates that this property is not set.
            </value>
            <remarks>
            	<para>Use the <strong>CellPadding</strong> property to control the spacing between
                the contents of a cell and the cell's border. The padding amount specified is added
                to all four sides of a cell.</para>
            	<para>All cells in the same column of a data listing control share the same cell
                width. Therefore, if the content of one cell is longer than the content of other
                cells in the same column, the padding amount is applied to the widest cell. All
                other cells in the column are also set with this cell width.</para>
            	<para>Similarly, all cells in the same row share the same height. The padding
                amount is applied to the height of the tallest cell in the row. All other cells in
                the same row are set with this cell height. Individual cell sizes cannot be
                specified.</para>
            	<para>The value of this property is stored in view state.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.CellSpacing">
            <summary>
            Gets or sets the distance between time cells of the
            <strong>RadTimeView</strong>.
            </summary>
            <value>
            The distance (in pixels) between table cells. The default is -1, which indicates
            that this property is not set.
            </value>
            <remarks>
            	<para>Use the <strong>CellSpacing</strong> property to control the spacing between
                adjacent cells in a data listing control. This spacing is applied both vertically
                and horizontally. The cell spacing is uniform for the entire data list control.
                Individual cell spacing between each row or column cannot be specified.</para>
            	<para>The value of this property is stored in view state.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Columns">
            <summary>
            Gets or sets the number of columns to display in the <strong>RadTimeView</strong>
            control.
            </summary>
            <remarks>
            Use this property to specify the number of columns that display items in the
            <strong>RadTimeView</strong> control. For example, if you set this property to 5, the
            <strong>RadTimeView</strong> control displays its items in five columns.
            </remarks>
            <example>
                The following code example demonstrates how to use the <strong>Columns</strong>
                property to specify the number of columns to display in the
                <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker  
                        ID="RadTimePicker1" 
                        runat="server"&gt;
                        &lt;TimeView Columns="5" &gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.ShowFooter">
            <summary>
            	<para>Gets or sets a value indicating whether the footer section is displayed in
                the <strong>RadTimeView</strong> control.</para>
            </summary>
            <value>
            true if the footer section is displayed; otherwise, false. The default value is
            true, however this property is only examined when the <strong>FooterTemplate</strong>
            property is not a null reference (Nothing in Visual Basic).
            </value>
            <remarks>
            	<para>Use the <strong>ShowFooter</strong> property to specify whether the footer
                section is displayed in the <strong>RadTimeView</strong> control.</para>
            	<para>You can control the appearance of the footer section by setting the
                <strong>FooterStyle</strong> property. The contents of the footer section are
                controlled by the <strong>FooterTemplate</strong> property.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>ShowFooter</strong> property to display the footer section in the
                <strong>RadTimeView</strong> control.</para>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker  
                        ID="RadTimePicker1" 
                        runat="server"&gt;
                        &lt;TimeView ShowFooter="true" &gt;
                            &lt;FooterTemplate&gt;
                                &lt;asp:Label ID="Label1" runat="server" Text="Hello Footer!"&gt;&lt;/asp:Label&gt;
                            &lt;/FooterTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.ShowHeader">
            <summary>
            Gets or sets a value indicating whether the header section is displayed in the
            <strong>RadTimeView</strong> control.
            </summary>
            <value>
            true if the header is displayed; otherwise, false. The default value is true,
            however this property is only examined when the <strong>HeaderTemplate</strong>
            property is not a null reference (Nothing in Visual Basic).
            </value>
            <remarks>
            	<para>Use the <strong>ShowHeader</strong> property to specify whether the header
                section is displayed in the <strong>RadTimeView</strong> control.</para>
            	<para>You can control appearance of the header section by setting the
                <strong>HeaderStyle</strong> property. The contents of the header section are
                controlled by the <strong>HeaderTemplate</strong> property.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>ShowHeader</strong> property to display the header section in the
                <strong>RadTimeView</strong> control.</para>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true"  CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker  
                        ID="RadTimePicker1" 
                        runat="server"&gt;
                        &lt;TimeView ShowHeader="true"&gt;
                            &lt;HeaderTemplate&gt;
                                &lt;asp:Label ID="Label1" runat="server" Text="Hello Header!"&gt;&lt;/asp:Label&gt;
                            &lt;/HeaderTemplate&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.StartTime">
            <summary>Gets or sets the start time of the control.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Culture">
            <summary>
            Provides information about a specific culture. The information includes the names
            for the culture, the writing system, the calendar used, and formatting for the
            times.
            </summary>
            <remarks>
            	<para>The <strong>CultureInfo</strong> class renders culture-specific information,
                such as the associated language, sublanguage, country/region, calendar, and
                cultural conventions. This class also provides access to culture-specific instances
                of DateTimeFormatInfo, NumberFormatInfo, CompareInfo, and TextInfo. These objects
                contain the information required for culture-specific operations, such as casing,
                formatting dates and numbers, and comparing strings.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.EndTime">
            <summary>ite</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.Interval">
            <summary>
            Gets or sets the interval between <strong>StartTime</strong> and
            <strong>EndTime</strong>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.TimeFormat">
            <summary>Gets or sets the format of the time.</summary>
            <remarks>
            	<para>A custom Time format string consists of one or more custom Time format
                specifiers, and that format string defines the text representation of a DateTime
                object that is produced by a formatting operation.</para>
            	<para><strong>Custom Time format specifiers.</strong></para>
            	<para>
            		<list type="table">
            			<item>
            				<term>h</term>
            				<description>Represents the hour as a number from 1 through 12, that
                            is, the hour as represented by a 12-hour clock that counts the whole
                            hours since midnight or noon. Consequently, a particular hour after
                            midnight is indistinguishable from the same hour after noon. The hour
                            is not rounded, and a single-digit hour is formatted without a leading
                            zero. For example, given a time of 5:43, this format specifier displays
                            "5". For more information about using a single format specifier, see
                            Using Single Custom Format Specifiers.</description>
            			</item>
            			<item>
            				<term>hh, hh (plus any number of additional "h" specifiers)</term>
            				<description>Represents the hour as a number from 01 through 12, that
                            is, the hour as represented by a 12-hour clock that counts the whole
                            hours since midnight or noon. Consequently, a particular hour after
                            midnight is indistinguishable from the same hour after noon. The hour
                            is not rounded, and a single-digit hour is formatted with a leading
                            zero.</description>
            			</item>
            			<item>
            				<term>H</term>
            				<description>Represents the hour as a number from 0 through 23, that
                            is, the hour as represented by a zero-based 24-hour clock that counts
                            the hours since midnight. A single-digit hour is formatted without a
                            leading zero.</description>
            			</item>
            			<item>
            				<term>HH, HH (plus any number of additional "H" specifiers)</term>
            				<description>Represents the hour as a number from 00 through 23, that
                            is, the hour as represented by a zero-based 24-hour clock that counts
                            the hours since midnight. A single-digit hour is formatted with a
                            leading zero.</description>
            			</item>
            			<item>
            				<term>m</term>
            				<description>Represents the minute as a number from 0 through 59. The
                            minute represents whole minutes passed since the last hour. A
                            single-digit minute is formatted without a leading zero.</description>
            			</item>
            			<item>
            				<term>mm, mm (plus any number of additional "m" specifiers)</term>
            				<description>Represents the minute as a number from 00 through 59. The
                            minute represents whole minutes passed since the last hour. A
                            single-digit minute is formatted with a leading zero.</description>
            			</item>
            			<item>
            				<term>s</term>
            				<description>Represents the seconds as a number from 0 through 59. The
                            second represents whole seconds passed since the last minute. A
                            single-digit second is formatted without a leading zero.</description>
            			</item>
            			<item>
            				<term>ss, ss (plus any number of additional "s" specifiers)</term>
            				<description>Represents the seconds as a number from 00 through 59. The
                            second represents whole seconds passed since the last minute. A
                            single-digit second is formatted with a leading zero.</description>
            			</item>
            			<item>
            				<term>t</term>
            				<description>Represents the first character of the A.M./P.M. designator
                            defined in the current
                            System.Globalization.DateTimeFormatInfo.AMDesignator or
                            System.Globalization.DateTimeFormatInfo.PMDesignator property. The A.M.
                            designator is used if the hour in the time being formatted is less than
                            12; otherwise, the P.M. designator is used.</description>
            			</item>
            			<item>
            				<term>tt, tt (plus any number of additional "t" specifiers)</term>
            				<description>Represents the A.M./P.M. designator as defined in the
                            current System.Globalization.DateTimeFormatInfo.AMDesignator or
                            System.Globalization.DateTimeFormatInfo.PMDesignator property. The A.M.
                            designator is used if the hour in the time being formatted is less than
                            12; otherwise, the P.M. designator is used.</description>
            			</item>
            		</list>
            	</para>
            	<para><br/>
            		<strong>Standard Time Format Specifiers</strong></para>
            	<para>
            		<list type="table">
            			<item>
            				<term>t</term>
            				<description>ShortTimePattern - For example, the custom format string
                            for the invariant culture is "HH:mm".</description>
            			</item>
            			<item>
            				<term>T</term>
            				<description>LongTimePattern - For example, the custom format string
                            for the invariant culture is "HH:mm:ss".</description>
            			</item>
            		</list>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.TimeStyle">
            <summary>
            Gets the style properties for the time cells in the <strong>RadTimeView</strong>
            control.
            </summary>
            <remarks>
            	<para>Use this property to provide a custom style for the items of the
                <strong>RadTimeView</strong> control. Common style attributes that can be adjusted
                include foreground color, background color, font, and content alignment within the
                cell. Providing a different style enhances the appearance of the
                <strong>RadTimeView</strong> control.</para>
            	<para>If you specify a red font for the <strong>TimeStyle</strong> property, all
                other item style properties in the <strong>RadTimeView</strong> control will also
                have a red font. This allows you to provide a common appearance for the control by
                setting a single item style property. You can override the inherited style settings
                for an item style property that is higher in the hierarchy by setting its style
                properties. For example, you can specify a blue font for the
                <strong>AlternatingTimeStyle</strong> property, overriding the red font specified
                in the <strong>TimeStyle</strong> property.</para>
            	<para>To specify a custom style for the items of the <strong>RadTimeView</strong>
                control, place the &lt;TimeStyle&gt; tags between the opening and closing tags of
                the <strong>RadTimeView</strong> control. You can then list the style attributes
                within the opening &lt;TimeStyle&gt; tag.</para>
            	<para>You can also use the AlternatingTimeStyle property to provide a different
                appearance for the alternating items in the <strong>RadTimeView</strong>
                control.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the <strong>TimeStyle</strong>
                property to specify a different background color for the time cells in the
                <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;div&gt;
                        &lt;asp:DropDownList AutoPostBack="true" ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"&gt;
                            &lt;asp:ListItem Text="Select" Value=""&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="DarkGray" Value="DarkGray"&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="Khaki" Value="Khaki"&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="DarkKhaki" Value="DarkKhaki"&gt;&lt;/asp:ListItem&gt;
                        &lt;/asp:DropDownList&gt;
                    &lt;/div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimePopupButton ImageUrl="clock.gif" HoverImageUrl="clock.gif" /&gt;
                        &lt;TimeView Skin="None"&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code title="[New Example]">
            using System;
            using System.Data;
            using System.Configuration;
            using System.Web;
            using System.Web.Security;
            using System.Web.UI;
            using System.Web.UI.WebControls;
            using System.Web.UI.WebControls.WebParts;
            using System.Web.UI.HtmlControls;
             
            public partial class _Default : System.Web.UI.Page
            {
                protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
                {
                    this.RadTimePicker1.TimeView.TimeStyle.BackColor =
                        System.Drawing.Color.FromName(this.DropDownList1.SelectedItem.Value);
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.AlternatingTimeStyle">
            <summary>
            Gets the style properties for alternating time sells in the
            <strong>RadTimeView</strong> control.
            </summary>
            <remarks>
            	<para>Use the <strong>AlternatingTimeStyle</strong> property to provide a custom
                style for the alternating time cells in the <strong>RadTimeView</strong> control.
                Common style attributes that can be adjusted include foreground color, background
                color, font, and content alignment within the cell. Providing a different style
                enhances the appearance of the <strong>RadTimeView</strong> control.</para>
            	<para>If you specify a red font for the <strong>TimeStyle</strong> property, all
                other item style properties in the <strong>RadTimeView</strong> control will also
                have a red font. This allows you to provide a common appearance for the control by
                setting a single item style property. You can override the inherited style settings
                for an item style property that is higher in the hierarchy by setting its style
                properties. For example, you can specify a blue font for the
                <strong>AlternatingTimeStyle</strong> property, overriding the red font specified
                in the <strong>TimeStyle</strong> property.</para>
            	<para>To specify a custom style for the alternating items, place the
                &lt;AlternatingTimeStyle&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the style attributes within
                the opening &lt;AlternatingTimeStyle&gt; tag.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the
                <strong>AlternatingTimeStyle</strong> property to specify a different background
                color for alternating items in the <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;div&gt;
                        &lt;asp:DropDownList AutoPostBack="true" ID="DropDownList1" runat="server" OnSelectedIndexChanged="DropDownList1_SelectedIndexChanged"&gt;
                            &lt;asp:ListItem Text="Select" Value=""&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="DarkGray" Value="DarkGray"&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="Khaki" Value="Khaki"&gt;&lt;/asp:ListItem&gt;
                            &lt;asp:ListItem Text="DarkKhaki" Value="DarkKhaki"&gt;&lt;/asp:ListItem&gt;
                        &lt;/asp:DropDownList&gt;
                    &lt;/div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimePopupButton ImageUrl="clock.gif" HoverImageUrl="clock.gif" /&gt;
                        &lt;TimeView Skin="None"&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code title="[New Example]">
            using System;
            using System.Data;
            using System.Configuration;
            using System.Web;
            using System.Web.Security;
            using System.Web.UI;
            using System.Web.UI.WebControls;
            using System.Web.UI.WebControls.WebParts;
            using System.Web.UI.HtmlControls;
             
            public partial class _Default : System.Web.UI.Page
            {
                protected void DropDownList1_SelectedIndexChanged(object sender, EventArgs e)
                {
                    this.RadTimePicker1.TimeView.AlternatingTimeStyle.BackColor =
                        System.Drawing.Color.FromName(this.DropDownList1.SelectedItem.Value);
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.HeaderStyle">
            <summary>
            Gets the style properties for the heading section of the
            <strong>RadTimeView</strong> control.
            </summary>
            <remarks>
            	<para>Use this property to provide a custom style for the heading of the
                <strong>RadTimeView</strong> control. Common style attributes that can be adjusted
                include foreground color, background color, font, and content alignment within the
                cell. Providing a different style enhances the appearance of the
                <strong>RadTimeView</strong> control.</para>
            	<para>To specify a custom style for the heading section, place the
                &lt;HeaderStyle&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the style attributes within
                the opening &lt;HeaderStyle&gt; tag.</para>
            	<para><strong>Note</strong>: The <strong>ShowHeader</strong> property must be set
                to true for this property to be visible.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the <strong>HeaderStyle</strong>
                property to specify a custom background color for the heading section of the
                <strong>RadTimeView</strong> control.
                <code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimePopupButton ImageUrl="clock.gif" HoverImageUrl="clock.gif" /&gt;
                        &lt;TimeView Skin="None" ShowHeader="true"&gt;
                            &lt;HeaderStyle BackColor="red" /&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTimeView.FooterStyle">
            <summary>
            Gets the style properties for the footer section of the
            <strong>RadTimeView</strong> control.
            </summary>
            <remarks>
            	<para>Use this property to provide a custom style for the footer section of the
                <strong>radTimeView</strong> control. Common style attributes that can be adjusted
                include foreground color, background color, font, and content alignment within the
                cell. Providing a different style enhances the appearance of the
                <strong>RadTimeView</strong> control.</para>
            	<para>The <strong>FooterStyle</strong> property of the <strong>RadTimeView</strong>
                control inherits the style settings of the ControlStyle property. For example, if
                you specify a red font for the ControlStyle property, the
                <strong>FooterStyle</strong> property will also have a red font. This allows you to
                provide a common appearance for the control by setting a single style property. You
                can override the inherited style settings by setting the
                <strong>FooterStyle</strong> property. For example, you can specify a blue font for
                the <strong>FooterStyle</strong> property, overriding the red font specified in the
                ControlStyle property.</para>
            	<para>To specify a custom style for the footer section, place the
                &lt;FooterStyle&gt; tags between the opening and closing tags of the
                <strong>RadTimeView</strong> control. You can then list the style attributes within
                the opening &lt;FooterStyle&gt; tag.</para>
            	<para><strong>Note</strong>: The <strong>ShowFooter</strong> property must be set
                to true for this property to be visible.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>FooterStyle</strong> property to specify a custom background color for the
                footer section of the <strong>RadTimeView</strong> control.</para>
            	<code title="[New Example]">
            &lt;%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %&gt;
             
            &lt;%@ Register Assembly="RadCalendar.Net2" Namespace="Telerik.WebControls" TagPrefix="radCln" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radCln:RadTimePicker
                        ID="RadTimePicker1"
                        runat="server"&gt;
                        &lt;TimePopupButton ImageUrl="clock.gif" HoverImageUrl="clock.gif" /&gt;
                        &lt;TimeView Skin="None" ShowFooter="true"&gt;
                            &lt;FooterStyle BackColor="Aqua" /&gt;
                        &lt;/TimeView&gt;
                    &lt;/radCln:RadTimePicker&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.TimePopupButton">
            <summary>
            The control that toggles the TimeView popup.  
            You can customize the appearance by setting the object's properties.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.TypeConverters.TemplateListTypeConverter">
            <summary>
            Custom Type convertor that gives enhanced selection abilities for the properties that
            reffer to collections like CalendarDayCollection.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Utils.JsBuilder">
            <summary>
            Summary description for JsBuilder.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.Utils.Utility">
            <summary>
            Summary description for Utility.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Utils.Utility.ConvertSingleValueToClientString(System.Object)">
            <summary>
            This static member is used translating .NET arrays to JS arrays.
            Acts like a compressor.
            </summary>
            <param name="inputValue">The 1D array to compress</param>
            <returns>The compressed string</returns>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.Utils.Utility.ConvertToServerDateTimeCollection(Telerik.Web.UI.Calendar.Collections.DateTimeCollection,System.String)">
            <summary>
            Converts an input 2D JavaScript array like [[5,10,2005],[6,10,2005],[7,10,2005]] into a DateTimeCollection.
            </summary>
            <param name="dateTimeCollection">The DateTimeCollection that will be filled.</param>
            <param name="inputString">The input string.</param>
        </member>
        <member name="T:Telerik.Web.UI.RadCalendarDay">
            <summary>
            RadCalendarDay represents a object that maps date value to corresponding visual settings.
            Also the object implements Boolean properties that represent the nature of the selected date - 
            whether it is a weekend, disabled or selected in the context of the calendar. Mostly the values
            of those properties are set at runtime when a RadCalendarDay instance is constructed and passed
            to the DayRender event.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.View.RichUITemplateControl">
            <summary>
            Summary description for RichUITemplateControl.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.View.RichUITemplateControl.Reset">
            <summary>
            Reset all properties to their defaults.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Calendar.View.RichUITemplateControl.TemplateID">
            <summary>
            Persists the ID of the template used by this instance of RichUITemplateControl if 
            any. The TemplateID could be used to index the Templates collection and instantiate
            the required template.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.Date">
            <summary>
            Gets or sets the date represented by this RadCalendarDay.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.ItemStyle">
            <summary>
            Gets the style properties for the <strong>RadCalendarDay</strong>
            instance.
            </summary>
            <value>
            A TableItemStyle that contains the style properties for the RadCalendarDay instance.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.IsSelectable">
            <summary>
             Gets or sets a value indicating whether the RadCalendarDay is qualified as available for selection. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.IsSelected">
            <summary>
            Gets or sets a value indicating whether the RadCalendarDay is selected
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.IsDisabled">
            <summary>
            Gets or sets a value indicating whether the RadCalendarDay is disabled
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.IsToday">
            <summary>
            Gets or sets a value indicating whether the RadCalendarDay represents the current date.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.Repeatable">
            <summary>
            Gets or sets a value indicating whether the RadCalendarDay settings are repeated/recurring through out the valid
            date range displayed by the calendar.
            </summary>
            <remarks>
            The RecurringEvents enumeration determines which part of the date is handled (day or day and month).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.IsWeekend">
            <summary>
            Gets or sets a value indicating whether the RadCalendarDay is mapped to a date that represents a non working
            day/weekend.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCalendarDay.ToolTip">
            <summary>
            Gets or sets the text displayed when the mouse pointer hovers over the calendar day.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.View.CalendarRenderer">
            <summary>
            Summary description for BaseRenderer.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.View.CalendarView">
            <summary>
            Summary description for CalendarView.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Calendar.View.CalendarView.GetClientData">
            <summary>
            Returns an ArrayList of all properties of RadCalendar that are to be exported on the client.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.View.MonthView">
            <summary>
            Summary description for CalendarView.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DayTemplate">
            <summary>
            Descendent of Control, DayTemplate implements an ITemplate wrapper, required for building
            collections of templates like CalendarDayTemplateCollection.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Calendar.View.TemplateContainer">
            <summary>
            This is the control that is used to instantiate any required template.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadComboBox">RadComboBox</see> control.
            </summary>
            <remarks>
            	The <strong>RadComboBoxItemCollection</strong> class represents a collection of
                <strong>RadComboBoxItem</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadComboBoxItemCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadComboBoxItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of combo items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadComboBoxItemCollection.Add(Telerik.Web.UI.RadComboBoxItem)">Add</see> method to add items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadComboBoxItemCollection.Remove(Telerik.Web.UI.RadComboBoxItem)">Remove</see> method to remove items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Add(Telerik.Web.UI.RadComboBoxItem)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object to the end of the current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> to append to the end of the current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add items in a
                <strong>RadComboBox</strong> control.
            	<code lang="CS">
            		RadComboBoxItem newsItem = new RadComboBoxItem("News");
            		RadComboBox1.Items.Add(newsItem);
                </code>
            	<code lang="VB">
            		Dim newsItem As RadPanelItem = New RadComboBoxItem("News")
            		RadComboBox1.Items.Add(newsItem)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemByText(System.String)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Text</strong> that
            matches the given text value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified text value.</font>
            </returns>
            <param name="text">The string to search for.</param>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemByValue(System.String)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Value</strong> that
            matches the given value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified value.</font>
            </returns>
            <param name="value">The value to search for.</param>
            <remarks>This methos is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemByAttribute(System.String,System.String)">
            <summary>
            Searches the items in the collection for a <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadComboBoxItem</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemByText(System.String,System.Boolean)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Text</strong> that
            matches the given text value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified text value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByText("New York",true)
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByText("New York",true);
                </code>
            </example>
            <param name="text">The string to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemByValue(System.String,System.Boolean)">
            <summary>
            Finds the first <strong>RadComboBoxItem</strong> with <strong>Value</strong> that
            matches the given value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadComboBoxItem</strong> that matches the
            specified value.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim item As RadComboBoxItem = RadComboBox1.FindItemByValue("1", true)
                </code>
            	<code lang="CS" title="[New Example]">
            RadComboBoxItem item = RadComboBox1.FindItemByValue("1", true);
                </code>
            </example>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemIndexByText(System.String)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Text</strong> that matches the given text value.
            </summary>
            <param name="text">The string to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemIndexByText(System.String,System.Boolean)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Text</strong> that matches the given text value.
            </summary>
            <param name="text">The string to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemIndexByValue(System.String)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Value</strong> that matches the given value.
            </summary>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItemIndexByValue(System.String,System.Boolean)">
            <summary>
            Returns the index of the first <strong>RadComboBoxItem</strong> with
            <strong>Value</strong> that matches the given value.
            </summary>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.FindItem(System.Predicate{Telerik.Web.UI.RadComboBoxItem})">
            <summary>
            Returns  the first <strong>RadComboBoxItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadComboBox1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadComboBoxItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadComboBox1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadComboBoxItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
                </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Contains(Telerik.Web.UI.RadComboBoxItem)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadComboBoxItem})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple items in a single step. 
                <code lang="CS">
            		RadComboBoxItem[] items = new RadComboBoxItem[] { new RadComboBoxItem("First"), new RadComboBoxItem("Second"), new RadComboBoxItem("Third") };
            		RadComboBox1.Items.AddRange(items);
                </code>
            	<code lang="VB">
                    Dim items() As RadComboBoxItem = {New RadComboBoxItem("First"), New RadComboBoxItem("Second"), New RadComboBoxItem("Third")}
                    RadComboBox1.Items.AddRange(items)
                </code>
            </example>
            <param name="items">
                The array of <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> o append to the end of the current 
            <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.IndexOf(Telerik.Web.UI.RadComboBoxItem)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object in the collection.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> to locate.
            </param>
            <returns>
            	The zero-based index of item within the current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Insert(System.Int32,Telerik.Web.UI.RadComboBoxItem)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see>.</param>
            <param name="item">The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Remove(Telerik.Web.UI.RadComboBoxItem)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Remove(System.Int32)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the index to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Sort">
            <summary>
            	Sort the items from <see>RadComboBoxItemCollection</see>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadComboBoxItemCollection.Sort(System.Collections.IComparer)">
            <summary>
            	Sort the items from <see>RadComboBoxItemCollection</see>.
            </summary>
            <param name="comparer">
            An object from IComparer interface.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadComboBoxItem">RadComboBoxItem</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadComboBoxItemCollection">RadComboBoxItemCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.ControlRenderHelper">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.ModalExtender">
            <summary>
            Clientside implementation of visual element resize functionality
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.StateBagWithPrefix">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.ResizeExtender">
            <summary>
            Clientside implementation of visual element resize functionality
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Dialogs.DialogControlInitializer">
            <summary>
            This class is intended to simply define the common scripts reference
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DialogDefinition.#ctor(Telerik.Web.UI.DialogParameters)">
            <summary>
            Used from DialogLoaderBase to extract the definition
             of the dialog to be loaded
            </summary>
            <param name="parameters">
            The parameters got from the DialogLoader. They must include
             either VirtualPath or Type for the control to be loaded.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.DialogDefinition.#ctor(System.String,Telerik.Web.UI.DialogParameters)">
            <summary>
            Used from a RadControl (Editor, Spell) to define an UserControl dialog
            </summary>
            <param name="virtualPath">The path to the ascx to be loaded</param>
            <param name="parameters">The parameters to be passed to the dialog</param>
        </member>
        <member name="M:Telerik.Web.UI.DialogDefinition.#ctor(System.Type,Telerik.Web.UI.DialogParameters)">
            <summary>
            Used from a RadControl (Editor, Spell) to define a WebControl dialog
            </summary>
            <param name="dialogType">The type of the control to be loaded</param>
            <param name="parameters">The parameters to be passed to the dialog</param>
        </member>
        <member name="P:Telerik.Web.UI.DialogDefinition.Behaviors">
            <summary>
            Gets or sets a value indicating the behavior of this dialog - if it can be
            resized, has expand/collapse commands, closed command, etc.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DialogHandler">
            <summary>
            This is the default dialog handler class for Telerik dialogs. It requires Session State to be enabled
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DialogHandlerNoSession">
            <summary>
            This class can be used instead of the default (DialogHandler) class for Telerik dialogs. It does not require Session State to be enabled.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadDialogOpener">
            <summary>
            RadDialogOpener class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDialogOpener.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadDialogOpener.SerializeManagerParameters">
            <summary>
            If the EnableTelerikManagers property is set to true, this function should be called to copy the settings 
            (CDN, handler URL, etc.) to the script/stylesheet manager control in the dialogs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.ShouldRegisterCssReferences">
            <summary>
            This control has no skin! This property will prevent the SkinRegistrar from
            registering the missing CSS references.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.Window">
            <summary>
            A read-only property that returns the RadWindow instance used in the RadDialogOpener control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.EnableTelerikManagers">
            <summary>
            When set to True, tells the dialog opener to use RadScriptManager and RadStyleSheetManager when loading an .ascx dialog file.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.AdditionalQueryString">
            <summary>
            Gets or sets an additional querystring appended to the dialog URL.
            </summary>
            <value>A <strong>String</strong>, appended to the dialog URL</value>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.DialogDefinitions">
            <summary>
            Gets the DialogDefinitionDictionary, containing the DialogDefinitions of the managed dialogs.
            </summary>
            <value>TODO</value>
            <remarks>TODO</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.UseClassicDialogs">
            <summary>
            Gets or sets a value, indicating if classic windows will be used for opening a dialog.
            </summary>
            <value>A <strong>boolean</strong>, indicating if classic windows will be used
            for opening a dialog</value>
            <remarks>When set to true, the <strong>RadDialogOpener</strong> shows a dialog similar to the
            ones opened by window.open and window.showModalDialog;</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.Language">
            <summary>Gets or sets the localization language for the user interface.</summary>
            <value>
            The localization language for the user interface. The default value is
            <strong>en-US</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.EnableEmbeddedScripts">
            <summary>Gets or sets the value, indicating whether to render links to the embedded scripts or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed script files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.OnClientOpen">
            <summary>
            Gets or sets the client-side script that gets executed when the dialog opening event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.OnClientClose">
            <summary>
            Gets or sets the client-side script that gets executed when the dialog closing event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.DialogsCssFile">
            <summary>
            Gets or sets the location of a CSS file, that will be added in the dialog window. If you need to include 
            more than one file, use the CSS @import url(); rule to add the other files from the first.
            <remarks>This property is needed if you are using a custom skin. It allows you to include your custom skin
            CSS in the dialogs, which are separate from the main page.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.DialogsScriptFile">
            <summary>
            Gets or sets the location of a JavaScript file, that will be added in the dialog window. If you need to include 
            more than one file, you will need to combine the scripts into one first.
            <remarks>This property is needed if want to override some of the default functionality without loading the dialog
            from an external ascx file.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDialogOpener.Animation">
            <summary>
            Get/Set the animation effect of the window
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DialogOpener">
            <summary>
            This class is provided for backwards compatibility with old solutions.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.JavascriptDialogParametersProvider">
            <summary>
            An empty class to just indicate that the parameters must be taken in a querystring/javascript manner
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DialogParametersProvider.#ctor(System.Web.UI.Page)">
            <summary>
            Instantiates the DialogParametersProvider
            </summary>
            <param name="page">The page that uses the DialogParametersProvider</param>
        </member>
        <member name="M:Telerik.Web.UI.DialogParametersProvider.GetDialogParameters(System.String,System.String)">
            <summary>
            Returns the <see cref="T:Telerik.Web.UI.DialogParameters">DialogParameters</see> for a dialog
            </summary>
            <param name="dialogOpenerIdentifier">the unique identifier of the dialogOpener, which
            	parameters are stored</param>
            <param name="dialogName">the name of the dialog which parameters are requested</param>
            <returns>the DialogParameters for the specified dialog of the exact editor</returns>
        </member>
        <member name="M:Telerik.Web.UI.DialogParametersProvider.StoreAllParameters(System.String,Telerik.Web.UI.DialogParametersDictionary)">
            <summary>
            Stores the <see cref="T:Telerik.Web.UI.DialogParameters">DialogParameters</see> for
            all the dialogs of a specified RadDialogOpener
            </summary>
            <param name="dialogOpenerIdentifier">the unique identifier of the editor
            which <see cref="T:Telerik.Web.UI.DialogParameters">DialogParameters</see>
            will be stored</param>
            <param name="dialogParameters"> The list of dialog parameters</param>
        </member>
        <member name="T:Telerik.Web.Dialogs.DialogParametersSerializer">
            <summary>
            DialogParametersSerializer - serializes a DialogParameters object to a string and deserializes it.
            </summary>
            <remarks>
            	<para>Known limitations:
            		<list type="bullet">
            			<item>When deserializing, the enum values are passed as ints and an implicit cast is required.</item>
            			<item>If a string array with a one element == string.Empty is passed, the deserialized array will have no elements</item>
            		</list>
            	</para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.DockHandle">
            <summary>
            Defines the RadDock titlebar and grips behavior.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockHandle.None">
            <summary>
            The control will not have titlebar or grips.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockHandle.TitleBar">
            <summary>
            The control will have only titlebar.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockHandle.Grip">
            <summary>
            The control will have only grips.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockLayoutEventArgs">
            <summary>
            Provides data for the SaveDockLayout and the LoadDockLayout events.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockLayoutEventArgs.#ctor(System.Collections.Generic.Dictionary{System.String,System.String},System.Collections.Generic.Dictionary{System.String,System.Int32})">
            <summary>
            Initializes a new instance of the DockLayoutEventArgs class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockLayoutEventArgs.Positions">
            <summary>
            Dictionary, containing UniqueName/DockZoneID pairs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockLayoutEventArgs.Indices">
            <summary>
            Dictionary, containing UniqueName/Index pairs.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockLayoutEventHandler">
            <summary>
            Represents the method that handles a SaveDockLayout or LoadDockLayout events
            </summary>
            <param name="sender">The source of the event</param>
            <param name="e">A DockLayoutEventArgs that contains the event data</param>
        </member>
        <member name="T:Telerik.Web.UI.DockMode">
            <summary>
            Defines the docking behavior of a RadDock control
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockMode.Floating">
            <summary>
            The RadDock control is able to float (to be undocked)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockMode.Docked">
            <summary>
            The RadDock control is able to dock into zones
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockMode.Default">
            <summary>
            The RadDock control is able to be both docked and undocked.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockPinUnpinCommand">
            <summary>
            Represents the PinUnpin command item in a RadDock control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.DockPinUnpinCommand.#ctor">
            <summary>
            Initializes a new instance of the DockPinUnpinCommand class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.State">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.Text">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.AlternateText">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.CssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.AlternateCssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.DockPinUnpinCommand.Name">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.Dock.DefaultCommands">
            <summary>
            Defines the commands which should appear in the RadDock control
            titlebar when its Commands property is not set.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Dock.DefaultCommands.None">
            <summary>
            No commands will appear
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Dock.DefaultCommands.Close">
            <summary>
            Close command
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Dock.DefaultCommands.ExpandCollapse">
            <summary>
            ExpandCollapse command
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Dock.DefaultCommands.PinUnpin">
            <summary>
            PinUnpin command
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Dock.DefaultCommands.All">
            <summary>
            All commands
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockPositionChangedEventArgs">
            <summary>
            Provides data for the DockPositionChanged event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockPositionChangedEventArgs.DockZoneID">
            <summary>
            Contains the ClientID of the dock zone the dock has been dropped to. 
            If the dock was not dropped in a zone (undocked) the value will be 
            string.Empty.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DockPositionChangedEventArgs.Index">
            <summary>
            Contains the index of the dock in the new dock zone
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DockPositionChangedEventHandler">
            <summary>
            Represents the method that handles a DockPositionChanged event
            </summary>
            <param name="sender">The source of the event</param>
            <param name="e">A DockPositionChangedEventArgs that contains the event data</param>
        </member>
        <member name="T:Telerik.Web.UI.DockToggleCommandState">
            <summary>
            Defines the state of a DockToggleCommand item
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockToggleCommandState.Primary">
            <summary>
            The command is in primary state. It will be initially rendered 
            using the CssClass and Text properties.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.DockToggleCommandState.Alternate">
            <summary>
            The command is in alternate state. It will be initially rendered 
            using the AlternateCssClass and AlternateText properties.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Editor.StandardDropDownProperties.PopUpWidth">
            <summary>
            Use this attribute to set the width of a DropDown
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Editor.StandardDropDownProperties.PopUpHeight">
            <summary>
            Use this attribute to set the height of a DropDown
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Editor.StandardDropDownProperties.PopUpClassName">
            <summary>
            Use this attribute to set the popup class name of a DropDown
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Editor.StandardDropDownProperties.SizeToFit">
            <summary>
            Use this attribute to let the DropDown to adjust its size to its content automatically
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Editor.StandardDropDownProperties.ItemsPerRow">
            <summary>
            Use this attribute to set the number of the items per row in a DropDown
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.AttributeCollection.HashCodeCombiner">
            <summary>
            Copied from Reflector
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorCssFile">
            <summary>
            Represents a CssFile item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorCssFileCollection">
            <summary>
            A strongly typed collection of EditorCssFile objects
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.EditorToolsBase.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.Editor.EditorToolsBase.Name">
            <summary>
            This property sets the tool name in the client script.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.EditorToolsBase.AddClickHandler">
            <summary>
            This property instructs the tool to attach its own click handlers and not to rely on a tool adapter
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.DialogControls.About">
            <summary>
            About dialog for RadEditor
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.About.DialogName">
            <summary>
            The name of the dialog (e.g. "About")
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorColor">
            <summary>
            A RadEditor color picker color
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColor.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorColor"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColor.#ctor(System.Drawing.Color)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorColor"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColor.#ctor(System.Drawing.Color,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorColor"/> class.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorColorCollection">
            <summary>
            A strongly typed collection of EditorColor objects
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColorCollection.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorColorCollection"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColorCollection.Add(System.String)">
            <summary>
            Adds a EditorColor object, initialized with the specified value.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorColorCollection.SetDirtyObject(System.Object)">
            <summary>
            When overridden in a derived class, instructs an object contained by the collection to record its entire state to view state, rather than recording only change information.
            </summary>
            <param name="o">The <see cref="T:System.Web.UI.IStateManager"></see> that should serialize itself completely.</param>
        </member>
        <member name="T:Telerik.Web.UI.EditorContextMenu">
            <summary>
            Represents a RadEditor context menu.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenu.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenu.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenu.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenu.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorContextMenu.TagName">
            <summary>
            Gets or sets the name of the tag, this EditorContextMenu will be associated to.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorContextMenu.Enabled">
            <summary>
            Gets or sets a value indicating whether this <see cref="T:Telerik.Web.UI.EditorContextMenu"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorContextMenu.Tools">
            <summary>
            Gets the collection of EditorTool objects, placed in this context menu instance.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorContextMenuCollection">
            <summary>
            A strongly typed collection of EditorContextMenu objects
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenuCollection.Add(Telerik.Web.UI.EditorContextMenu)">
            <summary>
            Adds the specified item to the collection. If the collection already contains an item 
            with the same TagName, it will be replaced with the new item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorContextMenuCollection.SetDirtyObject(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.EditorCssClass">
            <summary>
            Represents a CssClass dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorCssClassCollection">
            <summary>
            A strongly typed collection of EditorCssClass objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorFont">
            <summary>
            Represents a FontName dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorFontCollection">
            <summary>
            A strongly typed collection of EditorFont objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorFontSize">
            <summary>
            Represents a FontSize dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorFontSizeCollection">
            <summary>
            A strongly typed collection of EditorFontSize objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorLinkCollection">
            <summary>
            A strongly typed collection of EditorLink objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorParagraph">
            <summary>
            Represents a FormatBlock dropdown item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorParagraph.Title">
            <summary>
            The tag which the selected text will be enclosed with.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorParagraph.Tag">
            <summary>
            The text which will be displayed in the FormatBlock dropdown
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorParagraphCollection">
            <summary>
            A strongly typed collection of EditorParagraph objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorRealFontSize">
            <summary>
            Represents a RealFontSize dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorRealFontSizeCollection">
            <summary>
            A strongly typed collection of EditorRealFontSize objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorSnippet">
            <summary>
            Represents a InsertSnippet dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorSnippetCollection">
            <summary>
            A strongly typed collection of EditorSnippet objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorSymbol">
            <summary>
            Represents a InsertSymbol dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorSymbolCollection">
            <summary>
            A strongly typed collection of EditorSymbol objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckerLanguage">
            <summary>
            Represents a SpellCheck dropdown item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckerLanguageCollection">
            <summary>
            A strongly typed collection of SpellCheckerLanguage objects
            </summary>	
        </member>
        <member name="T:Telerik.Web.UI.EditorSeparator">
            <summary>
            A special EditorTool object, which is rendered as a separator by the default
            ToolAdapter.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorToolBase">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolBase.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolBase.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolBase.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolBase.System#Web#UI#IAttributeAccessor#GetAttribute(System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolBase.System#Web#UI#IAttributeAccessor#SetAttribute(System.String,System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.Type">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.Visible">
            <summary>
            Gets or sets a value indicating whether this <see cref="T:Telerik.Web.UI.EditorTool"/> is visible.
            </summary>
            <value><c>true</c> if visible; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.Attributes">
            <summary>
            Gets the custom attributes which will be serialized on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.PopUpWidth">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.PopUpHeight">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.PopUpClassName">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.SizeToFit">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolBase.ItemsPerRow">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorSeparator.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorSeparator.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorSeparator.Type">
            <summary>
            Gets or sets the type of the tool - by default it is a button		
            </summary>
            <value>The type of the tool on the client.</value>		
        </member>
        <member name="T:Telerik.Web.UI.EditorToolBaseCollection">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.Add(`0)">
            <summary>
            Adds the specified item.
            </summary>
            <param name="item">The item.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.Contains(`0)">
            <summary>
            Determines whether the collection contains the specified item.
            </summary>
            <param name="item">The item.</param>
            <returns>
            	<c>true</c> if the collection contains the specified item; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.CopyTo(`0[],System.Int32)">
            <summary>
            Copies the collection items to the specified array.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.AddRange(System.Collections.Generic.IEnumerable{`0})">
            <summary>
            Adds the specified items to the collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.IndexOf(`0)">
            <summary>
            Gets the index of the specified item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.Insert(System.Int32,`0)">
            <summary>
            Inserts the specified item at the specified index.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.Remove(`0)">
            <summary>
            Removes the specified item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.RemoveAt(System.Int32)">
            <summary>
            Removes the item at the specified index.
            </summary>
            <param name="index">The zero-based index of the item to remove.</param>
            <exception cref="T:System.ArgumentOutOfRangeException">index is not a valid index in the <see cref="T:System.Collections.IList"></see>. </exception>
            <exception cref="T:System.NotSupportedException">The <see cref="T:System.Collections.IList"></see> is read-only.-or- The <see cref="T:System.Collections.IList"></see> has a fixed size. </exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.GetKnownTypes">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.CreateKnownType(System.Int32)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.SetDirtyObject(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.Item(System.Int32)">
            <summary>
            Gets or sets the tool at the specified index.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.GenericEditorToolBaseCollection`1.List">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.EditorToolStrip">
            <summary>
            Represents a ToolStrip RadEditor tool, containing other tools.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorToolStrip.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolStrip.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolStrip.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolStrip.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolStrip.Name">
            <summary>
            Gets or sets the name of the tool strip.
            </summary>
            <value>The name.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorToolStrip.Tools">
            <summary>
            Gets the collection of EditorTool objects, inside the tool strip.
            </summary>
            <value>The tools.</value>
        </member>
        <member name="T:Telerik.Web.UI.ImageManagerDialogConfiguration">
            <summary>
            Encapsulates the properties used for ImageManager dialog management.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageManagerDialogConfiguration.ImageEditorFileSuffix">
            <summary>
            Gets or sets the default suffix for thumbnails.
            </summary>
            <value>
            A <strong>String</strong>, specifying the default thumbnail suffix. The default value
            is "thumb".
            </value>
            <remarks>
            Used in the ImageManager dialog. The value of the <strong>ImageEditorFileSuffix</strong> property is
            used to determine if an image selected in the file browser is a thumbnail of another image
            in the same folder. When a thumbnail image is selected in the file list, additional controls
            for the image insertion appear - if the inserted image should link to the original one and
            if the link that will be inserted will open in a new window.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ImageManagerDialogConfiguration.ImageEditorHttpHandlerUrl">
            <summary>
            Gets or sets the HttpHandlerUrl property of RadImageEditor control, which is incorporated in the ImageEditor dialog.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageManagerDialogConfiguration.EnableImageEditor">
            <summary>
            Gets or sets a value indicating whether to show the Image Editor tool in the Image Manager dialog.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ImageManagerDialogConfiguration.EnableThumbnailLinking">
            <summary>
            Gets or sets a value indicating whether to show the thumbnail linking options in the image manager properties tab.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorModule.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorModule.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorModule.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorModule.System#Web#UI#IAttributeAccessor#GetAttribute(System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorModule.System#Web#UI#IAttributeAccessor#SetAttribute(System.String,System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorModule.Attributes">
            <summary>
            Gets the custom attributes which will be serialized on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.CustomDictionarySuffix">
            <summary>Gets or sets the suffix for the custom dictionary files.</summary>
            <value>The default is <b>-Custom</b></value>
            <remarks>
            The filenames are formed with the following scheme: Language + CustomDictionarySuffix +
            ".txt". Different suffixes can be used to create different custom dictionaries for
            different users.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.DictionaryPath">
            <summary>Gets or sets the path for the dictionary files.</summary>
            <value>The default is <strong>~/App_Data/Spell/</strong></value>
            <remarks>
            This is the path that contains the TDF files, and the custom dictionary TXT
            files.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.EditDistance">
            <summary>
            Gets or sets a the edit distance. If you increase the value, the checking speed
            decreases but more suggestions are presented. Applicable only in EditDistance mode.
            </summary>
            <value>The default is <b>1</b></value>
            <remarks>
                This property takes effect only if the
                <see cref="P:Telerik.Web.UI.Editor.SpellCheckSettings.SpellCheckProvider">SpellCheckProvider</see> property is set to
                <strong>EditDistanceProvider</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.AllowAddCustom">
            <summary>Gets or sets the value indicating whether the spell will allow adding custom words.</summary>
            <value>The default is <b>true</b></value>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.DictionaryLanguage">
            <summary>
            Gets or sets the spellcheck language if different than the Language property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.FragmentIgnoreOptions">
            <summary>
            Configures the spellchecker engine, so that it knows whether to skip URL's, email
            addresses, and filenames and not flag them as erros.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.SpellCheckProviderTypeName">
            <summary>
            Specifies the type name for a custom spell check provider.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.SpellCheckProvider">
            <summary>
            Specifies the spellchecking algorithm that will be used.
            </summary>
            <value>
            The default is <b>TelerikProvider</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.WordIgnoreOptions">
            <summary>
            Gets or sets the value used to configure the spellchecker engine to ignore words containing: UPPERCASE, some 
            CaPitaL letters, numbers; or to ignore repeated words (very very)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.AjaxUrl">
            <summary>
            Gets or sets the URL, to which the spellchecker engine AJAX call will be made. Check the help for more information.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.SpellCheckSettings.CustomDictionarySourceTypeName">
            <summary>
            Gets or sets the type for the spell custom dictionary provider.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.EditorSpinBox.VisibleInput">
            <summary>
            This property gets or sets a value, indicating whether to show the input box of the spin box element
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ToolsFileLoader">
            <summary>
            Parses the ToolsFileContent property of RadEditor and initializes the corresponding
            collections.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadColors(Telerik.Web.UI.EditorColorCollection)">
            <summary>
            Initializes the Colors collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadContextMenus(Telerik.Web.UI.EditorContextMenuCollection)">
            <summary>
            Initializes the ContextMenus collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadCssClasses(Telerik.Web.UI.EditorCssClassCollection)">
            <summary>
            Initializes the CssClasses collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadCssFiles(Telerik.Web.UI.EditorCssFileCollection)">
            <summary>
            Initializes the CssFiles collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadFontNames(Telerik.Web.UI.EditorFontCollection)">
            <summary>
            Initializes the Links collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadFontSizes(Telerik.Web.UI.EditorFontSizeCollection)">
            <summary>
            Initializes the Links collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadLanguages(Telerik.Web.UI.SpellCheckerLanguageCollection)">
            <summary>
            Initializes the Languages collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadLinks(Telerik.Web.UI.EditorLinkCollection)">
            <summary>
            Initializes the Links collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadModules(Telerik.Web.UI.EditorModuleCollection)">
            <summary>
            Initializes the Modules collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadParagraphs(Telerik.Web.UI.EditorParagraphCollection)">
            <summary>
            Initializes the Paragraphs collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadRealFontSizes(Telerik.Web.UI.EditorRealFontSizeCollection)">
            <summary>
            Initializes the Links collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadSnippets(Telerik.Web.UI.EditorSnippetCollection)">
            <summary>
            Initializes the Snippets collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadSymbols(Telerik.Web.UI.EditorSymbolCollection)">
            <summary>
            Initializes the Symbols collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ToolsFileLoader.LoadTools(Telerik.Web.UI.EditorToolGroupCollection)">
            <summary>
            Initializes the Tools collection from the ToolsFileContent property of RadEditor.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridBoolColumnEditor">
            <summary>This is a base class for all column editors for GridCheckBoxColumn.</summary>
            <remarks>It defines the base properties for controls that can edit boolean values.</remarks>
        </member>
        <member name="T:Telerik.Web.UI.IGridColumnEditor">
            <summary>
            Interface that describes the baseic column editor functionality, needed for a
            class that should be responsible for editing of a content of a cell in a
            <see cref="T:Telerik.Web.UI.GridEditableItem"/> 
            </summary>
            <remarks>
            Implement column editor to provide extended editing functionality in RadGrid. The column-editor inheritors should provide the methods for
            creating the column editor control inside the container (generally a grid TableCell). For example the default column editor for GridBoundColumn
            creates a TextBox control and adds it to the corresponding GridTableCell when the InstantiateInControl method is called.
            To inherit the base implementation of a column editor control in RadGrid you may consider deriving from <see cref="T:Telerik.Web.UI.GridColumnEditorBase"/> instead implementing the IColumnEditor interface.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.IGridColumnEditor.InitializeInControl(System.Web.UI.Control)">
            <summary>
            Implement this member to add control in the given container. 
            After the call to this method the ContainerControl property should return the instance of containerControl parameter passed to this function.
            </summary>
            <param name="containerControl"></param>
        </member>
        <member name="M:Telerik.Web.UI.IGridColumnEditor.InitializeFromControl(System.Web.UI.Control)">
            <summary>
            The editor should recreate its state and input controls from the Container.
            </summary>
            <param name="containerControl">control (generally a TableCell) that contains the input controls, previously instantiated within the InitializeInControl method call</param>
        </member>
        <member name="P:Telerik.Web.UI.IGridColumnEditor.ContainerControl">
            <summary>
            Gets the instance of the Container control (generally a TableCell), after the last call of InstantiateInControl method
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridColumnEditor.IsInitialized">
            <summary>
            Get value if the editor has been initialized after an InitializeInControl or InitializeFromControl method call
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridColumnEditor.IsInEditMode">
            <summary>
            Get a value indicating whether the current row/column editor is in edit mode.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnEditorBase.CopySettingsFrom(Telerik.Web.UI.IGridColumnEditor)">
            <summary>
            Copy setting from given column editor
            </summary>
            <param name="editor"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnEditorBase.CreateControls">
            <summary>
            Create the input/edit controls belonging to the editor and prepare for AddControlsToContainer call.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnEditorBase.AddControlsToContainer">
            <summary>
            Implement this member to create the edit controls in the grid cell.
            This method is called from each column's InitializeCell method, when a <see cref="T:Telerik.Web.UI.GridItem"/> initializes its cells.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnEditorBase.LoadControlsFromContainer">
            <summary>
            This method should recrteate the state of the column editor (edit controls, etc) from the container.
            This method is called when <see cref="M:Telerik.Web.UI.GridTableView.ExtractValuesFromItem(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)"/> method is called, or when
            <see cref="M:Telerik.Web.UI.GridEditManager.GetColumnEditor(System.String)">GridEditableItem.EditManager.GetColumnEditor</see> is called.
            </summary>
            <remarks>
            This method is should prepare the column editor to extract values from the edit controls residign in a TableCell of the grid.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridBoolColumnEditor.Value">
            <summary>
            Gets or sets the value for each cell in a
            <strong>GridCheckBoxColumn</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumnEditor.CheckBoxControl">
            <summary>
            Provides a reference to the control in the corresponding grid cell of the current
            <strong>GridCheckBoxColumn</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumnEditor.CheckBoxStyle">
            <summary>
            Gets or sets the style defining the appearance of the corresponding
            check-box.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumnEditor.IsInitialized">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumnEditor.Value">
            <summary>
            Gets or sets the value for each cell in a
            <strong>GridCheckBoxColumn</strong>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCreateColumnEditorEventHandler">
            <summary>
            Summary description for GridCreateColumnEditorEvent.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDropDownColumnEditor">
            <summary>
            Summary description for GridDropDownColumnEditor.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTextColumnEditor">
            <summary>
            Base class that intruduces the editor of GridBoundColumn. THis can be an editor that creates a simple TextBox control, ot RichTexst editors, that has a single string property Text.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTextBoxColumnEditor">
            <summary>
            Class tha implements data editing of a GridBoundColumn with a single TextBox control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTextBoxColumnEditor.TextBoxControl">
            <summary>
            Gets The text box instance created of extracted from a cell after calls to AddControlsToContainer or LoadControlsFromContainer methods.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTextBoxColumnEditor.TextBoxStyle">
            <summary>
            Gets the instace of the Style that would be applied to the TextBox control, when initializing in a TableCell.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridBoundColumn">
            <summary>
            A column type for the RadGrid control that is bound to a field in a data
            source.
            </summary>
            <seealso cref="!:http://demos.telerik.com/ASPNET/Prometheus/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <remarks>
            	<para>The default data binding (when <strong>AutoGenerateColumns</strong> property
                is set to true) generates <strong>GridBoundColumn</strong> type of columns. It
                displays each item from the DataSource field as text. This column is
                <a href="http://www.telerik.com/help/aspnet-ajax/grdeditforms.html">editable</a> (implements the
                <a href="http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.grideditablecolumn.html">IGridEditableColumn</a>
                interface) and provides by default <strong>GridTextColumnEditor</strong>, used for
                editing the text in each item.</para>
            	<para><strong>GridBoundColumn</strong> has three similar and yet different
                properties controlling its visibility and rendering in a browser in regular and in
                edit mode:</para>
            	<list type="bullet">
            		<item><strong>Display</strong> - concerns only the appearance of the column in
                    browser mode, client-side. The column will be rendered in the browser but all
                    the cells will be styled with <em>display: none</em>. The column editor will be
                    visible in edit mode.</item>
            		<item><strong>Visible</strong> - will stop the column cells from rendering in
                    browser mode. The column will be visible in edit mode.</item>
            		<item>
            			<strong>ReadOnly</strong> - the column will be displayed according to the
                        settings of previous properties in browser mode but will not appear in the
                        edit-form.<br/>
            			<div>
            				<list type="table">
            					<item>
            						<description>None of these properties can prevent you from
                                    accessing the column cells' content server-side using the
                                    <strong>UniqueName</strong> of the column.</description>
            					</item>
            				</list>
            			</div>
            		</item>
            	</list>
            </remarks>
            <example>
            	<pre>
            &lt;telerik:GridBoundColumn FooterText="BoundColumn footer" UniqueName="CustomerID" SortExpression="CustomerID"<br/>HeaderText="Bound&lt;br/&gt;Column" DataField="CustomerID"&gt;<br/>&lt;/telerik:GridBoundColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid Manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid Manual">Using columns</seealso>
        </member>
        <member name="T:Telerik.Web.UI.GridEditableColumn">
            <summary>
            All columns in RadGrid that have editing capabilities derive from GridEditableColumn.
            This class implements the base functionality for editing, using column editors etc.
            </summary>
            <remarks>
            Provides IGridEditableColumn interface, which RadGrid uses to operate with the
            state of all the editable columns.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.IGridEditableColumn">
            <summary>
            Interface that RadGrid uses to determine the editable columns, their current state etc.
            </summary>
            <example>
            	<code lang="CS" title="Update data with editable columns">
            protected void RadGrid1_UpdateCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)
                    {        
                            GridEditableItem editedItem = e.Item as GridEditableItem;
                            GridEditManager editMan = editedItem.EditManager;
             
                            foreach( GridColumn column in e.Item.OwnerTableView.RenderColumns )
                            {
                                if ( column is IGridEditableColumn )
                                {
                                    IGridEditableColumn editableCol = (column as IGridEditableColumn);
                                    if ( editableCol.IsEditable )
                                    {
                                        IGridColumnEditor editor = editMan.GetColumnEditor( editableCol );
             
                                        string editorType = editor.ToString();
                                        string editorText = "unknown";
                                        object editorValue = null;
             
                                        if ( editor is GridTextColumnEditor )
                                        {
                                            editorText = (editor as GridTextColumnEditor).Text;
                                            editorValue = (editor as GridTextColumnEditor).Text;
                                        }
             
                                        if ( editor is GridBoolColumnEditor )
                                        {
                                            editorText = (editor as GridBoolColumnEditor).Value.ToString();
                                            editorValue = (editor as GridBoolColumnEditor).Value;
                                        }
             
                                        if ( editor is GridDropDownColumnEditor )
                                        {
                                            editorText = (editor as GridDropDownColumnEditor).SelectedText + "; " +
                                                (editor as GridDropDownColumnEditor).SelectedValue;
                                            editorValue = (editor as GridDropDownColumnEditor).SelectedValue;
                                        }
             
                                        try
                                        {
                                            DataRow[] changedRows = this.EmployeesData.Tables["Employees"].Select( "EmployeeID = " + editedItem.OwnerTableView.DataKeyValues[editedItem.ItemIndex]["EmployeeID"] );
                                            changedRows[0][column.UniqueName] = editorValue;
                                            this.EmployeesData.Tables["Employees"].AcceptChanges();
                                        }
                                        catch(Exception ex)
                                        {
                                            RadGrid1.Controls.Add(new LiteralControl ("&lt;strong&gt;Unable to set value of column '" + column.UniqueName + "'&lt;/strong&gt; - " + ex.Message));
                                            e.Canceled = true;
                                            break;
                                        }
                                    }
                                }
                            }
                    }
                </code>
            	<code lang="VB" title="Update data with editable columns">
            Private Sub RadGrid1_UpdateCommand(ByVal source As System.Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.UpdateCommand
             
                        Dim editedItem As GridEditableItem = CType(e.Item, GridEditableItem)
                        Dim editMan As GridEditManager = editedItem.EditManager
             
                        Dim column As GridColumn
             
                        For Each column In e.Item.OwnerTableView.Columns
                            If Typeof column Is IGridEditableColumn Then
                                Dim editableCol As IGridEditableColumn = CType(column, IGridEditableColumn)
                                If (editableCol.IsEditable) Then
                                    Dim editor As IGridColumnEditor = editMan.GetColumnEditor(editableCol)
             
                                    Dim editorType As String = CType(editor, Object).ToString()
                                    Dim editorText As String = "unknown"
                                    Dim editorValue As Object = Nothing
             
                                    If (Typeof editor Is GridTextColumnEditor) Then
                                        editorText = CType(editor, GridTextColumnEditor).Text
                                        editorValue = CType(editor, GridTextColumnEditor).Text
                                    End If
             
                                    If (Typeof editor Is GridBoolColumnEditor) Then
                                        editorText = CType(editor, GridBoolColumnEditor).Value.ToString()
                                        editorValue = CType(editor, GridBoolColumnEditor).Value
                                    End If
             
                                    If (Typeof editor Is GridDropDownColumnEditor) Then
                                        editorText = CType(editor, GridDropDownColumnEditor).SelectedText &amp; "; " &amp; CType(editor, GridDropDownColumnEditor).SelectedValue
                                        editorValue = CType(editor, GridDropDownColumnEditor).SelectedValue
                                    End If
             
                                    Try
                                        Dim changedRows As DataRow() = Me.EmployeesData.Tables("Employees").Select("EmployeeID = " &amp; editedItem.OwnerTableView.DataKeyValues(editedItem.ItemIndex)("EmployeeID"))
                                        changedRows(0)(column.UniqueName) = editorValue
                                        Me.EmployeesData.Tables("Employees").AcceptChanges()
                                    Catch ex As Exception
                                        RadGrid1.Controls.Add(New LiteralControl("&lt;strong&gt;Unable to set value of column '" &amp; column.UniqueName &amp; "'&lt;/strong&gt; - " + ex.Message))
                                        e.Canceled = True
                                    End Try
             
                                End If
                            End If
                        Next
                    End Sub
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/EditModes/DefaultCS.aspx" cat="RadGrid ">Using column editors</seealso>
        </member>
        <member name="M:Telerik.Web.UI.IGridEditableColumn.ShouldExtractValues(Telerik.Web.UI.GridEditableItem)">
            <summary>
            Get value based on the current IsEditable state, item edited state and ForceExtractValue setting.
            </summary>
            <param name="item">item to check to extract values from</param>
        </member>
        <member name="M:Telerik.Web.UI.IGridEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)">
            <summary>
            Extracts the values from the editedItem and fills the names/values pairs for each data-field edited by the column in the newValues dictionary.
            </summary>
            <param name="newValues">dictionary to fill. This param should not be null (Nothing in VB.NET)</param>
            <param name="editableItem">the GridEditableItem to extract values from</param>
        </member>
        <member name="P:Telerik.Web.UI.IGridEditableColumn.IsEditable">
            <summary>
            Get whether a column is currently read-only
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridEditableColumn.ColumnEditor">
            <summary>
            Gets the column editor instance for this column
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridEditableColumn.Column">
            <summary>
            Gets the GridColumn instance implementing this interface
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridEditableColumn.ForceExtractValue">
            <summary>
            Force RadGrid to extract values from EditableColumns that are ReadOnly (or IsEditable is false).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)">
            <summary>
            Extracts the values from the editedItem and fills the names/values pairs for each data-field edited by the column in the newValues dictionary.
            </summary>
            <param name="newValues">dictionary to fill. This param should not be null (Nothing in VB.NET)</param>
            <param name="editableItem">the GridEditableItem to extract values from</param>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableColumn.ShouldExtractValues(Telerik.Web.UI.GridEditableItem)">
            <summary>
            Get value based on the current IsEditable state, item edited state and ForceExtractValue setting.
            </summary>
            <param name="item">item to check to extract values from</param>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableColumn.CurrentColumnEditor">
            <summary>
            Get the current colum editor. If the column editor is not assigned at the moment the column will search for the ColumnEditorID on the page or should
            create its default column editor
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableColumn.ConvertEmptyStringToNull">
            <summary>
            Convert the emty string to null when extracting values for inserting, updating, deleting
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableColumn.DefaultInsertValue">
            <summary>
            Gets or sets a default value for the column when the row is in Insert mode
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableColumn.ReadOnly">
            <summary>
            Gets or sets the readonly status of the column. The column will be displayed in
            browser mode (unless its <strong>Visible</strong> property is <strong>false</strong>)
            but will not appear in the edit-form.
            </summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether a column is
            ReadOnly.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableColumn.ForceExtractValue">
            <summary>
            Force RadGrid to extract values from EditableColumns that are ReadOnly (or IsEditable is false).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridBoundColumn.Initialize">
            <summary>Resets the <strong>GridBoundColumn</strong> to its initial state.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridBoundColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,Telerik.Web.UI.GridItem)">
            <summary>
            Resets the specified cell in the <strong>GridBoundColumn</strong> to its initial
            state.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.DataField">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>GridBoundColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.Aggregate">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>GridBoundColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.HtmlEncode">
            <summary>
            Sets or gets whether cell content must be encoded. Default value is
            <em>false</em>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.EmptyDataText">
            <summary>
            Sets or gets default text when column is empty. Default value is
            "&amp;nbsp;"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.MaxLength">
            <summary>
            Gets or Sets an integer, specifying the maximum number of characters, which will
            be accepted in the edit textbox for the field, when in edit mode.
            </summary>
            <value>
            An <strong><em>integer</em></strong>, specifying the maximum number of
            characters, which the item will accept when in edit mode.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.DataFormatString">
            <remarks>
            	<div id="ctl00_LibFrame_MainContent_ctl22">
            		<para>Use the <b>DataFormatString</b> property to provide a custom format for the items
            in the column.</para>
            		<para>The data format string consists of two parts, separated by a colon, in the form {
            <span class="parameter">A</span> : <span class="parameter">Bxx</span> }.<br/>
            For example, the formatting string {0:C2} displays a currency formatted number with two
            decimal places.</para>
            		<para><strong>Note:</strong> The entire string must be enclosed in braces to indicate
            that it is a format string and not a literal string. Any text outside the braces is
            displayed as literal text.</para>
            		<para>The value before the colon (<span class="parameter">A</span> in the general
            example) specifies the parameter index in a zero-based list of parameters.</para>
            		<div class="alert">
            			<para><strong>Note:</strong> This value can only be set to 0 because there is only one
            value in each cell.</para></div>
            		<para>The value before the colon (<span class="parameter">A</span> in the general
            example) specifies the parameter index in a zero-based list of parameters.</para>
            		<para>The character after the colon (<span class="parameter">B</span> in the general
            example) specifies the format to display the value in. The following table lists the
            common formats.</para>
            		<div class="labelheading">
            			<div class="tableSection">
            				<list type="table">
            					<listheader>
            						<term>
            							<para>Format character</para></term>
            						<description>
            							<para>Description</para></description></listheader>
            					<item>
            						<term>
            							<para><b>C</b></para></term>
            						<description>
            							<para>Displays numeric values in currency format.</para></description></item>
            					<item>
            						<term>
            							<para><b>D</b></para></term>
            						<description>
            							<para>Displays numeric values in decimal format.</para></description></item>
            					<item>
            						<term>
            							<para><b>E</b></para></term>
            						<description>
            							<para>Displays numeric values in scientific (exponential)
            format.</para></description></item>
            					<item>
            						<term>
            							<para><b>F</b></para></term>
            						<description>
            							<para>Displays numeric values in fixed format.</para></description></item>
            					<item>
            						<term>
            							<para><b>G</b></para></term>
            						<description>
            							<para>Displays numeric values in general format.</para></description></item>
            					<item>
            						<term>
            							<para><b>N</b></para></term>
            						<description>
            							<para>Displays numeric values in number format.</para></description></item>
            					<item>
            						<term>
            							<para><b>X</b></para></term>
            						<description>
            							<para>Displays numeric values in hexadecimal
            format.</para></description></item></list></div>
            			<div class="tableSection">
            				<para><strong>Note:</strong> The format character is not case-sensitive, except for
            <b>X</b>, which displays the hexadecimal characters in the case specified.</para></div>
            			<div class="alert">The value after the format character
            (<span class="parameter">xx</span> in the general example) specifies the number of
            significant digits or decimal places to display.</div>
            			<para>For more information on formatting strings, see
            <a href="http://msdn2.microsoft.com/en-us/library/26etazsy(VS.80).aspx">Formatting
            Overview</a> (external link to MSDN library).</para></div></div>
            </remarks>
            <summary>
            Gets or sets the string that specifies the display format for items in the
            column.
            </summary>
            <value>
            A <strong><em>string</em></strong> that specifies the display format for items in
            the column
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.AllowFiltering">
            <summary>Gets or sets whether the column data can be filtered.</summary>
            <value>A boolean value, indicating whether the column data can be filtered.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBoundColumn.IsEditable">
            <summary>
            Gets a boolean value, indicating whether the column is editable. A ReadOnly
            column will return a false value for this property. The property is readOnly.
            </summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column is
            editable
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridButtonColumnType">
            <summary>Defines what button will be rendered in a GridButtonColumn</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridButtonColumnType.LinkButton">
            <summary>Renders a standard hyperlink button.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridButtonColumnType.PushButton">
            <summary>Renders a standard button.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridButtonColumnType.ImageButton">
            <summary>Renders an image that acts like a button.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridConfirmDialogType">
            <summary>Defines what kind of confirm dialog will be used in a GridButtonColumn</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridConfirmDialogType.Classic">
            <summary>Standard browser confirm dialog.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridConfirmDialogType.RadWindow">
            <summary>RadWindow confirm dialog.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridButtonColumn">
            <summary><para>It displays a button for each item in the column.</para></summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <remarks>
            	<para>
                    This column renderes a button of the specified ButtonType in each corresponding
                    cell of the items of type <see cref="T:Telerik.Web.UI.GridDataItem"/> and
                    <see cref="T:Telerik.Web.UI.GridEditFormItem"/>. You can use this buttons to fire command
                    events that can be handeled in <see cref="E:Telerik.Web.UI.RadGrid.ItemCommand"/> event
                    handler. This, in combination with the
                    <a href="grdCommandReference.html">event
                    bubbling mechanism</a> in Telerik RadGrid, allows you to create a
                    column of custom button controls, such as <strong>Add</strong>,
                    <strong>Remove</strong>, <strong>Select</strong> or <strong>Edit</strong>
                    buttons.
                </para>
            	<para>The available buttons types are:
                <b>PushButton,</b><strong>LinkButton</strong> and <strong>ImageButton</strong>.
                Telerik RadGrid comes with two types of button columns:</para>
            	<list type="bullet">
            		<item><strong>Select</strong> - when a button in this column is pressed, it
                    will select the whole row. The <strong>Select</strong> column below uses a
                    <strong>PushButton</strong>.</item>
            		<item><strong>Remove selection</strong> - when a button in this column is
                    pressed, it will delete the row. The <strong>Remove selection</strong> column
                    below uses a <strong>LinkButton</strong>.</item>
            	</list>
            </remarks>
            <example>
            	<pre>
                &lt;radG:GridButtonColumn FooterText="PushButtonColumn&lt;br/&gt;footer" DataTextFormatString="Select {0}"<br/>        ButtonType="PushButton" UniqueName="column" HeaderText="PushButton&lt;br/&gt;Column"   <br/>        CommandName="Select" DataTextField="CustomerID"&gt;<br/>    &lt;/radG:GridButtonColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid Manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid Manual">Using columns</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridButtonColumn.#ctor">
            <summary>Constructs a new <strong>GridButtonColumn</strong> object.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridButtonColumn.Initialize">
            <summary>
            	<para>The <b>Initialize</b> method is inherited by a derived
            <strong>GridButtonColumn</strong> class. Is is used to reset a column of the derived
            type.</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridButtonColumn.InitializeCell(System.Web.UI.WebControls.TableCell,System.Int32,Telerik.Web.UI.GridItem)">
            <summary>
            	<para>After a call to this method the column should add the corresponding button into
            the cell given, regarding the <strong>inItem</strong> type and column index.</para>
            	<para><strong>Note:</strong> This method is called within RadGrid and is not intended
            to be used directly from your code.</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridButtonColumn.Clone">
            <summary>Returns a copy of the GridButtonColumn.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmTitle">
            <summary>
            Gets or sets the title that will be shown on the RadWindow confirmation dialog when a button
            in this column is clicked. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ButtonType">
            <summary>
            Gets or sets a value indicating the type of the button that will be rendered. The
            type should be one of the specified by the <see cref="T:Telerik.Web.UI.GridButtonColumnType"/>
            enumeration.
            </summary>
            <remarks>
            	<list type="table">
            		<item>
            			<term><strong>LinkButton</strong></term>
            			<description>Renders a standard hyperlink button.</description></item>
            		<item>
            			<term><strong>PushButton</strong></term>
            			<description>Renders a standard button.</description></item>
            		<item>
            			<term><strong>ImageButton</strong></term>
            			<description>Renders an image that acts like a
            button.</description></item></list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ButtonCssClass">
            <summary>
            Gets or sets the CssClass of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmDialogWidth">
            <summary>
            Gets or sets the width of the Confirm Dialog (if it is a RadWindow)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmDialogHeight">
            <summary>
            Gets or sets the height of the Confirm Dialog (if it is a RadWindow)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.CommandName">
            <summary>
            Gets or sets a value defining the name of the command that will be fired when a
            button in this column is clicked.
            </summary>
            <remarks>
            	<table style="BORDER-COLLAPSE: collapse" cols="1" width="80%" border="1">
            		<tbody>
            			<tr>
            				<td align="left" width="35%" bgcolor="#CCFF00" colspan="2">
            					<para align="left">Fired By controls within <strong>DataItems</strong> - showing and
            editing data</para></td></tr>
            			<tr>
            				<td align="left" width="35%"><strong>CancelCommandName</strong></td>
            				<td>Represents the Cancel command name. Fires <strong>RadGrid.CancelCommand</strong>
            event and sets <strong>Item.Edit</strong> to <strong>false</strong> for the parent
            Item.</td></tr>
            			<tr>
            				<td align="left" width="35%"><strong>DeleteCommandName</strong></td>
            				<td>Represents the Delete command name. Fires <strong>RadGrid.DeleteCommand</strong>
            event. Under .Net 2.0 performs automatic delete operation and then sets
            <strong>Item.Edit</strong> to <strong>false</strong>.</td></tr>
            			<tr>
            				<td align="left" width="35%"><strong>UpdateCommandName</strong></td>
            				<td>Represents the Update command name. Fires <strong>RadGrid.UpdateCommand</strong>
            event. Under .Net 2.0 performs automatic update operation and then sets
            <strong>Item.Edit</strong> to <strong>false</strong>.</td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>EditCommandName</strong></para></td>
            				<td>Represents the Edit command name. Sets <strong>Item.Edit</strong> to
            <strong>true</strong>.</td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>SelectCommandName</strong></para></td>
            				<td>Represents the Select command name. Sets <strong>Item.Selected</strong> to
            <strong>true</strong>.</td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>DeselectCommandName</strong></para></td>
            				<td>Represents the Deselect command name. <strong>Sets Item.Selected</strong> to
            false.</td></tr>
            			<tr>
            				<td align="left" bgcolor="#CCFF00" colspan="2">
            					<para align="left">Can be fired by controls within any Item</para></td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>InitInsertCommandName</strong></para></td>
            				<td>By default grid renders an image button in the <strong>CommandItem</strong>. Opens
            the insert item.<br/></td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>PerformInsertCommandName</strong></para></td>
            				<td>Fires <strong>RadGrid.InsertCommand</strong> event. Under .Net 2.0 Perfoms
            automatic insert operation and closes the insert item.<br/></td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>RebindGridCommandName</strong></para></td>
            				<td>By default grid renders an image button in the <strong>CommandItem</strong>. Forces
            <strong>RadGrid.Rebind</strong></td></tr>
            			<tr>
            				<td align="left">
            					<para align="left"><strong>SortCommandName</strong></para></td>
            				<td>Represents the Sort command name. By default it is fired by image buttons in the
            header item when Sorting is enabled. The argument for the <strong>SortCommand</strong>
            must be the <strong>DataField</strong> name for the <strong>DataField</strong> to be
            sorted.</td></tr></tbody></table>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event along with the
            associated
            <a href="RadGridNet2~Telerik.Web.UI.GridButtonColumn~CommandName.html">CommandName</a>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.DataTextField">
            <remarks>
            	<para>Use the <strong>DataTextField</strong> property to specify the field name
                from the data source to bind to the
                <span class="179215212-08062006"><strong>Text</strong></span> property of the
                buttons in the
                <strong><span class="179215212-08062006">Grid</span>ButtonColumn</strong> object.
                Binding the column to a field instead of directly setting the <strong>Text</strong>
                property allows you to display different captions for the buttons in the
                <strong><span class="179215212-08062006">Grid</span>ButtonColumn</strong> by using
                the values in the specified field.</para>
            	<para><span class="179215212-08062006"><strong>Tip:</strong> This property is most
                often used in combination with
                <a href="RadGridNet2~Telerik.Web.UI.GridButtonColumn~DataTextFormatString.html">
                DataTextFormatString Property</a>.</span></para>
            </remarks>
            <summary>
            Gets or sets a value from the specified datasource field. This value will then be
            displayed in the <strong>GridBoundColumn</strong>.
            </summary>
            <example>
            	<div class="LanguageSpecific">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap"></td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<code lang="CS">
            [ASPX/ASCX]&lt;br/&gt;&lt;br/&gt;&lt;radg:RadGrid id=&lt;font class="string"&gt;"RadGrid1"&lt;/font&gt; runat=&lt;font class="string"&gt;"server"&lt;/font&gt;&gt;&lt;br/&gt;  &lt;MasterTableView AutoGenerateColumns=&lt;font class="string"&gt;"False"&lt;/font&gt;&gt;&lt;br/&gt;    &lt;Columns&gt;&lt;br/&gt;      &lt;radg:GridButtonColumn HeaderText=&lt;font class="string"&gt;"Customer ID"&lt;/font&gt;&lt;font color="red"&gt;DataTextField=&lt;font class="string"&gt;"CustomerID"&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;font color="red"&gt;DataTextFormatString=&lt;font class="string"&gt;"Edit Customer {0}"&lt;/font&gt;&lt;/font&gt; ButtonType=&lt;font class="string"&gt;"LinkButton"&lt;/font&gt; UniqueName=&lt;font class="string"&gt;"ButtonColumn"&lt;/font&gt;&gt;&lt;br/&gt;     &lt;/radg:GridButtonColumn&gt;
                </code>
            	<code lang="CS">
            	</code>
            	<code lang="CS">
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.DataTextFormatString">
            <remarks>
            	<para>Use the <strong>DataTextFormatString</strong> property to provide a custom
                display format for the caption of the buttons in the
                <strong>GridButtonColumn</strong>.</para>
            	<para><span class="179215212-08062006"><strong>Note</strong>:</span> The entire
                string must be enclosed in braces to indicate that it is a format string and not a
                literal string. Any text outside the braces is displayed as literal text.</para>
            </remarks>
            <example>
            	<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            		<tbody>
            			<tr>
            				<td nowrap="nowrap"></td>
            			</tr>
            		</tbody>
            	</table>
            	<code lang="CS">
            [ASPX/ASCX]&lt;br/&gt;&lt;br/&gt;&lt;radg:RadGrid id=&lt;font color="black"&gt;&lt;font class="string"&gt;"RadGrid1"&lt;/font&gt; runat=&lt;font class="string"&gt;"server"&lt;/font&gt;&gt;&lt;br/&gt;  &lt;MasterTableView AutoGenerateColumns=&lt;font class="string"&gt;"False"&lt;/font&gt;&gt;&lt;br/&gt;    &lt;Columns&gt;&lt;br/&gt;      &lt;radg:GridButtonColumn HeaderText=&lt;font class="string"&gt;"Customer ID"&lt;/font&gt;&lt;/font&gt;&lt;font color="red"&gt;DataTextField=&lt;font class="string"&gt;"CustomerID"&lt;/font&gt;&lt;br/&gt;DataTextFormatString=&lt;font class="string"&gt;"Edit Customer {0}"&lt;/font&gt;&lt;/font&gt; ButtonType=&lt;font class="string" color="black"&gt;"LinkButton"&lt;/font&gt; UniqueName=&lt;font color="black"&gt;&lt;font class="string"&gt;"ButtonColumn"&lt;/font&gt;&gt;&lt;br/&gt;     &lt;/radg:GridButtonColumn&gt;&lt;/font&gt;
                </code>
            </example>
            <summary>
            Gets or sets the string that specifies the display format for the caption in each
            button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.Text">
            <summary>Gets or sets a value indicating the text that will be shown for a button.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ImageUrl">
            <summary>
            Gets or sets a value indicating the URL for the image that will be used in a
            Image button. <see cref="P:Telerik.Web.UI.GridButtonColumn.ButtonType"/> should be set to
            <strong>ImageButton</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmText">
            <summary>
            Gets or sets the text that will be shown on the confirmation dialog when a button
            in this column is clicked. The prompt is automatically enabled when this property is
            set.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmTextFormatString">
            <summary>
            Gets or sets a string, specifying the FormatString of the ConfirmText.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the FormatString of the
            ConfirmText.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ConfirmTextFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will be applied to the formatting specified in the ConfirmTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which will be applied to the formatting specified in the ConfirmTextFormatString property.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.Groupable">
            <summary>
            Gets or sets a value indicating whether this column can be used for grouping. If
            set to false the column header cannot be dragged to the
            <see cref="P:Telerik.Web.UI.RadGrid.GroupPanel"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.IsEditable">
            <summary>Gets the status of <see cref="P:Telerik.Web.UI.GridButtonColumn.ShowInEditForm"/> property.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridButtonColumn.ShowInEditForm">
            <summary>
            	<para>
                    If the corresponding <see cref="T:Telerik.Web.UI.GridTableView"/> is in edit mode
                    <see cref="F:Telerik.Web.UI.GridEditMode.InPlace"/> specifies whether this column will
                    render an Enabled=true button control, when the corresponding item is edit
                    mode.
                </para>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCheckBoxColumn">
            <summary>
            Displays a <b>CheckBox</b> control for each item in the column. This allows you
            to edit for example <strong>Boolean</strong> field(s) from data table(s).
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <remarks>
            This column is editable (implements the <strong>IGridEditableColumn</strong>
            interface) and provides by default <strong>GridBoolColumnEditor</strong>, used for
            editing the text in each item. You can persist the checked state of a checkbox, if you
            use it within <strong>GridTemplateColumn</strong>
            (<a href="gridPersistCheckBoxStateInGridTemplateColumnOnRebind.html">
            see here</a>).
            </remarks>
            <example>
            	<pre>
                &lt;radG:GridCheckBoxColumn FooterText="CheckBoxColumn footer" UniqueName="Bool" HeaderText="CheckBox&lt;br/&gt;Column"<br/>        DataField="Bool"&gt;<br/>    &lt;/radG:GridCheckBoxColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid Manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid Manual">Using columns</seealso>
            <seealso cref="!:grdColumnTypes.html#Similarities_Differences_Checkbox" cat="RadGrid Manual">Similarities/Differences between GridCheckBoxColumn and GridTemplateColumn with
            checkbox</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumn.DataField">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
                <strong>column</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumn.AllowFiltering">
            <summary>Gets or sets whether the column data can be filtered.</summary>
            <value>A boolean value, indicating whether the column data can be filtered.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridCheckBoxColumn.IsEditable">
            <summary>
            Gets a boolean value, indicating whether the column is editable. A ReadOnly
            column will return a false value for this property. The property is readOnly.
            </summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column is
            editable.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridClientDeleteColumn">
            <summary>
            A special type of GridButtonColumn, including a delete buttons in each row. It
            provides the functionality of erasing records client-side, without making a round trip
            to the server.
            </summary>
            <remarks>
            	<para>This optimizes the performance and the source data is automatically refreshed
                on the subsequent post to the server. The user experience is improved because the
                delete action is done client-side and the table presentation is updated
                immediately.</para>
            	<para>Its <b>ConfirmText</b> property can be assigned like with the default
                GridButtonColumn showing a dialog which allows the user to cancel the
                action.</para>
            </remarks>
            <example>
            	<pre>
            &lt;radG:GridClientDeleteColumn ConfirmText="Are you sure you want to delete the selected row?" HeaderStyle-Width="35px" ButtonType="ImageButton" ImageUrl="~/RadControls/Grid/Skins/WebBlue/Delete.gif" /&gt;
                </pre>
            </example>
            <seealso cref="!:grdClientSideDelete.html" cat="RadGrid Manual">Client-side delete feature</seealso>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Grid column types</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Client/ClientDelete/DefaultCS.aspx" cat="Online demos">Client-side delete</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/WebGrid/DefaultCS.aspx" cat="Online demos">Web Grid</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDeleteColumn.ImageUrl">
            <summary>
            Gets or sets a value indicating the URL for the image that will be used in a
            Image button. <see cref="T:Telerik.Web.UI.ButtonType"/> should be set to
            <strong>ImageButton</strong>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridClientSelectColumn">
            <summary>
            Displays a <strong>Checkbox</strong> control for each item in the column. This
            allows you to select grid rows client-side automatically when you change the status of
            the checkbox to checked.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Column types</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Client/Selecting/DefaultCS.aspx" cat="Online demos">Client selection</seealso>
            <remarks>
            If you choose <strong>AllowMultiRowSelection = true</strong> for the grid, a
            checkbox will be displayed in the column header to toggle the checked/selected stated
            of the rows simultaneously (according to the state of that checkbox in the
            header).<br/>
            	<br/>
            To enable this feature you need to turn on the client selection of the grid
            (<strong>ClientSettings -&gt; Selecting -&gt; AllowRowSelect = true</strong>).
            </remarks>
            <example>
            	<pre>
            &lt;radG:GridClientSelectColumn UniqueName="CheckboxSelectColumn" HeaderText="CheckboxSelect column &lt;br /&gt;" /&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid manual">Using columns</seealso>
        </member>
        <member name="T:Telerik.Web.UI.GridColumnCollection">
            <summary>
            The collection of columns of RadGrid or its tables. Accessible through
            <strong>Columns</strong> property of RadGrid and GridTableView (MasterTableView)
            classes.
            </summary>
            <remarks>
            Its items are of the available Grid
            <a href="grdColumnTypes.html">column
            types</a>.
            </remarks>
            <example>
            	<code lang="CS" title="Adding columns into Columns collection of MasterTableView">
            GridBoundColumn boundColumn;
                        boundColumn = new GridBoundColumn();
                        boundColumn.DataField = "CustomerID";
                        boundColumn.HeaderText = "CustomerID";
                        RadGrid1.MasterTableView.Columns.Add(boundColumn);
             
                        boundColumn = new GridBoundColumn();
                        boundColumn.DataField = "ContactName";
                        boundColumn.HeaderText = "Contact Name";
                        RadGrid1.MasterTableView.Columns.Add(boundColumn);
             
                        RadGrid1.MasterTableView.Columns.Add( new GridExpandColumn() );
                </code>
            	<code lang="VB" title="Adding columns into Columns collection of MasterTableView">
            Dim boundColumn As GridBoundColumn
            boundColumn = New GridBoundColumn()
            boundColumn.DataField = "CustomerID"
            boundColumn.HeaderText = "CustomerID"
            RadGrid1.MasterTableView.Columns.Add(boundColumn)
             
            boundColumn = New GridBoundColumn()
            boundColumn.DataField = "ContactName"
            boundColumn.HeaderText = "Contact Name"
            RadGrid1.MasterTableView.Columns.Add(boundColumn)
             
            RadGrid1.MasterTableView.Columns.Add(New GridExpandColumn())
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.Add(Telerik.Web.UI.GridColumn)">
            <summary>Adds a column object to the GridColumnCollection.</summary>
            <param name="column">The GridColumn object to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.Contains(System.Object)">
            <summary>
            Determines whether the <b>CridColumnCollection</b> contains the value specified
            by the given <strong>GridColumn</strong> object.
            </summary>
            <returns>
            	<strong>true</strong> if the <b>GridColumn</b> is found in the
            <b>GridColumnCollection</b>; otherwise, <b>false</b>.
            </returns>
            <param name="Val">GridColumn object to locate in the <strong>GridColumnCollection</strong>.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.IndexOf(System.Object)">
            <summary>
            Determines the index of a specific column in the
            <b>GridColumnCollection</b>.
            </summary>
            <returns>
            The index of <span class="parameter">value</span> if found in the collection;
            otherwise, -1.
            </returns>
            <param name="Val">The object to locate in the <strong>GridColumnCollection</strong>.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.Insert(System.Int32,System.Object)">
            <summary>
            Inserts a column to the <strong>GridColumnCollectino</strong> at the specified
            index.
            </summary>
            <param name="Index">
            The zero-based index at which <span class="parameter">column</span> should be
            inserted.
            </param>
            <param name="Val">
            	<para>
                    The <see cref="T:Telerik.Web.UI.GridColumn"/> to insert into the collection.
                </para>
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.Remove(System.Object)">
            <summary>
            Removes the first occurrence of an object from the
            <b>GridColumnCollection</b>.
            </summary>
            <param name="Val">The object to remove from the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.IndexOf(Telerik.Web.UI.GridColumn)">
            <summary>
            Determines the index of a specific column in the
            <b>GridColumnCollection</b>.
            </summary>
            <returns>
            The index of <span class="parameter">value</span> if found in the collection;
            otherwise, -1.
            </returns>
            <param name="column">
                The <see cref="T:Telerik.Web.UI.GridColumn"/> to locate in the
                <strong>GridColumnCollection</strong>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.Remove(Telerik.Web.UI.GridColumn)">
            <summary>
            Removes the first occurrence of a column from the
            <b>GridColumnCollection</b>.
            </summary>
            <param name="column">The column to remove from the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <strong>GridColumnCollection</strong> item at the specified
            index.
            </summary>
            <param name="index"><para>The zero-based index of the item(column) to remove.</para></param>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.FindByUniqueName(System.String)">
            <summary>
            Gets the first column with UniqueName found. Throws GridException if no column is found.
            </summary>
            <param name="UniqueName"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.FindByUniqueNameSafe(System.String)">
            <summary>
            Gets the first column with UniqueName found. Returns null if no column is found.
            </summary>
            <param name="UniqueName"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.FindByDataField(System.String)">
            <summary>
            Gets the first column found bound to the DataField. Throws GridException if no column is bound to this DataField
            </summary>
            <param name="DataField"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.FindByDataFieldSafe(System.String)">
            <summary>
            Gets the first column found bound to the DataField. Returns null is no column is bound to this DataField
            </summary>
            <param name="DataField"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridColumnCollection.FindAllByDataField(System.String)">
            <summary>
            Gets all columns found bound to the DataField specified. Returns null is no column is bound to this DataField
            </summary>
            <param name="DataField"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.GridColumnCollection.Count">
            <summary>Gets the number of columns added programmatically or declaratively.</summary>
            <remarks>
                Note that this is not the actual number of column in a
                <see cref="T:Telerik.Web.UI.GridTableView"/>. See also
                <see cref="P:Telerik.Web.UI.GridTableView.RenderColumns"/>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.RenderColumns">RenderColumns Property (Telerik.Web.UI.GridTableView)</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridColumnCollection.Item(System.Int32)">
            <remarks>
            If the column/detail table structure is created after the control has been
            initialized (indicated by <strong>RadGrid.Init</strong> event ) the state of the
            columns/detail tables may have been lost. This happens when properties have been set to
            <strong>GridColumn</strong>/<strong>GridTableView</strong> instance before it has been
            added to the corresponding collection of
            <strong>Columns</strong>/<strong>DetailTables</strong>. Then a
            <strong>GridException</strong> is thrown with message: <em>"Failed accessing
            GridColumn by index. Please verify that you have specified the structure of RadGrid
            correctly."</em>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.GridDateTimeColumn">
            <summary>
            A column type for the RadGrid control that is bound to a field in a data
            source which is of type DateTime. Displays RadDatePicker, RadDateTimePicker or RadDateInput for editor and filter control.
            </summary>
            <seealso cref="!:http://demos.telerik.com/ASPNET/Prometheus/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <remarks>
            	<para>The default data binding (when <strong>AutoGenerateColumns</strong> property
                is set to true) generates <strong>GridDateTimeColumn</strong> type of column for source field which is of type DateTime. It
                displays each item from the DataSource field as text in regular mode. This column is
                <a href="http://www.telerik.com/help/aspnet-ajax/grdeditforms.html">editable</a> (implements the
                <a href="http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.grideditablecolumn.html">IGridEditableColumn</a>
                interface) and provides by default <strong>GridDateTimeColumnEditor</strong>, used for
                editing the date in each item.</para>
            	<para><strong>GridDateTimeColumn</strong> has three similar and yet different
                properties controlling its visibility and rendering in a browser in regular and in
                edit mode:</para>
            	<list type="bullet">
            		<item><strong>Display</strong> - concerns only the appearance of the column in
                    browser mode, client-side. The column will be rendered in the browser but all
                    the cells will be styled with <em>display: none</em>. The column editor will be
                    visible in edit mode.</item>
            		<item><strong>Visible</strong> - will stop the column cells from rendering in
                    browser mode. The column will be visible in edit mode.</item>
            		<item>
            			<strong>ReadOnly</strong> - the column will be displayed according to the
                        settings of previous properties in browser mode but will not appear in the
                        edit-form.<br/>
            			<div>
            				<list type="table">
            					<item>
            						<description>None of these properties can prevent you from
                                    accessing the column cells' content server-side using the
                                    <strong>UniqueName</strong> of the column.</description>
            					</item>
            				</list>
            			</div>
            		</item>
            	</list>
            </remarks>
            <example>
            	<pre>
            &lt;telerik:GridDateTimeColumn FooterText="GridDateTimeColumn footer" UniqueName="OrderDate" SortExpression="OrderDate"<br/>HeaderText="GridDateTimeColumn" DataFormatString="{0:D}" DataField="OrderDate"&gt;<br/>&lt;/telerik:GridBoundColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid Manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid Manual">Using columns</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridDateTimeColumn.EditDataFormatString">
            <summary>
            Gets or sets the data format that will be applied to the edit field 
            when a GridDataItem is edited in RadGrid
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDropDownColumn">
            <remarks>
            	<para>Here is the mechanism which Telerik RadGrid uses to present
                values for <strong>GridDropDownColumn</strong>. Consider the snippet below:</para>
            	<para class="example">&lt;radg:GridDropDownColumn<br/>
                 UniqueName="LevelID"<br/>
            		<strong>ListDataMember="Level"</strong><br/>
            		<strong>ListTextField="Description"</strong><br/>
            		<strong>ListValueField="LevelID"</strong><br/>
                 HeaderText="LevelID"<br/>
            		<strong>DataField="LevelID"</strong><br/>
                /&gt;</para>
            	<para>
            		<br/>
                    As you can see, a requirement for the proper functioning of
                    <strong>GridDropDownColumn</strong> is that <strong><u>all column
                    values</u></strong> referenced by the <see cref="P:Telerik.Web.UI.GridDropDownColumn.DataField">DataField</see>
                    attribute match the column values referenced by the
                    <see cref="P:Telerik.Web.UI.GridDropDownColumn.ListValueField">ListValueField</see> attribute.<br/>
                    If there are values in the LevelID column of the LevelID table which do not
                    have corresponding equal values in the LevelID column of the Level table, then
                    the grid will display the default first value from the Description column as it
                    will not "know" what is the correct field.
                </para>
            </remarks>
            <summary>
            Displays a <b>DropDown</b> control for each item in the column. This allows you
            to edit for example lookup field(s) from data table(s).
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid manual">Using columns</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.ListDataMember">
            <summary>
            	<para>The <strong>ListDataMember</strong> property points to the data table (part
                of the dataset used for grid data-source) which is the source for the
                <strong>GridDropDownColumn</strong> generation.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.DataSourceID">
            <summary>
            A string, specifying the ID of the datasource control, which will be used to
            populate the dropdown with data.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the ID of the datasource control,
            which will be used to populate the dropdown with data.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.ListTextField">
            <summary>
            	<para>The <strong>ListTextField</strong> points to the column in the data table
                from which the grid will extract the values for the dropdown.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.ListValueField">
            <summary>
            	<para>The <strong>ListValueField</strong> points to the column in the data table
                which will be used as a pointer to retrieve the items for the dropdown in the
                <strong>GridDropDownColumn</strong>.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.DataField">
            <summary>
            	<para>The <strong>DataField</strong> property points to the column in the grid
                data-source containing values which will be compared at a later stage with the
                values available in the column, referenced by the
                <strong>%</strong>ListValueField:ListValueField% property.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.AllowAutomaticLoadOnDemand">
            <summary>
            Gets or sets a value indicating whether automatic load-on-demand
            is enabled for the RadComboBox editor of this column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.ShowMoreResultsBox">
            <summary>
            Gets or sets a value indicating whether the RadComboBox editor
            displays a More Results box. Setting this property to true requires
            AllowAutomaticLoadOnDemand to be set to true.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.AllowVirtualScrolling">
            <summary>
            Gets or sets a value indicating whether virtual scrolling is enabled
            for RadComboBox editor. Setting this property to true requires
            AllowAutomaticLoadOnDemand to be set to true
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.ItemsPerRequest">
            <summary>
            Gets or sets the number of Items the <strong>RadComboBox</strong> editor will load per Item request.
            This property requires EnableAutomaticLoadOnDemand to be set to true.
            </summary>
            <remarks>
            Set this property to -1 to load all Items when AllowAutomaticLoadOnDemand is set to true 
            and disable Virtual Scrolling/Show More Results. The default is -1.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.EnableEmptyListItem">
            <summary>
            A Boolean value, indicating whether the dropdown column will be bound to a
            default value/text when there is no data source specified, from which to fetch the
            data.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, specifying whether the dropdown column
            accepts EmptyListItemText and EmptyListItemValue strings.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.EmptyListItemText">
            <summary>
            A string, specifying the text to be displayed in normal mode, when there is no
            Data Source specified for the column. In edit mode, this value is rendered as a
            dropdown list item. When in edit mode, and there is a valid DataSource specified for
            the control, this value is appended as the first item of the dropdown box.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the text to be displayed in
            normal/edit mode, when there is no Data Source specified for the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.EmptyListItemValue">
            <summary>
                A string value, representing the value, associated with the
                <see cref="P:Telerik.Web.UI.GridDropDownColumn.EmptyListItemText"/>.
            </summary>
            <value>
                A <strong><em>string</em></strong> value, representing the value, associated with
                the <see cref="P:Telerik.Web.UI.GridDropDownColumn.EmptyListItemText"/>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.DropDownControlType">
            <summary>
             Gets or sets the type of the dropdown control associated with the column.
            </summary>
            <value>
                Returns a value from the GridDropDownColumnControlType enumeration; default value is RadComboBox.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.IsEditable">
            <summary>
            A Boolean value, indicating whether a dropdown column is editable. If it is
            editable, it will be represented as an active dropdown box in edit mode.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether a dropdown column
            is editable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridDropDownColumn.AllowFiltering">
            <summary>
            A Boolean property, which specifies whether filtering will be enabled for the
            column.
            </summary>
            <value>
            A <strong><em>Bollean</em></strong> value, indicating whether a particular
            dropdown column can be filtered.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridForceExtractValues">
            <summary>
            Force RadGrid to extract values from EditableColumns that are ReadOnly.
            See also the <see cref="M:Telerik.Web.UI.GridTableView.ExtractValuesFromItem(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)"/> method.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridForceExtractValues.None">
            <summary>
            No values would be extracted from ReadOnly column
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridForceExtractValues.InBrowseMode">
            <summary>
            Values will be extracted only when an item is NOT in edit mode
            </summary>        
        </member>
        <member name="F:Telerik.Web.UI.GridForceExtractValues.InEditMode">
            <summary>
            Values will be extracted only when an item is in edit mode
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridForceExtractValues.Always">
            <summary>
            Values will be extracted in all cases.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEditCommandColumn">
            <summary>
            Initially only the [Edit] button is shown. When it is pressed, the [Update] and
            [Cancel] appear at its place and the cells on this row become editable.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/WebGrid/DefaultCS.aspx" cat="Online demos">Web Grid</seealso>
            <example>
            	<pre>
            &lt;radg:GridEditCommandColumn ButtonType="ImageButton" UpdateImageUrl="..\Img\Update.gif"<br/>    EditImageUrl="..\Img\Edit.gif" InsertImageUrl="..\Img\Insert.gif"<br/>    CancelImageUrl="..\Img\Cancel.gif" UniqueName="EditCommandColumn"&gt;<br/>&lt;/radg:GridEditCommandColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid manual">Using columns</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType">
            <summary>
            Gets or sets a value indicating what type of buttons will be used in the
            <strong>GridEditCommandColumn</strong> items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.CancelText">
            <summary>
            Gets or sets a string representing the text that will be used for the Cancel
            button, in the Edit/Insert form.
            </summary>
            <value>string, representing the text that will be used for the Cancel button.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.EditText">
            <value>string, representing the text that will be used for the Edit button.</value>
            <summary>
            Gets or sets a string, representing the text of the edit linkbutton, which is
            located in the GridEditCommandColumn, and which will replace the default "Edit"
            text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.UpdateText">
            <value>
            A <strong><em>string</em></strong>, representing the text that will be used for
            the Update button.
            </value>
            <summary>
            Gets or sets a string, representing the text that will be used for the Update
            button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.InsertText">
            <value>
            A <strong><em>string</em></strong>, representing the text that will be used for
            the Insert button.
            </value>
            <summary>
            Gets or sets a string, representing a text, which will be displayed instead of
            the default "Insert" text for the GridEditFormInsertItem item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.InsertImageUrl">
            <summary>
            Gets or sets the URL for the image that will be used to fire the Insert command.
            This property should be used in conjunction with <strong>ButtonType</strong> set to
            <strong>ImageButton</strong>.
            </summary>
            <value>string, representing the URL of the image that is used.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.UpdateImageUrl">
            <summary>
                Gets or sets the URL for the image that will be used to fire the Update command.
                This property should be used in conjunction with <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> set
                to <strong>ImageButton</strong>.
            </summary>
            <value>string, representing the URL of the image that is used.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.EditImageUrl">
            <value>
            A <strong><em>string</em></strong>, representing the URL of the image that is
            used.
            </value>
            <summary>
            Gets or sets the URL for the image that will be used to fire the Edit command.
            This property should be used in conjunction with <strong>ButtonType</strong> set to
            <strong>ImageButton</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.CancelImageUrl">
            <commentsfrom cref="P:Telerik.Web.UI.GridEditCommandColumn.EditImageUrl" filter="##VALUE"/>
            <summary>
            A string, representing the url path to the image that will be used instead of the
            default cancel linkbutton, in the EditForm.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the url path to the image that
            will be used instead of the default cancel linkbutton, in the EditForm.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.Groupable">
            <commentsfrom cref="P:Telerik.Web.UI.GridColumn.Groupable" filter=""/>
        </member>
        <member name="P:Telerik.Web.UI.GridEditCommandColumn.UniqueName">
            <summary>
            Gets or sets a unique name for this column. The unique name can be used to
            reference particular columns, or cells within grid rows.
            </summary>
            <value>
            	<para>A <strong><em>string</em></strong>, representing the Unique name of the
                column.</para>
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridExpandColumn">
            <summary>
            This column appears when the grid has a hierarchical structure, to facilitate the
            expand/collapse functionality. The expand column is always placed in front of all other
            grid content columns and can not be moved.
            </summary>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid Manual">Column Types</seealso>
            <seealso cref="!:grdHideExpandCollapseImagesWhenNoRecords.html" cat="RadGrid Manual">How to hide images of ExpandCollapse column when no records</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.ExpandImageUrl">
            <summary>
            Gets or sets a string, specifying the URL to the image, which will be used
            instead of the default Expand image for the GridGroupSplitterColumn (the plus
            sign).
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the URL to the image, which will
            be used instead of the default Expand image for the GridGroupSplitterColumn
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.CollapseImageUrl">
            <summary>
            Gets or sets a string, specifying the URL to the image, which will be used
            instead of the default Collapse image for the GridGroupSplitterColumn (the minus
            sign).
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the URL to the image, which will
            be used instead of the default Collapse image for the GridGroupSplitterColumn
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.ButtonType">
            <summary>
            Gets a Telerik.Web.UI.GridExpandColumnType value, indicating the type of the
            button. The button of the GridExpandColumn is by default of type SpriteButton.
            </summary>
            <value>
            A Telerik.Web.UI.GridExpandColumnType value, indicating the type of the
            button.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.UniqueName">
            <summary>
                Gets or sets a string, specifying the Unique name of the column. The default value
                is "ExpandColumn". <script type="text/javascript">
            	</script>
            	<span id="dxCrLf"></span>
            	<span id="dxCrLf"></span> function
                GridCreated()<span id="dxCrLf"></span> { <span id="dxCrLf"></span>
            	<span id="dxCrLf"></span> } <span id="dxCrLf"></span>
            	<span id="dxCrLf"></span>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the Unique name of the
            column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.Groupable">
            <summary>
            Gets a <strong><em>Boolean</em></strong> value indicating whether the
            GridGroupSplitterColumn is groupable. This value is always false.
            </summary>
            <value>
            Gets a <strong><em>Boolean</em></strong> value indicating whether the
            GridGroupSplitterColumn is groupable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.Reorderable">
            <summary>
            Gets a Boolean value, indicating whether the GridExpandColumn is reorderable.
            This value is always false, due to the specificity of the column, which should always
            be positioned first.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the
            GridExpandColumn is reorderable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.Resizable">
            <summary>
            Gets a Boolean value, indicating whether the GridExpandColumn is resizable.
            This value is always false, due to the specificity of the column, which should always
            be positioned first.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the
            GridExpandColumn is resizable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.Visible">
            <summary>
            Gets a Boolean value, indicating whether the GridExpandColumn is visible.
            This value is always false, due to the specificity of the column.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the
            GridExpandColumn is visible.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridExpandColumn.CommandName">
            <summary>
                Gets or sets a string, representing the CommandName of the GridExpandColumn. The
                command name's default value is "ExpandCollapse". It can be used to determine the
                type of command in the ItemCommand event handler. <script type="text/javascript">
            	</script>
            	<span id="dxCrLf"></span>
            	<span id="dxCrLf"></span> function
                GridCreated()<span id="dxCrLf"></span> { <span id="dxCrLf"></span>
            	<span id="dxCrLf"></span> } <span id="dxCrLf"></span>
            	<span id="dxCrLf"></span>
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the CommandName of the
            GridExpandColumn.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupSplitterColumn">
            <summary>
            This column appears when grouping is enabled, to facilitate the expand/collapse
            functionality. The group splitter column is always placed first and can not be
            moved.
            </summary>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GroupBy/OutlookStyle/DefaultCS.aspx" cat="Online demos">Grouping demo with GridGroupSplitterColumn</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupSplitterColumn.ExpandImageUrl">
            <summary>
            Gets or sets a string, specifying the URL to the image, which will be used
            instead of the default Expand image for the GridGroupSplitterColumn (the plus
            sign).
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the URL to the image, which will
            be used instead of the default Expand image for the GridGroupSplitterColumn
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupSplitterColumn.CollapseImageUrl">
            <summary>
            Gets or sets a string, specifying the URL to the image, which will be used
            instead of the default Collapse image for the GridGroupSplitterColumn (the minus
            sign).
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the URL to the image, which will
            be used instead of the default Collapse image for the GridGroupSplitterColumn
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupSplitterColumn.Groupable">
            <summary>
            Gets a <strong><em>Boolean</em></strong> value indicating whether the
            GridGroupSplitterColumn is groupable. This value is always false.
            </summary>
            <value>
            Gets a <strong><em>Boolean</em></strong> value indicating whether the
            GridGroupSplitterColumn is groupable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupSplitterColumn.CorrespondingExpression">
            <exclude/>
            <excludetoc/>
            <summary>This property is for internal usage.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridHeaderButtonType">
            <summary>
            	<para>An enumeration, used to get/set the button type of the headers of the
                columns. The default value is LinkButton. The possible values are:</para>
            	<list type="bullet">
            		<item>LinkButton</item>
            		<item>PushButton</item>
            		<item>TextButton</item>
            	</list>
            	<para>If set to a value other than LinkButton, the property is only honored when
                sorting is enabled.</para>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridHyperLinkColumn">
            <summary>
            Each row in a <strong>Hyperlink</strong> column will contain a predefined
            hyperlink. This link is not the same for the whole column and can be defined for each
            row individually.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <remarks>
            	<para>The content of the column can be bound to a field in a data source or to a
                static text. You can customize the look of the links by
                <a href="grdSkins.html#CSSClasses">using
                CSS classes</a>.</para>
            	<para>You can set multiple fields to a <strong>GridHyperlinkColumn</strong> through
                its <strong>DataNavigateUrlFields</strong> property. These fields can later be used
                when setting the <strong>DataNavigateUrlFormatString</strong> property and be part
                of a query string:</para>
            	<div class="LanguageSpecific" id="Code_VB" style="DISPLAY: block">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code inline="true">
            &lt;radG:GridHyperLinkColumn<br/>     DataNavigateUrlFields= <font color="black"><font class="string">"ProductID,OrderID"</font><br/>     DataNavigateUrlFormatString= <font class="string">"~/Details.aspx?ProductID={0}&amp;OrderID={1}"</font>&gt;<br/>&lt;/radG:GridHyperLinkColumn&gt;</font>
            							</code>
            						</pre>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            </remarks>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid manual">Using columns</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.DataNavigateUrlFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the url of the windwow/frame that the hyperlink
            will target.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which will form the url of the windwow/frame that the
            hyperlink will target.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.DataNavigateUrlFormatString">
            <summary>
            Gets or sets a string, specifying the FormatString of the DataNavigateURL.
            Essentially, the DataNavigateUrlFormatString property sets the formatting for the url
            string of the target window or frame.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the FormatString of the
            DataNavigateURL.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.DataTextField">
            <summary>
            Gets or sets a string, representing the DataField name from the data source,
            which will be used to supply the text for the hyperlink in the column. This text can
            further be customized, by using the DataTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the DataField name from the data
            source, which will be used to supply the text for the hyperlink in the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.DataTextFormatString">
            <summary>
            Gets or sets a string, specifying the format string, which will be used to format
            the text of the hyperlink, rendered in the cells of the column.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the format string, which will be
            used to format the text of the hyperlink, rendered in the cells of the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.NavigateUrl">
            <summary>
            Gets or sets a string, specifying the url, to which to navigate, when a hyperlink
            within a column is pressed. This property will be honored only if the
            DataNavigateUrlFields are not set. If either
            DataNavigateUrlFields are set, they will override the
            NavigateUrl property.
            </summary>
            <value>
            A a <strong><em>string</em></strong>, specifying the url, to which to navigate,
            when a hyperlink within a column is pressed.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.ImageUrl">
            <summary>
            Gets or sets a value specifying the ImageUrl property of the HyperLink control
            rendered in every data cell of the GridHyperLinkColumn.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.Target">
            <summary>
            	<para>Sets or gets a string, specifying the window or frame at which to target
                content. The possible values are:</para>
            	<para>_blank - the target URL will open in a new window<br/>
                _self - the target URL will open in the same frame as it was clicked<br/>
                _parent - the target URL will open in the parent frameset<br/>
                _top - the target URL will open in the full body of the window</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the window or frame at which to
            target content.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.Text">
            <summary>
            Gets or sets a string, specifying the text to be displayed by the hyperlinks in
            the column, when there is no DataTextField specified.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the text to be displayed by the
            hyperlinks in the column, when there is no DataTextField specified.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridHyperLinkColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridTemplateColumn">
            <summary>
            Displays each item in the column in accordance with a specified templates (item,
            edit item, header and footer templates). This allows you to provide custom controls in
            the column.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx" cat="Online demos">Grid column types</seealso>
            <example>
            	<pre>
            &lt;radG:GridTemplateColumn UniqueName="TemplateColumn" SortExpression="CompanyName"&gt;<br/>    &lt;FooterTemplate&gt;<br/>&lt;img src="Img/image.gif" alt="" style="vertical-align: middle" /&gt;<br/>        Template footer<br/>   
            &lt;/FooterTemplate&gt;<br/>    &lt;HeaderTemplate&gt;<br/>        
            &lt;table id="Table1" cellspacing="0" cellpadding="0" width="300" border="1"&gt;<br/>            &lt;tr&gt;<br/>&lt;td colspan="2" align="center"&gt;<br/>                    &lt;b&gt;Contact details&lt;/b&gt;&lt;/td&gt;<br/>&lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td style="width: 50%" align="center"&gt;<br/> 
            &lt;asp:LinkButton CssClass="Button" Width="140" ID="btnContName" Text="Contact name"<br/> 
            ToolTip="Sort by ContactName" CommandName='Sort' CommandArgument='ContactName'<br/>                       
            runat="server" /&gt;&lt;/td&gt;<br/>                &lt;td style="width: 50%" align="center"&gt;<br/> 
            &lt;asp:LinkButton CssClass="Button" Width="140" ID="btnContTitle" Text="Contact title"<br/>      
            ToolTip="Sort by ContactTitle" CommandName='Sort' CommandArgument='ContactTitle'<br/>      
            runat="server" /&gt;&lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>   
            &lt;/HeaderTemplate&gt;<br/>    &lt;ItemTemplate&gt;<br/>      
            &lt;table cellpadding="1" cellspacing="1" class="customTable"&gt;<br/>         
            &lt;tr&gt;<br/>                &lt;td style="width: 50%"&gt;<br/>     
            &lt;/%# Eval("ContactName") /%&gt;<br/>                &lt;/td&gt;<br/> 
            &lt;td style="width: 50%"&gt;<br/>          
            &lt;/%# Eval("ContactTitle") /%&gt;<br/>            
            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>     
            &lt;td colspan="2" align="center"&gt;<br/>                   
            &lt;a href='&lt;/%# "<a href="http://www.google.com/search?hl=en&amp;q">http://www.google.com/search?hl=en&amp;q</a>=" + DataBinder.Eval(Container.DataItem, "ContactName") + "&amp;btnG=Google+Search"/%&gt;'&gt;<br/>   
            &lt;em&gt;Search Google for<br/>                            &lt;/%# Eval("ContactName") /%&gt;<br/> 
            &lt;/em&gt;&lt;/a&gt;<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>&lt;td colspan="2" align="center"&gt;<br/>                    &lt;img src="Img/image.gif" alt="" /&gt;<br/> 
            &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    
            &lt;/ItemTemplate&gt;<br/>&lt;/radG:GridTemplateColumn&gt;
                </pre>
            </example>
            <seealso cref="!:grdColumnTypes.html" cat="RadGrid manual">Grid Column types</seealso>
            <seealso cref="!:grdDesignColumns.html" cat="RadGrid manual">Adding columns design-time</seealso>
            <seealso cref="!:grdUsingColumns.html" cat="RadGrid manual">Using columns</seealso>
            <seealso cref="!:grdCustomizeWithGridTemplateColumn.html" cat="RadGrid manual">Customizing with GridTemplateColumn</seealso>
            <seealso cref="!:gridPersistCheckBoxStateInGridTemplateColumnOnRebind.html" cat="RadGrid Manual - How-To">Persisting CheckBox control state in GridTemplateColumn on Rebind</seealso>
            <remarks>
            	<para>You can view and set templates using the Edit Templates command in grid's
                Smart Tag.</para>
            	<para>You can also create the template columns programmatically and bind the
                controls in the code-behind (see
                <a href="grdProgrammaticCreation.html">Programmatic creation of
                Telerik RadGrid</a>).</para>
            	<para><strong>Note:</strong> Unlike other grid columns, GridTemplateColumn cannot
                be set as read-only.</para>
            </remarks>
            <seealso cref="!:grdProgrammaticCreation.html" cat="RadGrid manual">Programmatic creation</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.DataField">
            <summary>
            Gets or sets a string, specifying which DataField from the data source the
            control will use to handle the automatic filtering.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying which DataField from the data
            source the control will use to handle the automatic filtering.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.Aggregate">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>GridTemplateColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.EditItemTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered in the control in edit mode.
            </summary>
            <value>A value of type ITemplate</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.InsertItemTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered in the control in insert mode.
            </summary>
            <value>A value of type ITemplate</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.FooterTemplate">
            <summary>
            Gets or sets the template, which will be rendered in the footer of the template
            column.
            </summary>
            <value>A value of type ITemplate.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.HeaderTemplate">
            <summary>
            Gets or sets the template, which will be rendered in the header of the template
            column.
            </summary>
            <value>A value of type ITemplate.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.ItemTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered in the control in normal
            (non-Edit) mode.
            </summary>
            <value>A value of type ITemplate</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.IsEditable">
            <summary>
            Gets a Boolean value, indicating whether the column is editable. If a template
            column is editable, it will render the contents of the EditItemTemplate in the edit
            form or InsertItemTemplate, if such defined, in the insert form. 
            If there are no contents in the EditItemTemplate or InsertItemTemplate, the column will not be
            editable.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column is
            editable.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTemplateColumn.InitializeTemplatesFirst">
            <summary>
            Set to false if templates should overwrite other controls in header cell (sort image, etc)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSplitGroup.GroupItemsCount">
            <summary>
            Number of items in the group
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSplitGroup.ActualItemCount">
            <summary>
            Number of items displayed on the page
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSplitGroup.Mode">
            <summary>
            if true Group is countinued from the previous page or it continues
            on the next page if value of false
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDataSetHelper">
            <summary>
            Summary description for DataSetHelper.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDefaultValueChecker">
            <summary>
            Summary description for DefaultValueChecker.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEditFormType">
            <summary>
            Type of the edit forms in RadGrid
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridEditFormType.AutoGenerated">
            <summary>
            Form is autogenerated, based on the column that each GridTableView exposes.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridEditFormType.WebUserControl">
            <summary>
            The edit form is a WebUserControl specified by <see cref="P:Telerik.Web.UI.GridEditFormSettings.UserControlName"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridEditFormType.Template">
            <summary>
            The template specified by <see cref="P:Telerik.Web.UI.GridEditFormSettings.FormTemplate"/> is used as an edit form.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEditFormSettings">
            <summary>
            Settings for the edit forms generated by a <see cref="T:Telerik.Web.UI.GridTableView"/> for each item that is in edit mode and the 
            <see cref="P:Telerik.Web.UI.GridTableView.EditMode"/> is set to <see cref="F:Telerik.Web.UI.GridEditMode.EditForms"/>.
            </summary>
            <remarks>
            Set the type of the EditForm using <see cref="P:Telerik.Web.UI.GridEditFormSettings.EditFormType"/>.
            If the type is <see cref="F:Telerik.Web.UI.GridEditFormType.AutoGenerated"/> then the form will be autogenerated based on the
            columns of the corresponding table view. Note that only the columns that are editable wil be included. Those are
            the standatrd columns that have editing capabilities - such <see cref="T:Telerik.Web.UI.GridBoundColumn"/> that has 
            <see cref="P:Telerik.Web.UI.GridEditableColumn.ReadOnly"/> set to false. All the style properties apply only to the autogenerated edit form.
            See <see cref="T:Telerik.Web.UI.GridEditFormType"/> for more details on the types of the edit forms.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.EditColumn">
            <summary>
            Set properties of the update-cancel buttons column that appears in an edit form
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.ColumnNumber">
            <summary>
            Number of vertical columns to split all edit fields on the form when it is autogenerated.
            Each GridColumn has a <see cref="P:Telerik.Web.UI.GridColumn.EditFormColumnIndex"/> to choose the column where
            the editor would appear.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.CaptionDataField">
            <summary>
            Data field to incude in form's caption
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.CaptionFormatString">
            <summary>
            Caption format string - {0} parameter must be included and would be repaced with DataField value
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.InsertCaption">
            <summary>
            Caption for the pop-up insert form
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormStyle">
            <summary>
            Style of the forms's area (rendered as a DIV elemet)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormTableStyle">
            <summary>
            Style of the forms' table element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormMainTableStyle">
            <summary>
            Style of the forms' main table element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormCaptionStyle">
            <summary>
            Style of the table row that shows the caption of the form
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormTableItemStyle">
            <summary>
            Style of the normal rows in the edit-form's table
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormTableAlternatingItemStyle">
            <summary>
            Style of the alternating rows in the edit-form's table
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormTableButtonRowStyle">
            <summary>
            Style of the footer row of the table, where the update-cancel buttons appear
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.EditFormType">
            <summary>
            Specifies the type of the edit form. See <see cref="T:Telerik.Web.UI.GridEditFormType"/> about details for 
            the possible values and their meanings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.UserControlName">
            <summary>
            Name (filename) of the <see cref="T:System.Web.UI.UserControl"/> if <see cref="P:Telerik.Web.UI.GridEditFormSettings.EditFormType"/> is of type <see cref="F:Telerik.Web.UI.GridEditFormType.WebUserControl"/>.
            </summary>
            <remarks>
            You have two options regarding the implementation of the web user control depending on the 
            desired mode of exchanging data between Telerik RadGrid and the UserControl instances.
            As the binding container of the edit form is a GridEditFormItem and UserControl is a binding container iteself too,
            in order to access data from the object currently the edit form is binding to 
            the binding-expressions used in the UserControl should be implemented in a slightly different then the traditional way.
            Here is an example of declaration of a TextBox server control that should be bound to the Region property
            of the DataItem in RadGrid:
            <code>
            <![CDATA[
            <asp:TextBox id="TextBox1" runat="server" Text='<%# DataBinder.Eval( Container, "Parent.BindingContainer.DataItem.Region") %>;' />
            ]]>
            </code>
            The container object is always the UserControl isself. That is why you should refer the parent
            object, which is actually a edit for table cell in the grid's <see cref="T:Telerik.Web.UI.GridEditFormItem"/>. Then 
            the BindingContainer would refer the binding GridEditFormItem instance.
            
            If using this kind of expression seems in some way uncorfotable, you have another option. 
            You user control should implement a property with name DataItem. The type of the propertry
            should be public and assignable from the type of the object that construct the data-source for RadGrid.
            For example if you bind to a DataSet then the DataItem can be declared as:
            c#:
            <code>
            
            private DataRowView _dataItem = null;
            
            public DataRowView DataItem
            {
            	get
            	{
            		return this._dataItem;
            	}
            	set
            	{
            		this._dataItem = value;
            	}
            }
            </code>
            
            VB.NET
            <code>
            private _dataItem As DataRowView = Nothing
            
            Public Property DataItem As DataRowView
            	Get
            		Return Me._dataItem
            	End Get
            	Set (ByVal value As DataRowView)
            		Me._dataItem = value
            	End Set
            End Property
            </code>
            
            DataItem can also be declared as of type object.
            
            Then in the usercontrol code, an expression binding the text of a TextBox control 
            to the Country property of the datasource item can be declared this way:
            <code>
            <![CDATA[
            <asp:TextBox id="TextBox1" runat="server" Text='<%# DataBinder.Eval( Container, "DataItem.Country"  ) %>'>
            </asp:TextBox>
            ]]>
            </code>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.FormTemplate">
            <summary>
            EditForm template - if EditFormType if <see cref="P:Telerik.Web.UI.GridEditFormSettings.EditFormType"/> is of type <see cref="F:Telerik.Web.UI.GridEditFormType.Template"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormSettings.PopUpSettings">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridPopUpSettings"/> class providing properties
                related to PopUp EditForm.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPopUpSettings.Height">
            <summary>
            Gets or sets a value specifying the grid height in pixels (px).
            </summary>
            <value>the default value is 300px</value>
        </member>
        <member name="P:Telerik.Web.UI.GridPopUpSettings.Width">
            <summary>
            Gets or sets a value specifying the grid height in pixels (px).
            </summary>
            <value>the default value is 400px</value>
        </member>
        <member name="P:Telerik.Web.UI.GridPopUpSettings.CloseButtonToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the
            close button of the popup edit form.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPopUpSettings.ShowCaptionInEditForm">
            <summary>
            Gets or sets a value indicating whether the caption text is shown in the edit form.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEditManager">
            <summary>
            Summary description for GridEditManager.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridBaseDataList">
            <summary>
            	<para>Serves as the abstract base class for data tables. This class provides the
            methods and properties common to all tables in
            Telerik RadGrid.</para>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.GridBaseDataList.SelectedIndexChanged">
            <summary>
            Occurs when a different item is selected in a table between posts to the
            server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.TabIndex">
            <summary>Gets or sets the tab index of the Web server control.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.CellPadding">
            <summary>
            Gets or sets the amount of space between the contents of a cell and the cell's
            border.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.CellSpacing">
            <summary>Gets or sets the amount of space between cells.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.Controls">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.GridLines">
            <summary>
            Gets or sets a value that specifies whether the border between the cells of a
            data table is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBaseDataList.HorizontalAlign">
            <summary>
            Gets or sets the horizontal alignment of a data table within its
            container.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnDataBinding">
            <summary>
            This event is fired when the grid request data using client-side data-binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnDataBindingFailed">
            <summary>
            This event is fired if request for data fails when using client-side data-binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnDataSourceResolved">
            <summary>
            This event is fired when the grid client-side data is retrieved from the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnDataBound">
            <summary>
            This event is fired when the grid client-side data-binding is finished.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnGridCreating">
            <remarks>
            	<para>This event is fired before grid creation.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term><strong>Examples</strong></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnGridCreating="GridCreating" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            					<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            GridCreating()</para>
            					<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            					<para>alert("Creting grid with ClientID: " + this.ClientID);</para>
            					<para>}</para></blockquote>
            				<para dir="ltr">&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired before grid creation.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnGridCreated">
            <remarks>
            	<para>This event is fired after the grid is created.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnGridCreated="GridCreated" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function GridCreated()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Grid with ClientID: " + this.ClientID + " was created");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired after the grid is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnGridDestroying">
            <remarks>
            	<para>This event is fired when RadGrid object is destroyed, i.e. on each
            <em>window.onunload</em></para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term><strong>Examples</strong></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnGridCreating="GridDestroying" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            GridDestroying()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Destroying grid with ClientID: " + this.ClientID);</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>
            This client-side event is fired when <strong>RadGrid</strong> object is
            destroyed, i.e. on each <em>window.onunload</em>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnMasterTableViewCreating">
            <remarks>
            	<para>This event is fired before the MasterTableView is created.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term><strong>Examples</strong></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnMasterTableViewCreating="MasterTableViewCreating" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            MasterTableViewCreating()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Creating MasterTableView");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired before the MasterTableView is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnMasterTableViewCreated">
            <remarks>
            	<para align="left">This event is fired after the MasterTableView is created.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnMasterTableViewCreated="MasterTableViewCreated" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            MasterTableViewCreated()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("MasterTableView was created");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired after the MasterTableView is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnTableCreating">
            <remarks>
            	<para>This event is fired before table creation.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnTableCreating="TableCreating" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            TableCreating()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Creating DetailTable");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired before table creation.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnTableCreated">
            <remarks>
            	<para>This event is fired after the table is created.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>RadGridTable Object</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term><strong>Examples</strong></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnTableCreated="TableCreated" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            TableCreated(tableObject)</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("DetailTable with ClientID: " + tableObject.ClientID + " was
            created");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired after the table is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnTableDestroying">
            <remarks>
            	<para>This event is fired when table object is destroyed.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGrid</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnTableDestroying="TableDestroying" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            TableDestroying()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Destroing DetailTable with ClientID: " + this.ClientID);</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired when table object is destroyed.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnColumnCreating">
            <remarks>
            	<para>This event is fired before column available at client-side creation.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGridTable</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnColumnCreating="ColumnCreating" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            ColumnCreating()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Creating column);</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>
            This client-side event is fired before column available at client-side
            creation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnColumnCreated">
            <remarks>
            	<para>This event is fired after a column available at client-side is created.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGridTable</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>RadGridTableColumn object</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term><strong>Examples</strong></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnColumnCreated="ColumnCreated" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            ColumnCreated(columnObject)</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Column with Index: " + columnObject.Index + " was created");</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>
            This client-side event is fired after a column available at client-side is
            created.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnColumnDestroying">
            <remarks>
            	<para>This event is fired when a column object is destroyed.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGridTable</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>N/A</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>No</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnColumnDestroying="ColumnDestroying" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            ColumnDestroying()</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Destroing column with Index: " + this.Index);</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired when a column object is destroyed.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnColumnResizing">
            <remarks>
            	<para>This event is fired before a column is resized.</para>
            	<list type="table">
            		<item>
            			<term>
            				<para align="left"><strong>Fired by</strong></para></term>
            			<description>RadGridTable</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Arguments</strong></para></term>
            			<description>columnIndex, columnWidth</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Can be canceled</strong></para></term>
            			<description>Yes, return <em>false</em> to cancel</description></item>
            		<item>
            			<term>
            				<para align="left"><strong>Examples</strong></para></term>
            			<description>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>ascx/aspx</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;ClientEvents
            OnColumnResizing="ColumnResizing" ...</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">
            					<strong>JavaScript</strong></para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">&lt;script&gt;</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            ColumnResizing(columnIndex, columnWidth)</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>alert("Resizng column with Index: " + columnIndex + ", width: " +
            columnWidth);</para>
            				<para>}</para>
            				<para>OR</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">function
            ColumnResizing(columnIndex, columnWidth)</para>
            				<para style="LINE-HEIGHT: normal; LETTER-SPACING: normal">{</para>
            				<para>return false; //cancel ColumnResizing event</para>
            				<para>}</para>
            				<para>&lt;/script&gt;</para></description></item></list>
            </remarks>
            <summary>This client-side event is fired before a column is resized.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnRowClick">
            FOR FUTURE VERSIONS
        </member>
        <member name="P:Telerik.Web.UI.GridClientEvents.OnRowContextMenu">
            <remarks>
            	<para><span id="ctl01_repeaterMessages_ctl01_lblMessageText">The client-side script
                for RadGrid.ClientSettings.ClientEvents.OnRowContextMenu kills any exceptions that
                occur in the event handler. This can make bugs hard to track down because it
                appears that nothing happens when actually the exception was killed before it
                becomes visible.</span></para>
            	<para><span>You can avoid this problem by putting a try/catch block around the
                event handler that sends an alert if an exception was thrown:</span></para>
            	<pre>
            RadGrid1.ClientSettings.ClientEvents.OnRowContextMenu = " try { ... my event handling code ... } catch (exp) { alert(exp.message); }";
                </pre>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.GridClientMessages">
            <summary>
            Contains properties related to messages appearing as tooltips for various grid
            actions. You can use this class for localizing the grid messages.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientMessages.DropHereToReorder">
            <summary>
            Gets or sets a string that will be displayed as a tooltip when you start dragging
            a column header trying to reorder columns.
            </summary>
            <value>
            	<strong>string</strong>, the tooltip that will be displayed when you try to
            reorder columns. By default it states "<strong>Drop here to reorder</strong>".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientMessages.DragToGroupOrReorder">
            <summary>
            Gets or sets a string that will be displayed as a tooltip when you hover a column
            that can be dragged.
            </summary>
            <value>
            	<strong>string</strong>, the tooltip that will be displayed hover a draggable
            column. By default it states "<strong>Drag to group or reorder</strong>".
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientMessages.DragToResize">
            <value>
            	<strong>string</strong>, the tooltip that will be displayed when you hover the
            resizing handle of a column. By default it states "<strong>Drag to
            resize</strong>".
            </value>
            <summary>
            Gets or sets a string that will be displayed as a tooltip when you hover the
            resizing handle of a column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientMessages.PagerTooltipFormatString">
            <summary>
            The format string used for the tooltip when using Ajax scroll paging or the Slider pager
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientMessages.ColumnResizeTooltipFormatString">
            <summary>
            The format string used for the tooltip when resizing a column
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridClientSettings.IsSet">
            <remarks>This method is for Telerik RadGrid internal usage.</remarks>
            <summary>
            Checks if a client settings property value was changed and differs from its
            default.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.DataBinding">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridSelecting"/> class providing properties
                related to client-side selection features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.Selecting">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridSelecting"/> class providing properties
                related to client-side selection features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.ClientEvents">
            <summary>Gets a reference to <see cref="T:Telerik.Web.UI.GridClientEvents"/> class.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.ClientMessages">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridClientMessages"/> class, holding properties
                that can be used for localizing Telerik RadGrid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.KeyboardNavigationSettings">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridKeyboardNavigationSettings"/> class, holding properties
                related to RadGrid keyboard navigation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.Scrolling">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridScrolling"/>, which holds various
                properties for setting the Telerik RadGrid scrolling features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.Resizing">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridResizing"/>, which holds properties related
                to Telerik RadGrid resizing features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.EnableAlternatingItems">
            <summary>
                Determines whether the alternating items will render with a different CSS class.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowKeyboardNavigation">
            <summary>
            Gets or sets a value indicating whether the keyboard navigation will be enabled
            in Telerik RadGrid.
            </summary>
            <value>
            true, if keyboard navigation is enabled, otherwise false (the default
            value).
            </value>
            <remarks>
            	<ul class="noindent">
            		<li><strong>Arrowkey Navigation</strong> - allows end-users to navigate around
                    the menu structure using the arrow keys.</li>
            		<li>select grid items pressing the [SPACE] key</li>
            		<li>edit rows hitting the [ENTER] key</li>
            	</ul>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowDragToGroup">
            <summary>
                Gets or sets a value indicating whether you will be able to drag column headers to
                <see cref="T:Telerik.Web.UI.GridGroupPanel"/> and let the grid automatically form
                <see cref="P:Telerik.Web.UI.GridColumn.GroupByExpression"/> and group its data.
            </summary>
            <value>
            	<strong>true</strong>, if you are able to drag group header to the group panel,
            otherwise <strong>false</strong> (the default value)
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowColumnsReorder">
            <summary>
            Gets or sets a value indicating whether you will be able to reorder columns by
            using drag&amp;drop. By default it is false.
            </summary>
            <seealso cref="P:Telerik.Web.UI.GridClientSettings.ReorderColumnsOnClient">ReorderColumnsOnClient Property</seealso>
            <value>
            	<strong>true</strong> if reorder via drag&amp;drop is enabled, otherwise
            <strong>false</strong> (the default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowAutoScrollOnDragDrop">
            <summary>
            Gets or sets a value indicating whether MasterTableView will be automatically scrolled when an item is dragged.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.ReorderColumnsOnClient">
            <summary>
                Gets or sets a value indicating whether columns will be reordered on the client.
                This property is meaningful when used in conjunction with
                <see cref="P:Telerik.Web.UI.GridClientSettings.AllowColumnsReorder"/> set to <strong>true</strong>.
            </summary>
            <remarks>
            	<para>False by default, which means that each time you try to reorder columns a
                postback will be performed.</para>
            	<para>Note that in case this property is true the order changes will be persisted
                on the server only after postback.</para>
            </remarks>
            <value>
            	<strong>true</strong> if columns are reordered on the client, otherwise
            <strong>false</strong> (the default value.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowExpandCollapse">
            <summary>
            	<para>Gets or sets a value indicating whether the expand/collapse functionality for
                hierarchical structures in grid will be enabled.</para>
            	<para>The AllowExpandCollapse property of RadGrid is meaningful with client
                hierarchy load mode only and determine<br/>
                whether the end user will be able to expand/collapse grid items. This property do
                not control the visibility of the corresponding expand/collapse column.</para>
            </summary>
            <remarks>
            This property should be set to <strong>true</strong>, when working in
            <strong>HierarchyLoadMode.Client</strong>.
            </remarks>
            <value>
            	<strong>true</strong> if expand/collapse is enabled, otherwise
            <strong>false</strong> (the default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.AllowGroupExpandCollapse">
            <summary>
            	<para>Gets or sets a value indicating whether the expand/collapse functionality for
                grouped data in grid will be enabled.</para>
            	<para>The AllowGroupExpandCollapse property of RadGrid is meaningful with client
                group load mode only and determine whether the end user will be able to
                expand/collapse grid items. This property do not control the visibility of the
                corresponding expand/collapse column.</para>
            </summary>
            <value>
            	<strong>true</strong>, if expand/collapse is enabled, otherwise
            <strong>false</strong> (the default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridClientSettings.Animation">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridAnimationSettings"/> class providing properties
                related to client-side grid animations.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridColumnsReorderEventArgs.Canceled">
            <summary>
                Gets or sets a value indicating whether <see cref="E:Telerik.Web.UI.RadGrid.ColumnsReorder"/>
                event will be canceled.
            </summary>
            <value>
            	<strong>true</strong>, if the event is canceled, otherwise
            <strong>false</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.IGridCommandEvent">
            <summary>
            Interface that provides the basic functionality needed for a class to be used to
            send information to Command event handler.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IGridCommandEvent.ExecuteCommand(System.Object)">
            <summary>Override to fire the corresponding command.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IGridCommandEvent.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCommandEventArgsFactory">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridCommandEventArgsFactory.CreateGridCommandEventArgs(Telerik.Web.UI.GridItem,System.Object,System.Web.UI.WebControls.CommandEventArgs)">
            <summary>For internal usage only.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCommandEventHandler">
            <summary>
            Represents the method that will handle grid's Command events including
            CancelCommand, DeleteCommand, EditCommand, InsertCommand, ItemCommand, SortCommand and
            UpdateCommand.
            </summary>
            <param name="sender">The source of the event.</param>
            <param name="e">A <see cref="T:System.Web.UI.WebControls.CommandEventArgs"/> object that contains the event data.</param>
        </member>
        <member name="T:Telerik.Web.UI.GridCommandEventArgs">
            <summary>
            Provides data for Command events including CancelCommand, DeleteCommand,
            EditCommand, InsertCommand, ItemCommand, SortCommand and UpdateCommand.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>
                Fires the command stored in <see cref="P:System.Web.UI.WebControls.CommandEventArgs.CommandName"/>
                property
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCommandEventArgs.CommandSource">
            <summary>Gets the source of the command</summary>
            <example>
            	<code lang="CS">
            // Get a reference to the control that triggered expand/collapse command 
            protected void RadGrid1_ItemCommand(object source, GridCommandEventArgs e)
            {
                if (e.CommandName == RadGrid.ExpandCollapseCommandName)
                {
                    Control c = e.CommandSource as Control;
                }
            }
                </code>
            	<code lang="VB">
            ' Get a reference to the control that triggered expand/collapse command 
            Protected Sub RadGrid1_ItemCommand([source] As Object, e As GridCommandEventArgs)
                If e.CommandName = RadGrid.ExpandCollapseCommandName Then
                    Dim c As Control = e.CommandSource 
                End If
            End Sub 'RadGrid1_ItemCommand
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridCommandEventArgs.Item">
            <summary>Gets the item containing the command source</summary>
            <example>
            	<code lang="CS">
            protected void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e)
            {
                if (e.Item is GridEditFormItem &amp;&amp; e.Item.IsInEditMode)
                {
                    GridEditFormItem item = e.Item as GridEditFormItem;
                    Hashtable newValues = new Hashtable();
                    item.OwnerTableView.ExtractValuesFromItem(newValues, item);
                    if (newValues["Name"].ToString() == "DefaultName")
                    {
                        e.Canceled = true;
                    }
                }
            }
                </code>
            	<code lang="VB">
            Protected Sub RadGrid1_UpdateCommand([source] As Object, e As GridCommandEventArgs)
                If Typeof e.Item Is GridEditFormItem AndAlso e.Item.IsInEditMode Then
                    Dim item As GridEditFormItem = e.Item
                    Dim newValues As New Hashtable()
                    item.OwnerTableView.ExtractValuesFromItem(newValues, item)
                    If newValues("Name").ToString() = "DefaultName" Then
                        e.Canceled = True
                    End If
                 End If
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridCommandEventArgs.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
            <example>
            	<code lang="CS">
            protected void RadGrid1_UpdateCommand(object source, GridCommandEventArgs e)
            {
                if (e.Item is GridEditFormItem &amp;&amp; e.Item.IsInEditMode)
                {
                    GridEditFormItem item = e.Item as GridEditFormItem;
                    Hashtable newValues = new Hashtable();
                    item.OwnerTableView.ExtractValuesFromItem(newValues, item);
                    if (newValues["Name"].ToString() == "DefaultName")
                    {
                        e.Canceled = true;
                    }
                }
            }
                </code>
            	<code lang="VB">
            Protected Sub RadGrid1_UpdateCommand([source] As Object, e As GridCommandEventArgs)
                If Typeof e.Item Is GridEditFormItem AndAlso e.Item.IsInEditMode Then
                    Dim item As GridEditFormItem = e.Item
                    Dim newValues As New Hashtable()
                    item.OwnerTableView.ExtractValuesFromItem(newValues, item)
                    If newValues("Name").ToString() = "DefaultName" Then
                        e.Canceled = True
                    End If
                 End If
            End Sub
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.GridSelectCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridSelectCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>Fires RadGrid.SelectedIndexChanged event.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDeselectCommandEventArgs">
            <summary>For internal usage only</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridDeselectCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>Fires RadGrid.SelectedIndexChanged event.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDetailTableDataBindEventHandler">
            <summary>Represents a method that will handle grid's DetailTableDataBind event.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDetailTableDataBindEventArgs">
            <summary>Provides data for DetailTableDataBind event.</summary>
            <example>
            	<code lang="CS">
            protected void RadGrid1_DetailTableDataBind(object source, Telerik.Web.UI.GridDetailTableDataBindEventArgs e)
            {
                GridDataItem parentItem = e.DetailTableView.ParentItem as GridDataItem;
                if (e.DetailTableView.DataSourceID == "AccessDataSource2")
                {
                    Session["CustomerID"] = parentItem["CustomerID"].Text;
                }
            }
                </code>
            	<code lang="VB">
            Protected Sub RadGrid1_DetailTableDataBind(ByVal source As Object, ByVal e As GridDetailTableDataBindEventArgs) Handles RadGrid1.DetailTableDataBind
                Dim parentItem As GridDataItem = CType(e.DetailTableView.ParentItem, GridDataItem)
                If (e.DetailTableView.DataSourceID = "AccessDataSource2") Then
                        Session("CustomerID") = parentItem("CustomerID").Text
                End If
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridDetailTableDataBindEventArgs.ExecuteCommand(System.Object)">
            <summary>
            Fires RadGrid.DetailTableDataBind event
            </summary>
            <param name="source"></param>
        </member>
        <member name="P:Telerik.Web.UI.GridDetailTableDataBindEventArgs.DetailTableView">
            <summary>Gets a reference to the detail table being bound.</summary>
            <example>
            	<code lang="CS">
            protected void RadGrid1_DetailTableDataBind(object source, Telerik.Web.UI.GridDetailTableDataBindEventArgs e)
            {
                GridDataItem parentItem = e.DetailTableView.ParentItem as GridDataItem;
                if (e.DetailTableView.DataSourceID == "AccessDataSource2")
                {
                    Session["CustomerID"] = parentItem["CustomerID"].Text;
                }
            }
                </code>
            	<code lang="VB">
            Protected Sub RadGrid1_DetailTableDataBind(ByVal source As Object, ByVal e As GridDetailTableDataBindEventArgs) Handles RadGrid1.DetailTableDataBind
                Dim parentItem As GridDataItem = CType(e.DetailTableView.ParentItem, GridDataItem)
                If (e.DetailTableView.DataSourceID = "AccessDataSource2") Then
                        Session("CustomerID") = parentItem("CustomerID").Text
                End If
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridDetailTableDataBindEventArgs.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExpandCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridExpandCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>
                Expands/Collapses the <see cref="T:Telerik.Web.UI.GridItem"/> containing the
                <see cref="P:Telerik.Web.UI.GridCommandEventArgs.CommandSource"/>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridFilterCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridFilterCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>
                Calculates and sets the <see cref="P:Telerik.Web.UI.GridTableView.FilterExpression"/> to the corresponding
                <see cref="T:Telerik.Web.UI.GridTableView"/> and rebinds the grid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDownloadAttachmentCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.GridTableViewCollection">
            <summary>
            	<para>A collection that stores <see cref="T:Telerik.Web.UI.GridTableView"/> objects. You can access
            this collection through <see cref="P:Telerik.Web.UI.GridTableView.DetailTables"/> property of a
            parent <see cref="T:Telerik.Web.UI.GridTableView"/>.</para>
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableViewCollection"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.#ctor(Telerik.Web.UI.RadGrid,Telerik.Web.UI.GridTableView)">
            <summary>
            <para>
             Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewCollection"/>.
            </para>
            </summary>
            <param name="Owner"><see cref="T:Telerik.Web.UI.RadGrid"/> that would aggregate this instance</param>
            <param name="OwnerTableView"><see cref="T:Telerik.Web.UI.GridTableView"/> which owns the collection</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.#ctor(Telerik.Web.UI.GridTableViewCollection)">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> based on another <see cref="T:Telerik.Web.UI.GridTableViewCollection"/>.
               </para>
            </summary>
            <param name="value">
                  A <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> from which the contents are copied
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.#ctor(Telerik.Web.UI.GridTableView[])">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> containing any array of <see cref="T:Telerik.Web.UI.GridTableView"/> objects.
               </para>
            </summary>
            <param name="value">
                  An array of <see cref="T:Telerik.Web.UI.GridTableView"/> objects with which to intialize the collection
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.Add(Telerik.Web.UI.GridTableView)">
            <summary>
               <para>Adds a <see cref="T:Telerik.Web.UI.GridTableView"/> with the specified value to the 
               <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridTableView"/> to add.</param>
            <returns>
               <para>The index at which the new element was inserted.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.AddRange(Telerik.Web.UI.GridTableViewCollection)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.AddRange(Telerik.Web.UI.GridTableView[])">
            <summary>
            <para>Copies the elements of an array to the end of the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/>.</para>
            </summary>
            <param name="value">
               An array of type <see cref="T:Telerik.Web.UI.GridTableView"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.Add(Telerik.Web.UI.GridTableView)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.AddRange(Telerik.Web.UI.GridTableViewCollection)">
            <summary>
                <para>
                  Adds the contents of another <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> to the end of the collection.
               </para>
            </summary>
            <param name="value">
               A <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.Add(Telerik.Web.UI.GridTableView)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.Contains(Telerik.Web.UI.GridTableView)">
            <summary>
            <para>Gets a value indicating whether the 
               <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> contains the specified <see cref="T:Telerik.Web.UI.GridTableView"/>.</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridTableView"/> to locate.</param>
            <returns>
            <para><see langword="true"/> if the <see cref="T:Telerik.Web.UI.GridTableView"/> is contained in the collection; 
              otherwise, <see langword="false"/>.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.IndexOf(Telerik.Web.UI.GridTableView)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.CopyTo(Telerik.Web.UI.GridTableView[],System.Int32)">
            <summary>
            <para>Copies the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> values to a one-dimensional <see cref="T:System.Array"/> instance at the 
               specified index.</para>
            </summary>
            <param name="array"><para>The one-dimensional <see cref="T:System.Array"/> that is the destination of the values copied from <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</para></param>
            <param name="index">The index in <paramref name="array"/> where copying begins.</param>
            <returns>
              <para>None.</para>
            </returns>
            <exception cref="T:System.ArgumentException"><para><paramref name="array"/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> is greater than the available space between <paramref name="array"/> and the end of <paramref name="array"/>.</para></exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="array"/> is <see langword="null"/>. </exception>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="array"/> is less than <paramref name="array"/>"s lowbound. </exception>
            <seealso cref="T:System.Array"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.IndexOf(Telerik.Web.UI.GridTableView)">
            <summary>
               <para>Returns the index of a <see cref="T:Telerik.Web.UI.GridTableView"/> in 
                  the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridTableView"/> to locate.</param>
            <returns>
            <para>The index of the <see cref="T:Telerik.Web.UI.GridTableView"/> of <paramref name="value"/> in the 
            <see cref="T:Telerik.Web.UI.GridTableViewCollection"/>, if found; otherwise, -1.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.Contains(Telerik.Web.UI.GridTableView)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.Insert(System.Int32,Telerik.Web.UI.GridTableView)">
            <summary>
            <para>Inserts a <see cref="T:Telerik.Web.UI.GridTableView"/> into the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> at the specified index.</para>
            </summary>
            <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
            <param name=" value">The <see cref="T:Telerik.Web.UI.GridTableView"/> to insert.</param>
            <returns><para>None.</para></returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewCollection.Add(Telerik.Web.UI.GridTableView)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.GetEnumerator">
            <summary>
               <para>Returns an enumerator that can iterate through 
                  the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</para>
            </summary>
            <returns><para>None.</para></returns>
            <seealso cref="T:System.Collections.IEnumerator"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewCollection.Remove(Telerik.Web.UI.GridTableView)">
            <summary>
               <para> Removes a specific <see cref="T:Telerik.Web.UI.GridTableView"/> from the 
               <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridTableView"/> to remove from the <see cref="T:Telerik.Web.UI.GridTableViewCollection"/> .</param>
            <returns><para>None.</para></returns>
            <exception cref="T:System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception>
        </member>
        <member name="P:Telerik.Web.UI.GridTableViewCollection.OwnerGrid">
            <summary>
            Get the instance of <see cref="T:Telerik.Web.UI.RadGrid"/> that owns this instance
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableViewCollection.Item(System.Int32)">
            <summary>
            <para>Represents the entry at the specified index of the <see cref="T:Telerik.Web.UI.GridTableView"/>.</para>
            </summary>
            <param name="index"><para>The zero-based index of the entry to locate in the collection.</para></param>
            <value>
               <para> The entry at the specified index of the collection.</para>
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is outside the valid range of indexes for the collection.</exception>
        </member>
        <member name="M:Telerik.Web.UI.GridDataTableFromEnumerable.FinishedParsingProperties(System.Object)">
            <summary>
            Add DataColumns for grid columns with composite DataFields (sub properties)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEnumerableBase">
            <summary>
            Summary description for IGridEnumerable.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExportSettings">
            <summary>
            Container of misc. grouping settings of RadGrid control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExportSettings.FileName">
            <summary>
            A string specifying the name (without the extension) of the file that will be
            created. The file extension is automatically added based on the method that is
            used.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx" cat="RadGrid QSF demos">Export Grid to Microsoft Excel, Microsoft Word</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridExportSettings.ExportOnlyData">
            <summary>Determines whether only data will be exported.</summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx" cat="RadGrid QSF demos">Export Grid to Microsoft Excel, Microsoft Word</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridExportSettings.HideStructureColumns">
            <summary>Determines whether the structure columns (the row indicator and the expand/collapse columns) will be exported.</summary>        
        </member>
        <member name="P:Telerik.Web.UI.GridExportSettings.IgnorePaging">
            <summary>
            Specifies whether all records will be exported or merely those on the current
            page.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx" cat="RadGrid QSF demos">Export Grid to Microsoft Excel, Microsoft Word</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridExportSettings.OpenInNewWindow">
            <summary>Opens the exported grid in a new instead of the same page.</summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx" cat="RadGrid QSF demos">Export Grid to Microsoft Excel, Microsoft Word</seealso>
        </member>
        <member name="T:Telerik.Web.UI.GridCsvSettings">
            <summary>
            Container of misc. grouping settings of RadGrid control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCsvSettings.RowDelimiter">
            <summary>
            Gets or sets the row delimiter for RadGrid CSV export.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCsvSettings.ColumnDelimiter">
            <summary>
            Gets or sets the row delimiter for RadGrid CSV export.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridCsvSettings.EncloseDataWithQuotes">
            <summary>
            Gets or sets whether the data will be enclosed with quotes for RadGrid CSV export.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridKnownFunction">
            <summary>
            Predefined filter expression enumeration. Used by <see cref="T:Telerik.Web.UI.GridFilterFunction"/> class.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Filtering/DefaultCS.aspx" cat="Online demos">Basic Filtering</seealso>
            <remarks>
            	<para>Some functions are applicable (and are not displayed on filterting) to all
                the data types:</para>
            	<para><strong>String</strong> type supports all the functions.</para>
            	<para><strong>Integer:</strong> NoFilter, EqualTo, NotEqualTo, GreaterThan,
                LessThan, GreaterThanOrEqualTo, LessThanOrEqualTo, Between, NotBetween, IsNull and
                NotIsNull are supported. <font color="blue"><em>Contains, DoesNotContain,
                StartsWith,</em>
            			<em>EndsWith, IsEmpty <font color="#000040">and</font>
                NotIsEmpty</em></font>
            		<strong>are not</strong> supported.</para>
            	<para><strong>Date:</strong> same as Integer.</para>
            </remarks>
            <seealso cref="!:grdBasicFiltering.html" cat="RadGrid manual">Basic Filtering</seealso>
            <seealso cref="!:grdLocalizingFilteringMenuOptions.html" cat="RadGrid manual">How-To: Localizing filtering menu options</seealso>
            <seealso cref="!:grdReducingFilterMenuOptions.html" cat="RadGrid manual">How-To: Reducing filtering menu options</seealso>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.NoFilter">
            <summary>
            No filter would be applied, filter controls would be cleared 
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.Contains">
            <summary>Same as: dataField LIKE '/%value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.DoesNotContain">
            <summary>Same as: dataField NOT LIKE '/%value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.StartsWith">
            <summary>Same as: dataField LIKE 'value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.EndsWith">
            <summary>Same as: dataField LIKE '/%value'</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.EqualTo">
            <summary>
            Same as: dataField = value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.NotEqualTo">
            <summary>Same as: dataField != value</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.GreaterThan">
            <summary>Same as: dataField &gt; value</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.LessThan">
            <summary>
            Same as: dataField &lt; value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.GreaterThanOrEqualTo">
            <summary>Same as: dataField &gt;= value</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.LessThanOrEqualTo">
            <summary>
            Same as: dataField &lt;= value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.Between">
            <summary>
            Same as: value1 &lt;= dataField &lt;= value2.<br/>
            Note that value1 and value2 should be separated by [space] when entered as
            filter.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.NotBetween">
            <summary>
            Same as: dataField &lt;= value1 &amp;&amp; dataField &gt;= value2.<br/>
            Note that value1 and value2 should be separated by [space] when entered as
            filter.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.IsEmpty">
            <summary>
            Same as: dataField = ''
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.NotIsEmpty">
            <summary>Same as: dataField != ''</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.IsNull">
            <summary>
            Only null values
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.NotIsNull">
            <summary>
            Only those records that does not contain null values within the corresponding column
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridKnownFunction.Custom">
            <summary>
            Custom function will be applied. The filter value should contain a valid filter expression, including DataField, operators and value
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridFilterListOptions">
            <summary>
            Choose which filter function will be enabled for a column
            </summary>
            <seealso cref="!:grdBasicFiltering.html" cat="RadGrid Manual">Basic Filtering</seealso>
            <seealso cref="!:grdCustomOptionForFiltering.html" cat="RadGrid Manual: How-To">Custom option for filtering (FilterListOptions -&gt;
            VaryByDataTypeAllowCustom)</seealso>
        </member>
        <member name="F:Telerik.Web.UI.GridFilterListOptions.VaryByDataType">
            <summary>
            Depending of data type of the column, RadGrid will automatically choose which filters to be displayed in the list
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridFilterListOptions.VaryByDataTypeAllowCustom">
            <summary>
            As VaryByDataType with custom filtering enabled
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridFilterListOptions.AllowAllFilters">
            <summary>
            All filters will be displayed. Note that some data types are not applicatble to some filter functions. For example you cannot apply
            the 'like' function for integer data type. In such cases you should handle the filtering in a custom manner, handling
            <see cref="E:Telerik.Web.UI.RadGrid.ItemCommand"/> for 'Filter' command
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridFilterFunction">
            <summary>
            Used when column-based filtering feature of RadGrid is enabled. Defines properties and methods for formatting the 
            predefined filter expressions
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridAggregateFunction">
            <summary>
                Enumeration representing the aggregate functions which can be applied to a
                GridGroupByField (part of <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/>
                collection)
            </summary>
            <remarks>
                Meaningful only when GridGroupByField is part of
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </remarks>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField; 
              
            gridGroupByField = new GridGroupByField(); 
            gridGroupByField.FieldName = "Freight"; 
            gridGroupByField.HeaderText = "Total shipping cost is "; 
            gridGroupByField.Aggregate = GridAggregateFunction.Sum; 
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "Freight"
            gridGroupByField.HeaderText = "Total shipping cost is "
            gridGroupByField.Aggregate = GridAggregateFunction.Sum
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupByField">
            <summary>
                Field which is part of each <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/>
                and <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> collection
            </summary>
            <example>
            	<code lang="VB" title="VB">
            Dim groupExpression As GridGroupByExpression = New GridGroupByExpression()
             
            Dim groupByField As GridGroupByField = New GridGroupByField()
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupExpression.SelectFields.Add(groupByField)
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupExpression.GroupByFields.Add(groupByField)
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression)
                </code>
            	<code lang="CS" title="C#">
            GridGroupByExpression groupExpression = new GridGroupByExpression(); 
             
            GridGroupByField groupByField = new GridGroupByField(); 
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupExpression.SelectFields.Add(groupByField); 
             
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupExpression.GroupByFields.Add(groupByField); 
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression);
                </code>
            </example>
            <remarks>
                Some of the GridGroupByField properties are meaningful only when present under
                specific collection - <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> or
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/>
            </remarks>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByDeclarativeDefinition.html">Declarative GridGroupByField syntax</seealso>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.SetAggregate(System.String)">
            <summary>
                Method setting the aggregate function applied for a
                <strong>GridGroupByField</strong> which is part of the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection.
            </summary>
            <returns>N/A</returns>
            <example>
            	<code lang="VB" title="VB">
            Dim groupExpression As GridGroupByExpression = New GridGroupByExpression()
             
            Dim groupByField As GridGroupByField = New GridGroupByField()
            groupByField.FieldName = "Size"
            groupByField.SetAggregate(GridAggregateFunction.Sum)
            groupExpression.SelectFields.Add(groupByField)
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupExpression.SelectFields.Add(groupByField)
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupExpression.GroupByFields.Add(groupByField)
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression)
                </code>
            	<code lang="CS" title="C#">
            GridGroupByExpression groupExpression = new GridGroupByExpression(); 
             
            GridGroupByField groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Size"; 
            groupByField.SetAggregate(GridAggregateFunction.Sum); 
            groupExpression.SelectFields.Add(groupByField); 
             
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupExpression.SelectFields.Add(groupByField); 
             
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupExpression.GroupByFields.Add(groupByField); 
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression);
                </code>
            </example>
            <remarks>
                Meaningful only for GridGroupByFields from the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.SetSortOrder(System.String)">
            <summary>
                Method setting the sort order applied for a <strong>GridGroupByField</strong> which
                is part of the <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> collection.
            </summary>
            <returns>N/A</returns>
            <remarks>
                Meaningful only for GridGroupByFields from the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> collection
            </remarks>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByExpression groupExpression = new GridGroupByExpression(); 
             
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupExpression.SelectFields.Add(groupByField); 
             
            groupByField = new GridGroupByField(); 
            groupByField.FieldName = "Received"; 
            groupByField.SetSortOrder(GridSortOrder.Ascending);
            groupExpression.GroupByFields.Add(groupByField); 
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression);
                </code>
            	<code lang="VB" title="VB">
            Dim groupExpression As GridGroupByExpression = New GridGroupByExpression()
             
            Dim groupByField As GridGroupByField = New GridGroupByField()
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupExpression.SelectFields.Add(groupByField)
             
            groupByField = New GridGroupByField()
            groupByField.FieldName = "Received"
            groupByField.SetSortOrder(GridSortOrder.Descending)
            groupExpression.GroupByFields.Add(groupByField)
             
            RadGrid1.MasterTableView.GroupByExpressions.Add(groupExpression)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.GetHeaderText">
            <summary>
                Method which gets the <strong>HeaderText</strong> value from GridGroupByField part
                of the <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </summary>
            <returns>String containing the <strong>HeaderText</strong> value</returns>
            <remarks>
                Meaningful only for GridGroupByFields from the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </remarks>
            <example>
            	<code lang="VB" title="VB">
            Dim groupExpression As GridGroupByExpression = RadGrid1.MasterTableView.GroupByExpressions(0)
            Dim headerText as String = groupExpression.SelectFields(0).GetHeaderText()
                </code>
            	<code lang="CS" title="C#">
            GridGroupByExpression groupExpression = RadGrid1.MasterTableView.GroupByExpressions[0] as GridGroupByExpression;
            String headerText = groupExpression.SelectFields[0].GetHeaderText()
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.GetFormatString">
            <summary>
                Method which gets the <strong>FormatString</strong> value from GridGroupByField
                part of the <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </summary>
            <returns>String containing the <strong>FormatString</strong> value</returns>
            <remarks>
                Meaningful only for GridGroupByFields from the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection
            </remarks>
            <example>
            	<code lang="VB" title="VB">
            Dim groupExpression As GridGroupByExpression = RadGrid1.MasterTableView.GroupByExpressions(0)
            Dim formatString As String = groupExpression.SelectFields(0).GetFormatString()
                </code>
            	<code lang="CS" title="C#">
            GridGroupByExpression groupExpression = RadGrid1.MasterTableView.GroupByExpressions[0] As GridGroupByExpression; 
            String formatString = groupExpression.SelectFields[0].GetFormatString()
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.Validate">
            <summary>Inherited but not used</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.ToString">
            <summary>
            Method that retrieves a <b>System.String</b> that indicates the current
            object
            </summary>
            <returns>The string format of the object.</returns>
            <seealso cref="!:http://msdn.microsoft.com/library/default.asp?url=/workshop/webcontrols/webforms/library/shared/tostring.asp">Object.ToString()</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByField.CopyFrom(Telerik.Web.UI.GridGroupByField)">
            <summary>Inherited but not used</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.FieldName">
            <summary>
            Gets or sets a string that represents the <strong>DataField</strong> column
            property that will be used to form the <strong>GroupByExpression</strong>.
            </summary>
            <remarks>
            Unless you have specified a <strong>FieldAlias</strong>, the value of this
            property will be used when Telerik RadGrid constructs the text for
            <strong>GridGroupHeaderItem</strong>. <strong>FieldName</strong> has a meaning both for
            <strong>SelectFields</strong> and <strong>GroupByFields</strong> of
            <strong>GroupByExpression</strong>.
            </remarks>
            <value>
            String representing the <strong>DataField</strong> for the corresponding grouped
            column
            </value>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            //Add select fields (before the "Group By" clause)
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.HeaderText = "Employee";
            expression.SelectFields.Add( gridGroupByField );
             
            //Add a field for group-by (after the "Group By" clause)
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            expression.GroupByFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            'Add select field (before the "Group By" clause)
            gridGroupByField = New GridGroupByField()
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.HeaderText = "Employee"
            expression.SelectFields.Add(gridGroupByField)
             
            'Add a field for group-by (after the "Group By" clause)
            gridGroupByField = New GridGroupByField()
            gridGroupByField.FieldName = "EmployeeID"
            expression.GroupByFields.Add(gridGroupByField)
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByDeclarativeDefinition.html">Declarative GridGroupByField syntax</seealso>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.FieldAlias">
            <summary>
            Gets or sets a value representing a friendly name for the field used for forming
            the group by expression. This name will be displayed in each group header when grouping
            by the respective field.
            </summary>
            <remarks>
            	<para>
                    Use this property for setting the field text that will be displayed in the
                    <strong>GridGroupHeaderItem</strong>. If this property is not set, the value of
                    <see cref="P:Telerik.Web.UI.GridGroupByField.FieldName"/> property will be used. Note that this property has
                    a meaning <em>only</em> for GridGroupByField part of the <u>SelectFields</u> of
                    <strong>GridGroupByExpression</strong>.
                </para>
            	<para>This property is useful in cases when:</para>
            	<list type="bullet">
            		<item>you want to change the value displayed in group header (different than
                    the default <strong>DataField</strong> column value)<br/>
                    or</item>
            		<item>group by a template column and Telerik RadGrid cannot get the
                    header text for that column.</item>
            	</list>
            </remarks>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            //Add select fields (before the "Group By" clause)
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.FieldAlias = "EmployeeIdentificator";
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            'Add select fields (before the "Group By" clause)
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.FieldAlias = "EmployeeIdentificator"
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
            <value>String representing the friendly name shown</value>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByDeclarativeDefinition.html">Declarative GridGroupByField syntax</seealso>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.Aggregate">
            <remarks>
                Meaningful only for fields in the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection.
            </remarks>
            <summary>
                Gets or sets aggregate function (from <see cref="T:Telerik.Web.UI.GridAggregateFunction"/>
                enumeration values) that will be applied on the grouped data.
            </summary>
            <value>
            Returns the result from currently used aggregate function. This property defaults
            to <strong>GridAggregateFunction.None</strong>
            </value>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "Freight";
            gridGroupByField.HeaderText = "Total shipping cost is ";
            gridGroupByField.Aggregate = GridAggregateFunction.Sum;
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "Freight"
            gridGroupByField.HeaderText = "Total shipping cost is "
            gridGroupByField.Aggregate = GridAggregateFunction.Sum
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.SortOrder">
            <remarks>
                Meaningful only for fields in the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> collection. 'None' value is
                not supported because it can not determine uniquely the order in which the groups
                will be displayed.
            </remarks>
            <summary>
                Gets or sets the value representing how the data will be sorted. Acceptable values
                are the values of <see cref="T:Telerik.Web.UI.GridSortOrder"/> enumeration except for None
                (Ascending, Descending).
            </summary>
            <value>
            Returns the sorting mode applied to the grouped data. By default it is
            Ascending.
            </value>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.SortOrder = GridSortOrder.Descending;
            expression.GroupByFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.SortOrder = GridSortOrder.Descending
            expression.GroupByFields.Add(gridGroupByField)
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.FormatString">
            <remarks>
            	<para>
                    Meaningful only for fields in the
                    <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection.
                </para>
            	<para>When rendering RadGrid is using this expression to format field's value. It
                is mandatory that {0} parameter is specified in the string - it will be replaced
                with field's runtime value.</para>
            </remarks>
            <summary>
                Gets or sets the string that will be used to format the GridGroupByField part of
                the <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection.
            </summary>
            <value>
            String, formated by the GridGroupByField's FormatString property. It defaults to:
            "{0}".
            </value>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.FormatString = "&lt;strong&gt;{0}&lt;/strong&gt;";
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.FormatString = "&lt;strong&gt;{0}&lt;/strong&gt;"
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByDeclarativeDefinition.html">Declarative GridGroupByField syntax</seealso>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.HeaderText">
            <remarks>
                Meaningful only for fields in the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection. When rendering
                RadGrid will override the <strong>FieldAlias</strong> value with the
                <strong>HeaderText</strong> specified.
            </remarks>
            <value>
            	<strong>string</strong>, copied from the column's HeaderText if this group
            expression is based on a column. It defaults to the <strong>FieldAlias</strong> value
            (if specified).
            </value>
            <summary>
                Gets or sets the expression that will be displayed in the
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/>.
            </summary>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.HeaderText = "EmployeeNo";
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.HeaderText = "EmployeeNo"
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByField.HeaderValueSeparator">
            <summary>
            	<para>Gets or sets the string that separates header text from value text as the
                field is rendered in the <strong>GroupHeaderItems</strong>.</para>
            </summary>
            <value>
            	<para>string, represents the separator between the header text and value
                text.</para>
            	<para>This field value defaults to <strong>": "</strong>.</para>
            </value>
            <example>
            	<code lang="CS" title="C#">
            GridGroupByField gridGroupByField;
             
            gridGroupByField = new GridGroupByField();
            gridGroupByField.FieldName = "EmployeeID";
            gridGroupByField.HeaderValueSeparator = " for current group: ";
            expression.SelectFields.Add( gridGroupByField );
                </code>
            	<code lang="VB" title="VB">
            Dim gridGroupByField As GridGroupByField
             
            gridGroupByField = New GridGroupByField
            gridGroupByField.FieldName = "EmployeeID"
            gridGroupByField.HeaderValueSeparator = " for current group: "
            expression.SelectFields.Add(gridGroupByField)
                </code>
            </example>
            <remarks>
                Meaningful only for fields in the
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> collection.
            </remarks>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByProgrammaticDefinition.html">Programmatic GridGroupByField syntax</seealso>
            <seealso cref="!:http://www.telerik.com/help/radgrid/v4_Net2/?grdGroupByDeclarativeDefinition.html">Declarative GridGroupByField syntax</seealso>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupByFieldList">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupingSettings">
            <summary>Container of miscellaneous grouping settings of RadGrid control</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupingSettings.#ctor(System.Web.UI.StateBag)">
            <summary>For internal usage only</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupingSettings.#ctor(Telerik.Web.UI.RadGrid,System.Web.UI.StateBag)">
            <summary>For internal usage only</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.GroupContinuesFormatString">
            <summary>
            The group header message, indicating that the group continues on the next
            page.
            </summary>
            <seealso cref="!:grdLocalizingTootips.html" cat="RadGrid Manual">Localizing the grid messages</seealso>
            <remarks>
            Localizing the grid messages topic lists all the tooltips and text messages which
            can be modified.
            </remarks>
            <example>
            	<pre>
            &lt;GroupingSettings GroupContinuesFormatString="The group continues on the next page." /&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.GroupContinuedFormatString">
            <summary>
            The group header message indicating that this group continues from the previous
            page.
            </summary>
            <seealso cref="!:grdLocalizingTootips.html" cat="RadGrid Manual">Localizing the grid messages</seealso> 
            <remarks>
            Localizing the grid messages topic lists all the tooltips and text messages which
            can be modified.
            </remarks>
            <example>
            	<pre>
            &lt;GroupingSettings GroupContinuedFormatString="This group continues from the previous page." /&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.GroupSplitDisplayFormat">
            <summary>
            A part of the string that formats the information label that appears on each
            group header of a group that is split onto several pages parameter {0} will be replaced
            with the number of actual items displayed on the page parameter {1} will be replaced
            with the number of all items in the group
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.GroupSplitFormat">
            <summary>
            Gets or sets the format string that will be used when group is split, containing
            the <strong>GroupSplitDisplayFormat</strong> or
            <strong>GroupContinuedFormatString</strong> and
            <strong>GroupContinuesFormatString</strong> or the three together.
            </summary>
            <value>This property defaults to "({0})"</value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.GroupByFieldsSeparator">
            <summary>
            String that separates each group-by field when displayed in
            <strong>GridGroupHeaderItems</strong>.
            </summary>
            <value>This property default to ";"</value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.CaseSensitive">
            <summary>
            Gets or sets a value indicating whether the grouping operations will be case
            sensitive or not.
            </summary>
            <value>
            	<strong>true</strong> if grouping is case sensitive, otherwise
            <strong>false</strong>. The default value is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.ExpandTooltip">
            <summary>
            Gets or sets a string that will be displayed when the group expand image is
            hovered.
            </summary>
            <seealso cref="!:grdLocalizingTootips.html" cat="RadGrid Manual">Localizing the grid messages</seealso>
            <remarks>
            Localizing the grid messages topic lists all the tooltips and text messages which
            can be modified.
            </remarks>
            <example>
            	<pre>
              &lt;GroupingSettings ExpandTooltip="Click here to expand the group!" /&gt;
            </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.CollapseTooltip">
            <summary>
            Gets or sets a string that will be displayed when the group collapse image is
            hovered.
            </summary>
            <seealso cref="!:grdLocalizingTootips.html" cat="RadGrid Manual">Localizing the grid messages</seealso>
            <remarks>
            Localizing the grid messages topic lists all the tooltips and text messages which
            can be modified.
            </remarks>
            <example>
            	<pre>
              &lt;GroupingSettings ExpandTooltip="Click here to collapse the group!" /&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.UnGroupTooltip">
            <summary>
            Gets or sets a string that will be displayed when a group panel item is
            hovered.
            </summary>
            <seealso cref="!:grdLocalizingTootips.html" cat="RadGrid Manual">Localizing the grid messages</seealso>
            <remarks>
            Localizing the grid messages topic lists all the tooltips and text messages which
            can be modified.
            </remarks>
            <example>
            	<pre>
                &lt;radG:RadGrid&gt;<br/>        ..<br/>        &lt;GroupingSettings UnGroupTooltip="Wanna ungroup? Drag me back!" /&gt;<br/>    &lt;/radG:RadGrid&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.UnGroupButtonTooltip">
            <summary>
            Gets or sets value text of group panel item's ungroup button's tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.ShowUnGroupButton">
            <summary>
            Gets or sets value indicating if group panel item's ungroup button should be shown
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupingSettings.RetainGroupFootersVisibility">
            <summary>
            Gets or sets a value indicating whether the group footers should be kept visible
            when their parent group headers are collapsed.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupsChangingEventArgs">
            <summary>
            Holds properties specific for grouping mechanism such as performed action and
            reference to GridTableView where the action was performed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupsChangingEventArgs.Action">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridGroupsChangingAction"/> enumeration, which
                holds information about what action did fire the
                <see cref="E:Telerik.Web.UI.RadGrid.GroupsChanging"/> event.
            </summary>
            <example>
            	<para>protected void RadGrid1_GroupsChanging(object source,
                Telerik.Web.UI.GridGroupsChangingEventArgs e)<br/>
                {<br/>
                if (e.Action == GridGroupsChangingAction.Group)</para>
            	<para>{ ... }</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupsChangingEventArgs.TableView">
            <summary>
            Gets a reference to the <strong>GridTableView</strong> object where the grouping
            is performed.
            </summary>
            <value>a reference to <strong>GridTableView</strong> object.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupsChangingEventArgs.Expression">
            <summary>
                Gets or sets the <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> that will be used for
                grouping Telerik RadGrid.
            </summary>
            <example>
            	<code lang="CS" title="CS">
            protected void RadGrid1_GroupsChanging(object source, Telerik.Web.UI.GridGroupsChangingEventArgs e) 
            {  
              if (e.Action == GridGroupsChangingAction.Group) 
              { 
               GridGroupByField countryGroupField = new GridGroupByField(); 
               countryGroupField.FieldName = "Country"; 
               GridGroupByField cityGroupField = new GridGroupByField(); 
               cityGroupField.FieldName = "City"; 
              
               e.Expression.SelectFields.Clear(); 
               e.Expression.SelectFields.Add(countryGroupField); 
               e.Expression.SelectFields.Add(cityGroupField); 
               
               e.Expression.GroupByFields.Clear(); 
               e.Expression.GroupByFields.Add(countryGroupField); 
               e.Expression.GroupByFields.Add(cityGroupField); 
               ...
              }
            }
                </code>
            	<code lang="VB" title="VB">
            Protected Sub RadGrid1_GroupsChanging(ByVal source As Object, ByVal e As Telerik.Web.UI.GridGroupsChangingEventArgs)
             'Expression is added (by drag/grop on group panel)
              If (e.Action = GridGroupsChangingAction.Group) Then
               Dim countryGroupField As GridGroupByField = New GridGroupByField
               countryGroupField.FieldName = "Country"
               Dim cityGroupField As GridGroupByField = New GridGroupByField
               cityGroupField.FieldName = "City"
               e.Expression.SelectFields.Clear
               e.Expression.SelectFields.Add(countryGroupField)
               e.Expression.SelectFields.Add(cityGroupField)
               e.Expression.GroupByFields.Clear
               e.Expression.GroupByFields.Add(countryGroupField)
               e.Expression.GroupByFields.Add(cityGroupField)
              End If
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupsChangingEventArgs.SortedField">
            <summary>Gets a reference to the currently used <see cref="T:Telerik.Web.UI.GridGroupByField"/>.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupsChangingEventArgs.Canceled">
            <summary>
                Gets or sets a value indicating whether <see cref="E:Telerik.Web.UI.RadGrid.GroupsChanging"/>
                event will be canceled.
            </summary>
            <value>
            	<strong>true</strong>, if the event is canceled, otherwise
            <strong>false</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridHierarchySettings">
            <summary>
            Container of misc. grouping settings of RadGrid control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHierarchySettings.ExpandTooltip">
            <summary>
            Gets or sets a string that represents the tooltip that will be shown when the
            expand image is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHierarchySettings.CollapseTooltip">
            <summary>
            Gets or sets a string that represents the tooltip that will be shown when the
            collapse image is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHierarchySettings.SelfExpandTooltip">
            <summary>
            Gets or sets a string that represents the tooltip that will be shown when the
            self-hierarchy expand image is hovered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHierarchySettings.SelfCollapseTooltip">
            <summary>
            Gets or sets a string that represents the tooltip that will be shown when the
            self-hierarchy collapse image is hovered.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridIndexCollection">
            <summary>
            This is a collection of item indexes - each item index is unique within the
            collection
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridIndexCollection.Add(System.Int32[])">
            <summary>
            Constructs and add item hierarchical index to the collection
            of indexes.
            </summary>
            <remarks>
            The hierarchical-index is based on sequential numbers of
            indxes of items and detail tables. For example
            index Add(1) will construct the hierarchicalindex for Item 1 in MasterTableView.
            Add(1, 0, 2) references to the item with index 2 that belongs to a child table 0 of
            the item 1 in MastertableView.
            </remarks>
            <param name="indexes"></param>
        </member>
        <member name="T:Telerik.Web.UI.GridItemDecorator">
            <summary>
            Summary description for GridItemDecorator.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridItemEventArgs.EventInfo">
            <summary>
            Event info object. Cast to derrived classes to obtain the appropriate instance
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridItemEventArgs.Canceled">
            <summary>
            Set to true to cancel the default event execution, if available. The ItemCreated and ItemDataBound events cannot be cancelled.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridItemDropPosition">
            <summary>
            	Specifies the position at which the user has dragged and dropped the source item(s) with regards to the 
            	destination item.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridItemDropPosition.Above">
            <summary>
            The source item(s) is dropped above (before) the destination item.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridItemDropPosition.Below">
            <summary>
            The source item(s) is dropped below (after) the destination item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDragDropEventArgs.DestinationTableView">
            <summary>
            Contains <see cref="T:Telerik.Web.UI.GridTableView"/> instance to which belongs the destinationItem  
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPdfExportingArgs.RawHTML">
            <summary>
            Contains raw RadGrid's HTML which will be transformed to PDF.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExportingArgs.ExportOutput">
            <summary>
            Contains export document which will be written to the response
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCommandItem">
            <summary>
            Item that is displayed on top or at the bottom of the each GridTableView base on the settings of 
            <see cref="P:Telerik.Web.UI.GridTableView.CommandItemDisplay"/> property. Generally this item displays by default "Add new record" and "Refresh" button,
            but it can be customized using the <see cref="P:Telerik.Web.UI.GridTableView.CommandItemTemplate"/>. The commands bubbled through this item will be fired by 
            RadGrid.ItemCommand event. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridItem">
            <summary>
            Class that represents the rows of each GridTableView with RadGrid. All Items in RadGrid inherit from this class.
            RadGrid creates the items runtime, when it binds to data.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32,Telerik.Web.UI.GridItemType)">
            <summary>
            Initializes the base properties of an item.
            </summary>
            <param name="ownerTableView"></param>
            <param name="itemIndex"></param>
            <param name="dataSetIndex"></param>
            <param name="itemType"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.FireCommandEvent(System.String,System.Object)">
            <summary>
            Use this method to simulate item command event that bubbles to RadGrid and can be handeled automatically or in a custom manner,
            handling RadGrid.ItemCommand event.
            </summary>
            <param name="commandName">command to bubble, for example 'Page'</param>
            <param name="commandArgument">command argument, for example 'Next'</param>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.RestoreDecorator">
            <summary>
            This method is not intended to be used directly from your code.
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <summary>
            This method is not intended to be used directly from your code
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <summary>
            This method is not intended to be used directly from your code
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.PrepareItemStyle">
            <summary>Override this method to change the default logic for rendering the item</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.PrepareItemVisibility">
            <summary>Override this method to change the default logic for item visibility</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.SetTempIndexHierarchical(System.String)">
            <summary>
            Used after postback before ViewState becomes available - 
            for example in ItemCreated and ItemDataBound events
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.RemoveChildSelectedItems">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.RemoveChildEditItems">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.SetChildrenVisible(System.Boolean)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.SetVisibleChildren(System.Boolean)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.ExpandHierarchyToTop">
            <example>
            	<code lang="CS" title="C#">
            //get MasterTableView's second (index 1) nested view item
            GridNestedViewItem firstLevelNestedViewItem = (GridNestedViewItem)RadGrid1.MasterTableView.GetItems(GridItemType.NestedView)[1];
            //get second nested view item at level 2 of the hierarchy
            GridNestedViewItem secondLevelNestedViewItem = (GridNestedViewItem)firstLevelNestedViewItem.NestedTableViews[0].GetItems(GridItemType.NestedView)[1];
            //get the first item to be expanded
            GridItem itemToExpand = secondLevelNestedViewItem.NestedTableViews[0].GetItems(GridItemType.Item)[0];
            itemToExpand.ExpandHierarchyToTop();
                </code>
            	<code lang="VB" title="VB">
            'get MasterTableView's second (index 1) nested view item
            Dim firstLevelNestedViewItem As GridNestedViewItem = CType(RadGrid1.MasterTableView.GetItems(GridItemType.NestedView)(1), GridNestedViewItem)
            'get second nested view item at level 2 of the hierarchy
            Dim secondLevelNestedViewItem As GridNestedViewItem = CType(firstLevelNestedViewItem.NestedTableViews(0).GetItems(GridItemType.NestedView)(1), GridNestedViewItem)
            'get the first item to be expanded
            Dim itemToExpand As GridItem = secondLevelNestedViewItem.NestedTableViews(0).GetItems(GridItemType.Item)(0)
            itemToExpand.ExpandHierarchyToTop()
                </code>
            </example>
            <overloads>Expands the hierarchy starting from the last level to the top</overloads>
        </member>
        <member name="M:Telerik.Web.UI.GridItem.CalcColSpan(Telerik.Web.UI.GridColumn[],System.Int32,System.Int32)">
            <summary>
            Calculate column-span value for a cell using column list, when the cell indicated
            with FromCellIndex should be spanned to ToCellIndex
            </summary>
            <param name="columns">columns - visible property is taken in count</param>
            <param name="FromCellIndex">cell inbdex of spanned cell</param>
            <param name="ToCellIndex">cell index of next not-spanned cell or -1 for the last cell index</param>
            <returns>ColSpan number</returns>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.OwnerTableView">
            <summary>
            Gets a reference to the <strong>GridTableView</strong> that owns this
            <strong>GridItem.</strong>
            </summary>
            <example>
                You can use the OwnerTableView property to get an instance of the GridTableView
                that holds the item modified. For example in the
                <strong>SelectedIndexChanged</strong> event handler you can get the
                <strong>GridTableView</strong> object like this:
                <code lang="CS" title="C#">
            protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
                {
                    GridTableView tableview = RadGrid1.SelectedItems[0].OwnerTableView;
                }
                </code>
            	<code lang="VB" title="VB.NET">
            Protected Sub RadGrid1_SelectedIndexChanged(sender As Object, e As EventArgs)
               Dim tableview As GridTableView = RadGrid1.SelectedItems(0).OwnerTableView
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.OwnerID">
            <summary>
            Gets the <strong>ClientID</strong> of the <strong>GridTableView</strong> that
            owns this instance.
            </summary>
            <example>
                The OwnerID property will get the <strong>ClientID</strong> of the
                <strong>GridTableView</strong> that owns the referenced instance. For example the
                code below will return RadGrid1_ctl01 which is the ClientID of the MasterTableView
                for basic RadGrid:
                <code lang="CS" title="C#">
            protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
                {
                    Label1.Text = RadGrid1.SelectedItems[0].OwnerID;
                }
                </code>
            	<code lang="VB" title="VB.NET">
            Protected Sub RadGrid1_SelectedIndexChanged(sender As Object, e As EventArgs)
               Label1.Text = RadGrid1.SelectedItems(0).OwnerID
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.OwnerGridID">
            <summary>
            Gets the <strong>ClientID</strong> of the <strong>RadGrid</strong> instance that
            owns the item.
            </summary>
            <example>
                The OwnerGridID property will get the <strong>ClientID</strong> of the
                <strong>Grid</strong> instance that owns the referenced item. For example the code
                below will return RadGrid1 which is the ClientID of the owner Grid instance.
                <code lang="CS" title="C#">
            protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
                {
                    if (e.Item is GridEditableItem &amp;&amp; e.Item.IsInEditMode)
                            {
                         Response.Write(e.Item.OwnerGridID);
                        
                         }
                }
            </code>
            	<code lang="VB" title="VB.NET">
            Protected Sub RadGrid1_ItemCreated(sender As Object, e As GridItemEventArgs)
               If Typeof e.Item Is GridEditableItem And e.Item.IsInEditMode Then
                  Response.Write(e.Item.OwnerGridID)
               End If 
            End Sub
            </code>
            </example>
            <remarks>
            This would be useful if several controls use the same eventhandler and you need
            to diferentiate the Grid instances in the handler.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.GridItem.CellDataBound">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.HasChildItems">
            <summary>
            Gets a value indicating whether this item has child items - or items somehow
            related to this.
            </summary>
            <example>
                For example the <strong>GridDataItem</strong> has child
                <strong>NestedViewItem</strong> that holds the hierarchy tables when grid is
                rendering hierarchy.<br/>
            	<strong>GroupHeaderItems</strong> has the items with a group for children, and so
                on.
                <code lang="CS" title="C#">
            protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
                {
                    if (e.Item is GridItem &amp;&amp; (e.Item as GridItem).HasChildItems == true)
                        {
                          Label1.Text = "has items";
                        }
                }
            </code>
            	<code lang="VB" title="VB">
            Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As GridItemEventArgs)
                   If (Typeof e.Item Is GridItem AndAlso CType(e.Item, GridItem).HasChildItems = True) Then
                         Label1.Text = "has items"
                   End If
            End Sub
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.CanExpand">
            <summary>
            Gets a value indicating whether the item can be "expanded" to show its child items 
            </summary>
            <example>
                Shows whether an item can be "expanded" to show its child items
                <code lang="CS" title="C#">
            protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
                {
                    if (e.Item is GridItem &amp;&amp; (e.Item as GridItem).CanExpand == true)
                        {
                          Label1.Text = "Item was expanded";
                        }
                }
            </code>
            	<code lang="VB" title="VB">
            Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As GridItemEventArgs)
                   If (Typeof e.Item Is GridItem AndAlso CType(e.Item, GridItem).CanExpand = True)
                         Label1.Text = "Item was expanded"
                   End If
            End Sub
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.DataItem">
            <summary>
            The original <strong>DataItem</strong> from the <strong>DataSource</strong>. See
            examples section below.
            </summary>
            <example>
            For example if you bind the grid to a <strong>DataView</strong> object the
            <strong>DataItem</strong> will represent the <strong>DataRowView</strong> object
            extracted from the <strong>DataView</strong> for this <strong>GridItem</strong>. Note
            that the <strong>DataItem</strong> object is available only when grid binds to data
            (inside the <strong>ItemDataBound</strong> server event handler).
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.DataSetIndex">
            <summary>
            Gets the index of the <strong>GridDataItem</strong> in the underlying
            DataTable/specified table from a DataSet<strong>.</strong>
            </summary>
            <value>Integer</value>
            <requirements>
            This property has a meaning only when the Telerik RadGrid source is
            DataTable.
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.ItemIndex">
            <summary>
                Gets the index of the grid item among the <see cref="P:Telerik.Web.UI.GridTableView.Items"/>
                collection. This index also can be used to get the <strong>DataKeyValues</strong>
                corresponding to this item from a <strong>GridTableView.</strong>
            </summary>
            <example>
                Gets a value representing the index of this item among the
                <see cref="P:Telerik.Web.UI.GridTableView.Items"/> collection. This index also can be used to
                get the <strong>DataKeyValues</strong> corresponding to this item from a
                <strong>GridTableView.</strong>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.ClientRowIndex">
            <summary>
            Gets the index of the row as in the html table object rendered on the client
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.RowIndex">
            <summary>
            Gets the index of the item in the rows collection of the underlying Table server control
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.ItemIndexHierarchical">
            <summary>
            Get the unique item index among all the item in the hierarchy. This index is used when setting item to selected, edited, etc
            </summary>
            <example>
                If we have three level hierarchy with two items each and select the first item in
                the third level then the ItemIndexHierarchical will be 1:0_1:0_0
                <code lang="CS" title="C#">
            protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
                {
                    Response.Write(RadGrid1.SelectedItems[0].ItemIndexHierarchical);
                }
                </code>
            	<code lang="VB" title="VB">
            Protected Sub RadGrid1_SelectedIndexChanged(sender As Object, e As EventArgs)
               Response.Write(RadGrid1.SelectedItems(0).ItemIndexHierarchical)
            End Sub 'RadGrid1_SelectedIndexChanged
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.ItemType">
            <summary>
            Gets the respective <see cref="T:Telerik.Web.UI.GridItemType">GridItemType</see> of the grid item.
            </summary>
            <example>
                Gets the respective <see cref="T:Telerik.Web.UI.GridItemType">GridItemType</see> of the grid item.
                <code lang="CS" title="C#">
            foreach (GridDataItem dataItem in rgdStateRules.MasterTableView.Items)
            {
              if (dataItem.ItemType == GridItemType.Item ||
                  dataItem.ItemType ==   GridItemType.AlternatingItem)
              {
                 string reqName = dataItem["SomeColumnUniqueName"]. Text;
                 ....
              }
            }
            </code>
            	<code lang="VB" title="VB">
            Dim dataItem As GridDataItem
            For Each dataItem In  rgdStateRules.MasterTableView.Items
               If dataItem.ItemType = GridItemType.Item Or dataItem.ItemType = GridItemType.AlternatingItem Then
                  Dim reqName As String = dataItem("SomeColumnUniqueName").Text
               End If
            Next dataItem
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.Expanded">
            <summary>
            Gets or sets a value indicating whether the grid item is expanded or
            collapsed.
            </summary>
            <example>
                The example below sets all expanded items to collapsed
                <code lang="CS" title="C#">
            for(int i = 0; i &lt; RadGrid.Items.Count - 1;i++)
                if(RadGrid.Items[i].Expanded)
                {
                     RadGrid.Items[i].Expanded = false;
                }
                </code>
            	<code lang="VB" title="VB">
            Dim i As Integer
            For i = 0 To (RadGrid.Items.Count - 1) Step -1
               If RadGrid.Items(i).Expanded Then
                  RadGrid.Items(i).Expanded = False
               End If
            Next i
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.Display">
            <example>
                The example below will hide the GridCommandItem.
                <code lang="CS" title="C#">
            if (e.Item is GridCommandItem)
                    {
                        e.Item.Display = false;
                    }
                </code>
            	<code lang="VB" title="VB">
            If Typeof e.Item Is GridCommandItem Then
               e.Item.Display = False
            End If
                </code>
            </example>
            <summary>Sets whether the GridItem will be visible or with style="display:none;"</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.Selected">
            <summary>Gets or set a value indicating whether the grid item is selected</summary>
            <example>
            	<para>You can check whether a certain item is selected using the Selected
                property:</para>
            	<code lang="CS" title="C#">
            protected void RadGrid1_PreRender(object sender, EventArgs e)
                {
                    foreach (GridDataItem dataitem in RadGrid1.MasterTableView.Items)
                    {
                        if (dataitem.Selected == true)
                        {
                            //do your thing
                        }
                    }
                }
                </code>
            	<code lang="VB" title="VB.NET">
            Protected Sub RadGrid1_PreRender(sender As Object, e As EventArgs)
               Dim dataitem As GridDataItem
               For Each dataitem In  RadGrid1.MasterTableView.Items
                  If dataitem.Selected = True Then
                    'do your thing
                  End If
               Next dataitem 
            End Sub 'RadGrid1_PreRender
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.Edit">
            <summary>Sets the Item in edit mode. Requires Telerik RadGrid to rebind.</summary>
            <remarks>
            	<para>
                    If <see cref="P:Telerik.Web.UI.GridTableView.EditMode"/> is set to InPlace, the grid column
                    editors will be displayed inline of this item.
                </para>
            	<para>
                    If <see cref="P:Telerik.Web.UI.GridTableView.EditMode"/> is set to EditForms, a new
                    GridItem will be created, which will be child of this item
                    (<strong>GridEditFormItem</strong>). The new item will hold the edit form.
                </para>
            </remarks>
            <example>
            	<para>We suggest using IsInEditMode instead of Edit to check whether an Item is in
                edit more or not.</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.GroupIndex">
            <summary>Gets the index of the Item in the group. This works only when grouping.</summary>
            <example>
                This example expands all items that meet the condition:
                <code lang="CS" title="C#">
            if (e.Item.GroupIndex == EditItemGroupIndex | EditItemGroupIndex.StartsWith(e.Item.GroupIndex + "_")) 
            {
             e.Item.Expanded = true;
            }
                </code>
            	<code lang="VB" title="VB">
            If e.Item.GroupIndex = EditItemGroupIndex Or EditItemGroupIndex.StartsWith(e.Item.GroupIndex &amp; "_") Then
            e.Item.Expanded = True
            End If
                </code>
            </example>
            <value>
            	<para>Returns a string formed: X_Y_Z, where:<br/>
                 - X is a zero-based value representing the group index (the first group of results
                will have index = 0)</para>
            	<para>- Y is a zero-based value representing the group level. If you group the grid
                using 2 criteria, the inner groups will have index = 1.</para>
            	<para>- Z is a zero-based value representing the GridItem index in the group (the
                first item will have index = 0)</para>
            	<para><strong>Note</strong> that if you use more criteria, you will have more
                indexes returned: X_Y_Z_W, where the last one is always the item index in the
                group.</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.IsDataBound">
            <summary>
            Gets a value indicating whether the grid item is bound to a data source.
            </summary>
            <example>
            Default value is true when the grid is databound.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridItem.IsInEditMode">
            <summary>
            Gets a value indicating whether the grid item is in edit mode at the
            moment.
            </summary>
            <example>
                Will locate the TextBox for Item in Edit mode:
                <code lang="CS" title="C#">
            if (e.Item is GridEditableItem &amp;&amp; e.Item.IsInEditMode)
                {
                  TextBox txt = (e.Item as GridEditableItem)["SomeColumnName"].Controls[0] as TextBox;
                }
                </code>
            	<code lang="VB" title="VB">
            If Typeof e.Item Is GridEditableItem And e.Item.IsInEditMode Then
                ...
            End If
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridCommandItem.#ctor(Telerik.Web.UI.GridTableView)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridCommandItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridCommandItem.PrepareItemStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridEditableItem">
            <summary>
            	<para>Represents the base class for any items that display and edit data in a
            <see cref="T:Telerik.Web.UI.GridTableView">GridTableView</see> of RadGrid. Inheritors has the
            capabilities to:</para>
            	<list type="bullet">
            		<item>Locate a table cell based on the column unique names</item>
            		<item>Extract values from the cells of column editors</item>
            		<item>Has a dictionary of saved-old-values that are necessary for optimistic concurency
            editing oprations</item>
            		<item>Edit/browse mode</item>
            		<item>EditManager instance, which is capable of locating the column
            editors</item></list>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableItem.InitializeEditorInCell(Telerik.Web.UI.IGridEditableColumn)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableItem.ExtractValues(System.Collections.IDictionary)">
            <summary>
            Extracts values for each column, using <see cref="M:Telerik.Web.UI.GridEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)"/>
            </summary>
            <param name="newValues">This dictionary to fill, this parameter should not be null</param>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableItem.UpdateValues(System.Object)">
            <summary>
            Extracts values for each column, using <see cref="M:Telerik.Web.UI.GridEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)"/> and updates values in provided object;
            </summary>
            <param name="objectToUpdate">The object that should be updated</param>
        </member>
        <member name="M:Telerik.Web.UI.GridEditableItem.GetDataKeyValue(System.String)">
            <summary>
            Get the DataKeyValues from the owner GridTableView with the corresponding item ItemIndex and keyName.
            The keyName should be one of the specified in the  <see cref="P:Telerik.Web.UI.GridTableView.DataKeyNames"/> array
            </summary>
            <param name="keyName">data key name</param>
            <returns>data key value</returns>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.EditManager">
            <summary>Allows you to access the column editors</summary>
            <example>
            	<code lang="CS" title="C#">
            GridEditManager editMan = editedItem.EditManager;
            IGridEditableColumn editableCol = (column as IGridEditableColumn);
            IGridColumnEditor editor = editMan.GetColumnEditor( editableCol );
                </code>
            	<code lang="VB" title="VB">
            Dim editMan As GridEditManager = editedItem.EditManager
            Dim editableCol As IGridEditableColumn = CType(column, IGridEditableColumn)
            Dim editor As IGridColumnEditor = editMan.GetColumnEditor(editableCol)
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.Item(System.String)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.Item(Telerik.Web.UI.GridColumn)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.SavedOldValues">
            <summary>Gets the old value of the edited item</summary>
            <example>
            	<code lang="CS" title="C#">
            foreach (DictionaryEntry entry in newValues)
                 {
                    Label1.Text += "\n&lt;br /&gt;Key: " + entry.Key + "&lt;br /&gt;New value: " + entry.Value + "&lt;br /&gt; Old value: " + editedItem.SavedOldValues[entry.Key] + "&lt;br /&gt;";
                 }
                </code>
            	<code lang="VB" title="VB">
            	</code>
            	<code lang="VB" title="VB">
            For Each entry As DictionaryEntry In newValues
             Label1.Text += "" &amp; Microsoft.VisualBasic.Chr(10) &amp; "&lt;br /&gt;Key: " + entry.Key + "&lt;br /&gt;New value: " + entry.Value + "&lt;br /&gt; Old value: " + editedItem.SavedOldValues(entry.Key) + "&lt;br /&gt;"
            Next
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.CanExtractValues">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridEditableItem.KeyValues">
            <example>
            	<code lang="CS" title="C#">
            string keyValues = ((GridEditableItem)e.Item).KeyValues;  
            if (keyValues.Contains("CustomerID"))  
                  Session["CustomerID"] = keyValues.Substring(13, keyValues.Length - 1);  
                  else 
                  Session["OrderID"] = keyValues.Substring(10, keyValues.Length - 1);
                </code>
            	<code lang="VB" title="VB">
            Dim keyValues As String = CType(e.Item, GridEditableItem).KeyValues
            If keyValues.Contains("CustomerID") Then
             Session("CustomerID") = keyValues.Substring(13, keyValues.Length - 1)
            Else
             Session("OrderID") = keyValues.Substring(10, keyValues.Length - 1)
            End If
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.GridDataItem">
            <summary>
            Summary description for GridDataItem.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridDataItem.ClientFireCommandFunction(System.String,System.String)">
            <summary>
            Generates a client-side function which fires a command with a given name and arguments
            </summary>
            <seealso cref="!:http://www.telerik.com/help/aspnet-ajax/grid_firecommand.html"/>
            <seealso cref="!:http://www.telerik.com/help/aspnet-ajax/grid_firecommand.html" cat="Client API">GridTableView fireCommand</seealso>
            <example>
            	<code lang="CS">
            protected void RadGrid1_ItemCreated(object sender, GridItemEventArgs e)
            {
                if (e.Item is GridDataItem)
                {
                    GridDataItem dataItem = (GridDataItem) e.Item;
                    ((Button) dataItem["MyTemplateColumn"].Controls[0]).OnClientClick =
                        dataItem.ClientFireCommandFunction("MyCommandName", "");
                }
            }
            </code>
            </example>
            <param name="commandName">Command's name</param>
            <param name="commandArgument">Command's argument</param>
        </member>
        <member name="M:Telerik.Web.UI.GridDataItem.SetVisibleChildren(System.Boolean)">
            <summary>Sets the visibility of the children items.</summary>
            <remarks>This method is for Telerik RadGrid internal usage.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridDataItem.InitializeEditorInCell(Telerik.Web.UI.IGridEditableColumn)">
            <remarks>This method is for Telerik RadGrid internal usage.</remarks>
        </member>
        <member name="T:Telerik.Web.UI.GridEditFormItem">
            <summary>
            Item that loads an EditForm during binding if <see cref="P:Telerik.Web.UI.GridTableView.EditMode"/> is <see cref="F:Telerik.Web.UI.GridEditMode.EditForms"/>. When in this mode
            RadGrid loads an EditFormItem for each normal data-bound item. EditForm is generated only for the items that are in <see cref="P:Telerik.Web.UI.GridItem.Edit"/> = true mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormItem.EditFormCell">
            <summary>
            The table cell where the edit form will be instantiated, during data-binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormItem.FormColumns">
            <summary>
            FormColumns are only available when EditFormType is GridEditFormType.AutoGenerated.
            These are the container controls for each edit-form-column. You cna find the edit controls 
            in these containers. You should not remove any controls from this containers.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridEditFormItem.ParentItem">
            <summary>
            The corresponding DataItem that the edit form is generated for.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridFilteringItem">
            <summary>
                It's an item, displaying input controls, which allows user to enter a filter values
                for each visible column in a GridTableView. By default the columns render a textbox
                and a button, displaying the filtering menu on click. This item is visible based on
                the settings of <see cref="P:Telerik.Web.UI.GridTableView.AllowFilteringByColumn"/> property.
                The items is displayed right under the header row of a GridTabelView.
            </summary>
            <seealso cref="!:grdSettingFilterTextBoxDimensions.html" cat="RadGrid Manual: How-To">Setting filter textbox dimensions/changing default filter image</seealso>
            <example>
            	<code lang="VB" title="Access controls of FilteringMenuItem" description="Setting filter textbox dimensions/changing default filter image">
            Protected Sub RadGrid1_ItemCreated(sender As Object, e As GridItemEventArgs) Handles RadGrid1.ItemCreated
               If Typeof e.Item Is GridFilteringItem Then
                  Dim filteringItem As GridFilteringItem = CType(e.Item, GridFilteringItem)
             
                  'set dimensions for the filter textbox 
                  Dim box As TextBox = CType(filteringItem("ContactName").Controls(0), TextBox)
                  box.Width = Unit.Pixel(30)
             
                  'set ImageUrl which points to your custom image
                  Dim image As Image = CType(filteringItem("ContactName").Controls(1), Image)
                 image.ImageUrl = "&lt;my_image_url&gt;"
               End If
            End Sub 'RadGrid1_ItemCreated
                </code>
            	<code lang="CS" title="Access controls of FilteringMenuItem" description="Setting filter textbox dimensions/changing default filter image">
            Protected void RadGrid1_ItemCreated(Object sender, GridItemEventArgs e)
            {
                     If (e.Item Is GridFilteringItem)
                    {
                        GridFilteringItem filteringItem = e.Item As GridFilteringItem;
             
                        //Set dimensions For the filter textbox 
                        TextBox box = filteringItem["ContactName"].Controls[0] As TextBox;
                        box.Width = Unit.Pixel(30);
             
                       //Set ImageUrl which points To your custom image
                       Image image = filteringItem["ContactName"].Controls[1] As Image;
                      image.ImageUrl = "&lt;my_image_url&gt;";
                    }
            }
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.GridFilteringItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridFilteringItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridFooterItem">
            <summary>
            Displays the footer row of a GridTableView with cells for each column in the grid similar to GridHeaderItem.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridFooterItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridFooterItem.Item(Telerik.Web.UI.GridColumn)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupHeaderItem">
            <summary>
            The item which splits the groups (when utilizing the grouping feature of RadGrid)
            and provides expand/collapse functionality for them.
            </summary>
            <example>
                Here is how you can get reference to the <strong>GridGroupHeaderItem</strong> on
                <strong>ItemDataBound</strong>:
                <code lang="VB" title="VB.NET">
            Private Sub RadGrid1_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs)
               If Typeof e.Item Is GridGroupHeaderItem Then
                  Dim item As GridGroupHeaderItem = CType(e.Item, GridGroupHeaderItem)
                  'do something here
               End If
            End Sub 'RadGrid1_ItemDataBound
                </code>
            	<code lang="CS" title="C#">
            private void RadGrid1_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
            {
             if ( e.Item is GridGroupHeaderItem )
             {
              GridGroupHeaderItem item = (GridGroupHeaderItem)e.Item;
              //do something here
             }
             }
            }
                </code>
            </example>
            <remarks>Created and meaningful only with grouping enabled.</remarks>
            <requirements>
            	<see cref="T:Telerik.Web.UI.GridGroupByExpression"/> should be applied to have such type of
                item(s).
            </requirements>
            <seealso cref="!:http://www.telerik.com/help/aspnet/grid/?grdCustomizeGridGroupHeaderItem.html">Customize GridGroupHeaderItem</seealso>
            <seealso cref="!:http://www.telerik.com/help/aspnet/grid/?grdPerformCalculationsInGroupHeader.html">Performing calculations in group header</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <summary>Marked for internal usage only</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <summary>Inherited from Control, for internal usage only</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.PrepareItemStyle">
            <summary>Inherited from Control, for internal usage only</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <summary>Inherited from Control, for internal usage only</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.GetChildItems">
            <summary>
                Method which returns the data items under the
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> group.
            </summary>
            <returns>An array of GridItem instances</returns>
            <example>
                The code below can be used to loop through the data items in a group on button
                click handler (for example): 
                <code lang="VB" title="VB.NET">
            Dim groupHeader As GridGroupHeaderItem = RadGrid1.MasterTableView.GetItems(GridItemType.GroupHeader)(0)
            Dim groupItems As GridItem() = groupHeader.GetChildItems()
            'traverse the items and operate with them further
                </code>
            	<code lang="CS" title="C#">
            GridGroupHeaderItem groupHeader= RadGrid1.MasterTableView.GetItems(GridItemType.GroupHeader)[0] as GridGroupHeaderItem;
            GridItem [] groupItems = groupHeader.GetChildItems();
            //traverse the items and operate with them further
                </code>
            </example>
            <remarks>Meaningful only with grouping enabled.</remarks>
            <requirements>
            	<see cref="T:Telerik.Web.UI.GridGroupByExpression"/> should be applied to have
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> available.
            </requirements>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupHeaderItem.SetVisibleChildren(System.Boolean)">
            <summary>
                Method which shows/hides the items in the group designated by the
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/>
            </summary>
            <returns>N/A</returns>
            <example>
                The code below will hide the items under the first group in the grid: 
                <code lang="VB" title="VB.NET">
            Dim groupHeader As GridGroupHeaderItem = RadGrid1.MasterTableView.GetItems(GridItemType.GroupHeader)(0)
            groupHeader.SetVisibleChildren(False)
                </code>
            	<code lang="CS" title="C#">
            GridGroupHeaderItem groupHeader = RadGrid1.MasterTableView.GetItems(GridItemType.GroupHeader)[0] as GridGroupHeaderItem;
            groupHeader.SetVisibleChildren(false);
                </code>
            </example>
            <remarks>Meaningful only with grouping enabled.</remarks>
            <requirements>
            	<see cref="T:Telerik.Web.UI.GridGroupByExpression"/> should be applied to have
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> available.
            </requirements>
            <param name="value">
            boolean, determines whether the items in the group will be displayed or
            hidden
            </param>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupHeaderItem.DataCell">
            <summary>The cell holding the content of the <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/></summary>
            <value>N/A</value>
            <example>
                Below is a sample code presenting how to customize the <strong>DataCell</strong>
                content dynamically on <strong>ItemDataBound:</strong>
            	<code lang="VB" title="VB.NET">
            Private Sub RadGrid1_ItemDataBound(sender As Object, e As Telerik.Web.UI.GridItemEventArgs)
               If Typeof e.Item Is GridGroupHeaderItem Then
                  Dim item As GridGroupHeaderItem = CType(e.Item, GridGroupHeaderItem)
                  Dim groupDataRow As DataRowView = CType(e.Item.DataItem, DataRowView)
             
                  'Clear the present text of the cell
                  item.DataCell.Text = ""
                  Dim column As DataColumn
                  For Each column In groupDataRow.DataView.Table.Columns
             
                     'Check the condition and add only the field you need
                     If column.ColumnName = "Country" Then
                        item.DataCell.Text += "Customized display - Country is " + groupDataRow("Country").ToString()
                     End If
                  Next column
               End If
            End Sub 'RadGrid1_ItemDataBound
                </code>
            	<code lang="CS" title="C#">
            Private void RadGrid1_ItemDataBound(Object sender, Telerik.Web.UI.GridItemEventArgs e)
            {
             If ( e.Item Is GridGroupHeaderItem )
             {
              GridGroupHeaderItem item = (GridGroupHeaderItem)e.Item;
              DataRowView groupDataRow = (DataRowView)e.Item.DataItem;
             
              //Clear the present text of the cell
              item.DataCell.Text = "";
              foreach( DataColumn column In groupDataRow.DataView.Table.Columns)
             
              //Check the condition And add only the field you need
              If ( column.ColumnName == "Country" )
              {
               item.DataCell.Text += "Customized display - Country is " + groupDataRow
               ["Country"].ToString();
              }
             }
            }
                </code>
            </example>
            <remarks>Created and meaningful only with grouping enabled.</remarks>
            <requirements>
            	<see cref="T:Telerik.Web.UI.GridGroupByExpression"/> should be applied to have
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> with DataCell.
            </requirements>
            <seealso cref="!:http://www.telerik.com/help/aspnet/grid/?grdCustomizeGridGroupHeaderItem.html">Customize GridGroupHeaderItem</seealso>
            <seealso cref="!:http://www.telerik.com/help/aspnet/grid/?grdPerformCalculationsInGroupHeader.html">Performing calculations in group header</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupHeaderItem.HasChildItems">
            <summary>
                Boolean property indicating whether the relevant
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> has child items inside the group it forms.
            </summary>
            <value>boolean</value>
            <example>
            	<code lang="VB" title="VB.NET">
            Dim groupHeader As GridGroupHeaderItem = grid.MasterTableView.GetItems(GridItemType.GroupHeader)(0)
            If (groupHeader.HasChildItems) Then
              'operate with the items
            Else 
              'do something else
            End If
                </code>
            	<code lang="CS" title="C#">
            GridGroupHeaderItem groupHeader = grid.MasterTableView.GetItems(GridItemType.GroupHeader)[0] as GridGroupHeaderItem;
            if (groupHeader.HasChildItems)
            {
               //operate with the items
            }
            else
            {
               //do something else
            }
                </code>
            </example>
            <remarks>Meaningful only with grouping enabled.</remarks>
            <requirements>
            	<see cref="T:Telerik.Web.UI.GridGroupByExpression"/> should be applied to have
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/> with this boolean property.
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupHeaderItem.CanExpand">
            <summary>Marked for internal usage</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridHeaderItem">
            <summary>
            Summary description for GridHeaderItem.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridHeaderItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridHeaderItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridHeaderItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridItemType">
            <summary>Enumeration for all grid item types.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridMultiRowItem">
            <summary>
            Summary description for GridMultiRowItem.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridMultiRowItem.#ctor(Telerik.Web.UI.GridTableView)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridMultiRowItem.PrepareItemStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTFoot.#ctor(Telerik.Web.UI.GridTableView)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTFoot.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTHead.#ctor(Telerik.Web.UI.GridTableView,System.Boolean)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridNestedViewItem">
            <summary>
            Item that contains the nested instances of GridTableView class, that appear as a child item of the corresponding GridDataItem
            </summary>
            <remarks>
            The child tables will be created when grid is databinding and will be added as controls of the <see cref="P:Telerik.Web.UI.GridNestedViewItem.NestedViewCell"/>
            Then these tables can also be accessed using the <see cref="P:Telerik.Web.UI.GridNestedViewItem.NestedTableViews"/> array.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridNestedViewItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <summary>
                Creates an instance of <see cref="T:Telerik.Web.UI.GridNestedViewItem">GridNestedViewItem</see> For
                internal usage only.
            </summary>
            <exclude/>
            <excludetoc/>
            <param name="ownerTableView">
                An instance of <see cref="T:Telerik.Web.UI.GridTableView">GridTableView Class</see>, which will
                contain the created item
            </param>
            <param name="itemIndex">
                The value for <see cref="P:Telerik.Web.UI.GridItem.ItemIndex">ItemIndex Property
                (Telerik.Web.UI.GridItem)</see> property
            </param>
            <param name="dataSetIndex">
                The value for <see cref="P:Telerik.Web.UI.GridItem.DataSetIndex">DataSetIndex Property
                (Telerik.Web.UI.GridItem)</see> property
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridNestedViewItem.PrepareItemStyle">
            <summary>Defines the default logic for rendering the item. For internal usage only.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridNestedViewItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <summary>This method is not intended to be used directly from your code</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridNestedViewItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <summary>This method is not intended to be used directly from your code</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridNestedViewItem.NestedViewCell">
            <summary>Gets the cell that contains the <see cref="P:Telerik.Web.UI.GridNestedViewItem.NestedTableViews"/>.</summary>
            <value>System.Web.UI.WebControls.TableCell</value>
            <example>
            	<code lang="CS">
            foreach (GridNestedViewItem nestedViewItem in radgrid1.MasterTableView.GetItems(GridItemType.NestedView))
            {
                TableCell cell = nestedViewItem.NestedViewCell;
                cell.BorderColor = System.Drawing.Color.Red;
            }
                </code>
            	<code lang="VB">
            Dim nestedViewItem As GridNestedViewItem
            For Each nestedViewItem In RadGrid1.MasterTableView.GetItems(GridItemType.NestedView)
                Dim cell As TableCell = nestedViewItem.NestedViewCell
                cell.BorderColor = System.Drawing.Color.Red
            Next nestedViewItem
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridNestedViewItem.NestedTableViews">
            <summary>
            Gets an array of GridTableView objects residing in the <see cref="P:Telerik.Web.UI.GridNestedViewItem.NestedViewCell"/>.
            </summary>
            <example>
            	<code lang="CS">
            GridTableView nestedTable = RadGrid1.MasterTableView.Items[0].ChildItem.NestedTableViews[0];
                </code>
            	<code lang="VB">
            Dim nestedTable As GridTableView = RadGrid1.MasterTableView.Items(0).ChildItem.NestedTableViews(0)
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridNestedViewItem.ParentItem">
            <summary>
             Gets a reference to a <see cref="T:Telerik.Web.UI.GridDataItem"/> that is parent of this
             <see cref="T:Telerik.Web.UI.GridNestedViewItem"/>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridNoRecordsItem">
            <summary>
            GridNoRecordsItem is used to display no records template, in the corresponding table view has <see cref="P:Telerik.Web.UI.GridTableView.ShowHeadersWhenNoRecords"/> is set to true (the default)
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridNoRecordsItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridNoRecordsItem.PrepareItemStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridNoRecordsItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridNoRecordsItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridPagerItem">
            <summary>
            Summary description for GridPagerItem.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridPagerItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32,System.Boolean)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridPagerItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridPagerItem.PrepareItemStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridPagerItem.InitializePagerItem(Telerik.Web.UI.GridColumn[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridPagerItem.GetNumericPager">
            <returns>Returns instance of control which contains grid numeric pager</returns>
            <example>
            	<para>If you have already defined an GridPagerTemplate, but still standard numeric
                pager is required you can attain this using the following code</para>
            	<code lang="CS">
            protected void RadGrid1_ItemCreated(object sender, Telerik.Web.UI.GridItemEventArgs e)
                {        
                    if (e.Item is GridPagerItem)
                    {
                        GridPagerItem gridPager = e.Item as GridPagerItem;
                        Control numericPagerControl = gridPager.GetNumericPager();
                        gridPager.Controls[0].Controls.Add(numericPagerControl);            
                    }
                }
            </code>
            	<code lang="VB">
            Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs)
                If Typeof e.Item Is GridPagerItem Then
                    Dim gridPager As GridPagerItem = TryCast(e.Item, GridPagerItem)
                    Dim numericPagerControl As Control = gridPager.GetNumericPager()
                    gridPager.Controls(0).Controls.Add(numericPagerControl)
                End If
            End Sub
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerItem.IsTopPager">
            <summary>Gets the position of the pager in the RadGrid. Default value is false.</summary>
            <example>
            	<code lang="CS" title="C#">
            if (((GridPagerItem)this.Item).IsTopPager)
            {
            Item.Visible = false;
            return;
            }
                </code>
            	<code lang="VB" title="VB">
            If CType(Me.Item, GridPagerItem).IsTopPager Then
             Item.Visible = False
             Return
            End If
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerItem.PagerContentCell">
            <summary>The Cell where the PagerItems are located</summary>
            <example>
            	<code lang="CS" title="C#">
            if (e.Item is GridPagerItem)
               {
                  GridPagerItem pagerItem = (e.Item as GridPagerItem);
                  pagerItem.PagerContentCell.Controls.Clear();
                  //custom paging
               }
                </code>
            	<code lang="VB" title="VB">
            If Typeof e.Item Is GridPagerItem Then
            Dim pagerItem As GridPagerItem = CType(e.Item, GridPagerItem)
             pagerItem.PagerContentCell.Controls.Clear
             'custom paging
            End If
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.GridStatusBarItem">
            <summary>
            GridStatusBarItem is used to display information messages for
            Telerik RadGrid status. Meaningful only when Telerik RadGrid is in AJAX
            mode.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridStatusBarItem.#ctor(Telerik.Web.UI.GridTableView,System.Int32,System.Int32)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.GridStatusBarItem.PrepareItemStyle">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridStatusBarItem.Initialize(Telerik.Web.UI.GridColumn[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridStatusBarItem.SetupItem(System.Boolean,System.Object,Telerik.Web.UI.GridColumn[],System.Web.UI.ControlCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridPagerMode">
            <summary>
            The mode of the pager defines what buttons will be displayed and how the pager
            will navigate through the pages.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.NextPrev">
            <summary>The grid Pager will display only the Previous and Next link buttons.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.NumericPages">
            <summary>The grid Pager will display only the page numbers as link buttons.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.NextPrevAndNumeric">
            <summary>
            The grid Pager will display the Previous button, page numbers,
            the Next button, the PageSize dropdown and information about the items and pages count.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.NextPrevNumericAndAdvanced">
            <summary>
            The grid Pager will display the Previous button, then the page numbers and then
            the Next button. On the next Pager row, the Pager will display text boxes for
            navigating to a specific page and setting the Page size (number of items per
            page).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.Advanced">
            <summary>
            The grid Pager will display text boxes for navigating to a specific page and
            setting the Page size (number of items per page).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerMode.Slider">
            <summary>
            The grid Pager will display a slider for very fast and AJAX-based navigation
            through grid pages.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridPagerPosition">
            <summary>This enumeration defines the possible positions of the pager item</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerPosition.Bottom">
            <summary>
            The Pager item will be displayed on the bottom of the grid. (Default
            value)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerPosition.Top">
            <summary>The Pager item will be displayed on the top of the grid.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridPagerPosition.TopAndBottom">
            <summary>
            The Pager item will be displayed both on the bottom and on the top of the
            grid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridPagerStyle">
            <summary>
            RadGrid and GridTableView use instance of this class to set style of thir PagerItem-s when rendering
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTableItemStyle">
            <summary>
            Summary description for GridTableItemStyle.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableItemStyle.IsDefault">
            <summary>
            Returns 'True' if none of the properties have been set
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.IsDefault">
            <value>Returns <strong>true</strong> if none of the properties have been set.</value>
            <summary>
            Gets a value indicating whether the default pager will be used, i.e. no
            customizations have been made.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.IsPagerOnBottom">
            <summary>
            Gets a value indicating whether the pager is displayed on the bottom of the
            grid.
            </summary>
            <value>
            Returns <strong>true</strong> if the pager will be displayed on the bottom of the
            grid. Otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.IsPagerOnTop">
            <summary>
            Gets a value indicating whether the pager is displayed on the top of the
            grid.
            </summary>
            <value>
            Returns <strong>true</strong> if the pager will be displayed on the top of the
            grid. Otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.Mode">
            <summary>
                Gets or sets the mode of Telerik RadGrid Pager. The mode defines what the pager
                will contain. This property accepts as values only members of the <see cref="T:Telerik.Web.UI.GridPagerMode">GridPagerMode Enumeration</see>.
            </summary>
            <value>
            Returns the pager mode as one of the values of the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridPagerMode.html">GridPagerMode
            Enumeration</a>.
            </value>
            <remarks>
                You should have Paging enabled by setting the <see cref="P:Telerik.Web.UI.RadGrid.PageSize"/>
                property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.NextPageText">
            <summary>
            Text that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.LastPageText">
            <summary>
            Text that would appear if Mode is PrevNext for 'last' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PrevPageImageUrl">
            <summary>
            Gets or sets url for Previous Page image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.NextPageImageUrl">
            <summary>
            Gets or sets url for Next Page image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.FirstPageImageUrl">
            <summary>
            Gets or sets url for first page image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.LastPageImageUrl">
            <summary>
            Gets or sets url for first page image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.FirstPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.NextPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.LastPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'last' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PrevPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'prev' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.NextPagesToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PrevPagesToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'prev' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PageSizeLabelText">
            <summary>
            The text of the page size label situated before the page size combo.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PageButtonCount">
            <summary>
                Gets or sets the number of buttons that would be rendered if pager Mode is
                <see cref="F:Telerik.Web.UI.GridPagerMode.NumericPages"/>
            </summary>
            <value>
            returns the number of button that will be displayed. The default value is 10
            buttons.
            </value>
            <remarks>
            By default 10 buttons will be displayed. If the number of grid pages is greater
            than 10, ellipsis will be displayed.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.Position">
            <summary>
                Gets or sets the Position of pager item(s).Accepts only values, members of the
                <see cref="T:Telerik.Web.UI.GridPagerPosition">GridPagerPosition Enumeration</see>.
            </summary>
            <value>
            Returns the Pager position as a value, member of the
            <a href="RadGridNet2~Telerik.Web.UI.GridPagerPosition.html">GridPagerPosition
            Enumeration</a>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PrevPageText">
            <summary>
            Text that would appear if Mode is PrevNext for 'previous' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.FirstPageText">
            <summary>
            Text that would appear if Mode is PrevNext for 'first' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.Visible">
            <summary>Gets or sets the visibility of the pager item</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.AlwaysVisible">
            <remarks>
            In order to display the grid pager regardless of the number of records returned
            and the page size, you should set this property of the corresponding GridTableView to
            <strong>true</strong>. Its default value is <strong>false</strong>.
            </remarks>
            <summary>
            Gets or set a value indicating whether the Pager will be visible regardless of
            the number of items. (See the remarks)
            </summary>
            <value>
            	<strong>true</strong>, if pager will be displayed, regardless of the number of
            grid items, othewise <strong>false</strong>. By fefault it is
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.EnableSEOPaging">
            <summary>
            Get or set a value indicating whether the SEO (Search Engine Optimized) paging
            enabled
            </summary>
            <isnew>December 15, 2006</isnew>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.UseRouting">
            <summary>
            Gets or sets a value indicating whether URL Routing is enabled for the 
            current web application
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.SEOPageIndexRouteParameterName">
            <summary>
            Gets or sets the name of the URL parameter that specifies the page number
            when SEO paging and routing are enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.SEORouteName">
            <summary>
            Gets or sets the name of the route that is used when SEO paging and routing are enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.HorizontalAlign">
            <summary>
                Gets or sets the horizontal align of the pager. Accepts as values members of the
                <see cref="P:Telerik.Web.UI.GridPagerStyle.HorizontalAlign"/> enumeration.
            </summary>
            <value>
                the horizontal align of the pager as a value from the
                <see cref="P:Telerik.Web.UI.GridPagerStyle.HorizontalAlign"/> enumeration.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.ShowPagerText">
            <summary>
            Gets or sets a value indicating whether the pager text or only the pager buttons
            will be displayed.
            </summary>
            <value>
            	<strong>true</strong> if both pager text and buttons will be displayed, otherwise
            <strong>false</strong>. By default it is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridPagerStyle.PagerTextFormat">
            <summary>
            The string used to format the description text that appears in a pager item. See
            the remarks.
            </summary>
            <remarks>
            The parameters {0) - {4} are mandatory.<br/>
            	<br/>
            Parameter {0} is used to display current page number.<br/>
            Parameter {1} is total number of pages.<br/>
            Parameter {2} will be replaced with the number of the first item in the current
            page.<br/>
            Parameter {3} will be set to the number of the last item in the current page.<br/>
            Parameter {4} indicates where pager buttons would appear.<br/>
            Parameter {5} corresponds to number of all items in the datasource.
            </remarks>
            <value>
            The default value is:<br/>
            	<font face="Courier New">Change page: {4}  Displaying page {0} of {1}, items {2}
            <font color="black"><font class="keyword">to</font> {3} of {5}</font></font>
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridPagingManager">
            <summary>
            Summary description for GridPagingManager.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagingManager.DataSourceCount">
            <summary>
            Number of items in the data-source
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPagingManager.Count">
            <summary>
            Number of items in the current page
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridPaperSize">
            <summary>
            Represents the paper size used when exporting to PDF.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridPdfSettings">
            <summary>
            Container of misc. grouping settings of RadGrid control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridPdfSettings.PaperSize">
            <summary>
            Gets or sets the physical paper size that RadGrid will use when exporting to PDF.
            </summary>
            <remarks>
            It will be overriden by setting PageWidth and PageHeight explicitly.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridPdfSettings.PageWidth">
            <summary>
            Gets or sets the page width that RadGrid will use when exporting to PDF.
            </summary>
            <remarks>
            This setting will override any predefined value that comes from the PaperSize property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridPdfSettings.PageHeight">
            <summary>
            Gets or sets the page height that RadGrid will use when exporting to PDF.
            </summary>
            <remarks>
            This setting will override any predefined value that comes from the PaperSize property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridPdfSettings.FontType">
            <summary>
            	<para class="">This property describes the different types of font embedding: Link,
                Embed and Subset.</para>
            </summary>
            <remarks>
                Possible values: 
                <list type="bullet">
            		<item>
            			<div class="">
            				<strong>Link</strong><br/>
                            The font program is referenced by name in the rendered PDF. Anyone who
                            views a rendered PDF with a linked font program must have that font
                            installed on their computer otherwise it will not display correctly.
                        </div>
            		</item>
            		<item>
            			<div class="">
            				<strong>Embed</strong><br/>
                            The entire font program is embedded in the rendered PDF. Embedding the
                            entire font program guarantees the PDF will display as intended by the
                            author on all computers, however this method does possess several
                            disadvantages:
                        </div>
            			<ol>
            				<li>
            					<div class="">
                                    Font programs can be extremely large and will significantly
                                    increase the size of the rendered PDF. For example, the MS
                                    Gothic TrueType collection is 8MB!
                                </div>
            				</li>
            				<li>
            					<div class="">
                                    Certain font programs cannot be embedded due to license
                                    restrictions. If you attempt to embed a font program that
                                    disallows embedding, RadGrid will substitute the font with a
                                    base 14 font and generate a warning message.
                                </div>
            				</li>
            			</ol>
            		</item>
            		<item>
            			<div class="">
            				<strong>Subset (default value)<br/></strong>Subsetting a font will
                            generate a new font that is embedded in the rendered PDF that contains
                            only the chars referenced by RadGrid. For example, if a particular
                            RadGrid utilised the Verdana font referencing only the character 'A', a
                            subsetted font would be generated at run-time containing only the
                            information necessary to render the character 'A'.<br/>
            				<br/>
                            Subsetting provides the benefits of embedding and significantly reduces
                            the size of the font program. However, small processing overhead is
                            incurred to generated the subsetted font.
                        </div>
            		</item>
            	</list>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.GridPropertyEvaluator">
            <summary>
            GridPropertyEvaluator
            A DataBinder.Eval() workalike that is a bit more forgiving and does not throw exceptions when it can't find a property.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridResizing">
            <summary>
            Summary description for GridResizing.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridScrolling">
            <summary>
            Contains properties related to customizing the settings for scrolling operation
            in Telerik RadGrid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridScrolling.AllowScroll">
            <summary>
            Gets or sets a value indicating whether scrolling will be enabled in
            Telerik RadGrid.
            </summary>
            <value>true, if scrolling is enabled, otherwise false (the default value).</value>
        </member>
        <member name="P:Telerik.Web.UI.GridScrolling.ScrollHeight">
            <summary>
            Gets or sets a value specifying the grid height in pixels (px) beyond which the
            scrolling will be enabled.
            </summary>
            <value>the default value is 300px</value>
        </member>
        <member name="P:Telerik.Web.UI.GridScrolling.UseStaticHeaders">
            <summary>
            Gets or sets a value indicating whether grid column headers will scroll as the
            rest of the grid items or will remain static (MS Excel ® style).
            </summary>
            <value>
            	<strong>true</strong> if headers remain static on scroll, otherwise
            <strong>false</strong> (the default value).
            </value>
            <remarks>
                This property is meaningful only when used in conjunction with
                <see cref="P:Telerik.Web.UI.GridScrolling.AllowScroll"/> set to <strong>true</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridScrolling.SaveScrollPosition">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will keep the
            scroll position during postbacks.
            </summary>
            <remarks>
                This property is meaningful only when used in conjunction with
                <see cref="P:Telerik.Web.UI.GridScrolling.AllowScroll"/> set to <strong>true</strong>.
            </remarks>
            <value>
            	<strong>true</strong> (the default value), if Telerik RadGrid keeps
            the scroll position on postback, otherwise <strong>false</strong> .
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridScrolling.EnableVirtualScrollPaging">
            <remarks>
            	<para>This property is particularly useful when working with huge datasets. Using
                the grid scrollbar, you can change the grid pages just like in Microsoft
                Word<font size="1">®.</font> When scrolling with the virtual scrollbar,
                Telerik RadGrid uses AJAX requests to change the pages, i.e. no
                Postbacks are performed. The overall behavior is smooth and with no flicker.</para>
            	<para>Note that you should have AJAX enabled for Telerik RadGrid by
                setting the <strong>EnableAJAX</strong>="<strong>True</strong>".</para>
            </remarks>
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will change
            the pages when you scroll using the grid scroller. This in terms of
            Telerik RadGrid is called Virtual Scrolling.
            </summary>
            <value>
            	<strong>true</strong>, if virtual scrolling is enabled, otherwise
            <strong>false</strong> (the default value).
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridSelecting">
            <summary>
            Provides properties related to setting the client-side selection in
            Telerik RadGrid.
            </summary>
            <remarks>
                You can get a reference to this class using
                <see cref="P:Telerik.Web.UI.GridClientSettings.Selecting"/> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.AllowCellSelect">
            <summary>not currently available</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.AllowMultiCellSelect">
            <summary>not currently available</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.AllowRowSelect">
            <summary>
            Gets or sets a value indicating whether you will be able to select a grid row on
            the client by clicking on it with the mouse.
            </summary>
            <value>
            true, if you will be able to select a row on the client, otherwise false (the
            default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.AllowColumnSelect">
            <summary>not currently available</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.AllowMultiColumnSelect">
            <summary>not currently available</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.EnableDragToSelectRows">
            <summary>
            Gets or sets a value indicating whether you will be able to select multiple rows
            by dragging a rectangle around them with the mouse.
            </summary>
            <value>
            true, if you can select rows by dragging a rectangle with the mouse, otherwise
            false (the default value)
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridSelecting.UseClientSelectColumnOnly">
            <summary>
            Gets or sets value indicating whether items can be only selected through GridClientSelectColumn 
            </summary>
            <value>
            true, if you can select rows only by clicking on the GridClientSelectColumn, otherwise
            false (the default value)
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridSelfHierarchySettings">
            <summary>
            Holds the column names presenting the self-referencing relations in the source
            table.
            </summary>
            <example>
            &lt;MasterTableView HierarchyDefaultExpanded="true" HierarchyLoadMode="Client"
            EnableNoRecordsTemplate="false"<br/>
            DataKeyNames= "ID,ParentID" Width="100%"&gt;<br/>
            	<font color="red">&lt;SelfHierarchySettings ParentKeyName="ParentID" KeyName="ID"
            /&gt;</font><br/>
            &lt;/MasterTableView&gt;
            </example>
            <remarks>Meaningful in cases of self-referenced grid.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridSelfHierarchySettings.IsSet">
            <remarks>This method is for Telerik RadGrid internal usage.</remarks>
            <summary>
            Checks if a self-hierarchy settings property value was changed and differs from its
            default.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSelfHierarchySettings.ParentKeyName">
            <summary>
            Gets or sets a value representing the parent ID field when building the
            self-referencing hierarchy.
            </summary>
            <remarks>
            The value property must be included in the <strong>DataKeyNames</strong> array
            for the <strong>MasterTableView</strong>.
            </remarks>
            <value>
            	<strong>string</strong>, representing the parent ID of the current table
            level.
            </value>
            <example>
            	<list type="termdef">
            		<item>
            			<description>
            				<pre>
            &lt;radG:RadGrid ID="RadGrid1" EnableAJAX="True" ShowHeader="true" runat="server" Skin="None"<br/>                        Width= "97%" GridLines="None" OnColumnCreated="RadGrid1_ColumnCreated"<br/>                        OnItemCreated="RadGrid1_ItemCreated"<br/>                        OnNeedDataSource= "RadGrid1_NeedDataSource"&gt;<br/>                        &lt;MasterTableView HierarchyDefaultExpanded="true" HierarchyLoadMode="Client" EnableNoRecordsTemplate="false"<br/>
            					<strong><u>DataKeyNames= "ID,ParentID"</u></strong> Width="100%"&gt;<br/>                            &lt;SelfHierarchySettings <strong><u>ParentKeyName="ParentID"</u></strong> KeyName="ID" /&gt;<br/>                        &lt;/MasterTableView&gt;<br/>                        &lt;ClientSettings AllowExpandCollapse="true" /&gt;
            &lt;/radG:RadGrid&gt;
            </pre>
            			</description>
            		</item>
            	</list>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridSelfHierarchySettings.KeyName">
            <summary>
            Gets or sets a value, representing the ID of the current table level in
            self-referencing hierarchy structure.
            </summary>
            <value><strong>string</strong>, representing the current table level.</value>
            <remarks>
            The value property must be included in the <strong>DataKeyNames</strong> array
            for the <strong>MasterTableView</strong>.
            </remarks>
            <example>
            	<list type="termdef">
            		<item>
            			<term>
            				<pre>
            &lt;radG:RadGrid ID="RadGrid1" EnableAJAX="True" ShowHeader="true" runat="server" Skin="None"<br/>                        Width= "97%" GridLines="None" OnColumnCreated="RadGrid1_ColumnCreated"<br/>                        OnItemCreated="RadGrid1_ItemCreated"<br/>                        OnNeedDataSource= "RadGrid1_NeedDataSource"&gt;<br/>                        &lt;MasterTableView HierarchyDefaultExpanded="true" HierarchyLoadMode="Client" EnableNoRecordsTemplate="false"<br/>
            					<strong><u>DataKeyNames= "ID,ParentID"</u></strong> Width="100%"&gt;<br/>                            &lt;SelfHierarchySettings ParentKeyName="ParentID" <strong><u>KeyName="ID"</u></strong> /&gt;<br/>                        &lt;/MasterTableView&gt;<br/>                        &lt;ClientSettings AllowExpandCollapse="true" /&gt;
            </pre>
            			</term>
            		</item>
            		<item>
            			<term>
            				<pre>
            &lt;/radG:RadGrid&gt;
            </pre>
            			</term>
            		</item>
            	</list>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridSelfHierarchySettings.MaximumDepth">
            <remarks>
            This property can be set <strong>only once</strong> when the grid is initialized
            and can not be modified.
            </remarks>
            <summary>
            Gets or sets a value indicating the level-depth limit of the nested
            tables.
            </summary>
            <value>
            	<strong>integer</strong>, representing the depth limit in levels of nesting. By
            default the limit is <strong>10 levels</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridSortOrder">
            <summary>Enumeration representing the order of sorting data in RadGrid</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridSortOrder.None">
            <summary>do not sort the grid data</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridSortOrder.Ascending">
            <summary>sorts grid data in ascending order</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridSortOrder.Descending">
            <summary>sorts grid data in descending order</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridSortExpression">
            <summary>
            Class that is used to define sort field and sort order for RadGrid
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.SortOrderAsString">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.SortOrderFromString(System.String)">
            <summary>
            Returns a GridSortOrder enumeration based on the string input. Takes either "ASC"
            or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.SortOrderAsString(Telerik.Web.UI.GridSortOrder)">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.Equals(System.Object)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.GetHashCode">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.SetSortOrder(System.String)">
            <summary>
            	<para>Sets the sort order.</para>
            	<para>The SortOrder paremeter should be either "Ascending", "Descending" or "None".</para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpression.Parse(System.String)">
            <summary>
            Parses a string representation of the sort order and returns
            GirdSortExpression.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpression.FieldName">
            <summary>Gets or sets the name of the field to which sorting is applied.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpression.SortOrder">
            <summary>Sets or gets the current sorting order.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridSortExpressionCollection">
            <summary>
            A collection of <see cref="T:Telerik.Web.UI.GridSortExpression"/> objects. Depending on the value of
            <see cref="P:Telerik.Web.UI.GridSortExpressionCollection.AllowMultiColumnSorting"/> it holds single
            or multiple sort expressions. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.#ctor(System.Collections.ArrayList)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.CopyTo(System.Array,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.CopyTo(Telerik.Web.UI.GridSortExpressionCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the
            <strong>GridSortExpressionCollection</strong>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.Add(System.Object)">
            <summary>Adds a <see cref="T:Telerik.Web.UI.GridSortExpression"/> to the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.Clear">
            <summary>Clears the GridSortExpressionCollection of all items.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.GetExpression(System.String)">
            <summary>
            Find a SortExpression in the collection if it contains any with sort field = expression
            </summary>
            <param name="expression">sort field</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.AddSortExpression(Telerik.Web.UI.GridSortExpression)">
            <summary>
            If <see cref="P:Telerik.Web.UI.GridSortExpressionCollection.AllowMultiColumnSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="sortExpression"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.AddSortExpression(System.String)">
            <summary>
            If <see cref="P:Telerik.Web.UI.GridSortExpressionCollection.AllowMultiColumnSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="expression">String containing sort field and optionaly sort order (ASC or DESC)</param>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.AddAt(System.Int32,Telerik.Web.UI.GridSortExpression)">
            <summary>
                Adds a <see cref="T:Telerik.Web.UI.GridSortExpression"/> to the collection at the specified
                index.
            </summary>
            <remarks>
                As a convenience feature, adding at an index greater than zero will set the
                <see cref="P:Telerik.Web.UI.GridSortExpressionCollection.AllowMultiColumnSorting"/> to <strong>true</strong>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.RemoveSortExpression(Telerik.Web.UI.GridSortExpression)">
            <summary>Removes the specified <see cref="T:Telerik.Web.UI.GridSortExpression"/> from the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.ContainsSortExpression(Telerik.Web.UI.GridSortExpression)">
            <summary>
                Returns true or false depending on whether the specified sorting expression exists
                in the collection. Takes a <see cref="T:Telerik.Web.UI.GridSortExpression"/> parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.ContainsExpression(System.String)">
            <summary>
            Returns true or false depending on whether the specified sorting expression
            exists in the collection. Takes a string parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.ChangeSortOrder(System.String)">
            <summary>
            Adds the sort field (expression parameter) if the collection does not alreqady contain the field. Else the sort order of the field will be inverted. The default change order is
            Asc -&gt; Desc -&gt; No Sort. The No-Sort state can be controlled using <see cref="P:Telerik.Web.UI.GridSortExpressionCollection.AllowNaturalSort"/> property
            </summary>
            <param name="expression"></param>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.GetSortString">
            <summary>
            Get a comma separated list of sort fields and sort-order, in the same format used by
            DataView.Sort string expression. Returns null (Nothing) if there are no sort expressions in the collection
            </summary>
            <returns>Comma separated list of sort fields and optionaly sort-order, null if there are no sort expressions in the collection</returns>
        </member>
        <member name="M:Telerik.Web.UI.GridSortExpressionCollection.IndexOf(Telerik.Web.UI.GridSortExpression)">
            <summary>
            Searches for the specified
            GridSortExpression and
            returns the zero-based index of the first occurrence within the entire
            <b>GridSortExpressionCollection</b>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.AllowMultiColumnSorting">
            <summary>
            If false, the collection can contain only one sort expression at a time.
            Trying to add a new one in this case will delete the existing expression
            or will change the sort order if its FiledName is the same.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.Count">
            <summary>Returns the number of items in the GridSortExpressionCollection.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.IsSynchronized">
            <summary>
            Gets a value indicating whether access to the GridSortExpressionCollection is
            synchronized (thread safe).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.Item(System.Int32)">
            <summary>This is the default indexer of the collection - takes an integer value.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.SyncRoot">
            <summary>
            	<a onclick="javascript:Track('ctl00_LibFrame_ctl07|ctl00_LibFrame_ctl14',this);" href="http://msdn2.microsoft.com/en-us/library/system.collections.arraylist.syncroot.aspx">
            	</a>
            	<table>
            		<tr>
            			<td>Gets an object that can be used to synchronize access to the
                        GirdSortExpressionCollection.</td>
            		</tr>
            	</table>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortExpressionCollection.AllowNaturalSort">
            <summary>
            Allow the no-sort state when changing sort order.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridSortingSettings">
            <summary>
            Holds miscellaneous properties related to sorting like the localization
            properties.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortingSettings.SortToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and there is no sorting applied.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortingSettings.SortedAscToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and the column is sorted ascending.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortingSettings.SortedDescToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and the column is sorted descending.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridSortingSettings.EnableSkinSortStyles">
            <summary>
            Defines whether a predefined CssClass will be applied to the sorted column's cells
            Default value is True
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridStateManager">
            <summary>
            State managemenet helper. This class is intended to be used only internally in RadGrid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridStatusBarItemSettings">
            <summary>This class holds settings related to the StatusBar item.</summary>
            <example>
            	<para><font color="blue" size="2">&lt;</font><font color="maroon" size="2">StatusBarSettings</font><font color="red" size="2">ReadyText</font><font color="blue" size="2">="Stand
                by"</font><font color="blue" size="2">/&gt;</font></para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridStatusBarItemSettings.StatusLabelID">
            <summary>Gets the ID of the Label that will display the status message.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridStatusBarItemSettings.ReadyText">
            <summary>
            Gets or sets the text that will be displayed in
            <strong>GridStatusBarItem</strong> when Telerik RadGrid does not perform
            any operations.
            </summary>
            <value>the default value is "Ready"</value>
        </member>
        <member name="P:Telerik.Web.UI.GridStatusBarItemSettings.LoadingText">
            <summary>
            Gets or sets the text that will be displayed in
            <strong>GridStatusBarItem</strong> when Telerik RadGrid is performing an
            AJAX request.
            </summary>
            <value>the default value is "Loading..."</value>
        </member>
        <member name="T:Telerik.Web.UI.GridStringTokenizer">
            <summary>
            A String Tokenizer that accepts Strings as source and delimiter. Only 1 delimiter is supported (either String or char[]).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Constructor for GridStringTokenizer Class.
            </summary>
            <param name="source">The Source String.</param>
            <param name="delimiter">The Delimiter String. If a 0 length delimiter is given, " " (space) is used by default.</param>
            <param name="includeDelimiters">whether to include delimiters in the list of returned tokens (default is false)</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.#ctor(System.String,System.String)">
            <summary>
            Constructor for GridStringTokenizer Class.
            </summary>
            <param name="source">The Source String.</param>
            <param name="delimiter">The Delimiter String. If a 0 length delimiter is given, " " (space) is used by default.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.#ctor(System.String,System.Char[])">
            <summary>
            Constructor for GridStringTokenizer Class.
            </summary>
            <param name="source">The Source String.</param>
            <param name="delimiter">The Delimiter String as a char[].  Note that this is converted into a single String and
            expects Unicode encoded chars.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.#ctor(System.String)">
            <summary>
            Constructor for GridStringTokenizer Class.  The default delimiter of " " (space) is used.
            </summary>
            <param name="source">The Source String.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.#ctor">
            <summary>
            Empty Constructor.  Will create an empty GridStringTokenizer with no source, no delimiter, and no tokens.
            If you want to use this GridStringTokenizer you will have to call the NewSource(string s) method.  You may
            optionally call the NewDelim(string d) or NewDelim(char[] d) methods if you don't with to use the default
            delimiter of " " (space).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.NewSource(System.String)">
            <summary>
            Method to add or change this Instance's Source string.  The delimiter will
            remain the same (either default of " " (space) or whatever you constructed 
            this GridStringTokenizer with or added with NewDelim(string d) or NewDelim(char[] d) ).
            </summary>
            <param name="newSrc">The new Source String.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.NewDelim(System.String)">
            <summary>
            Method to add or change this Instance's Delimiter string.  The source string
            will remain the same (either empty if you used Empty Constructor, or the 
            previous value of source from the call to a parameterized constructor or
            NewSource(string s)).
            </summary>
            <param name="newDel">The new Delimiter String.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.NewDelim(System.Char[])">
            <summary>
            Method to add or change this Instance's Delimiter string.  The source string
            will remain the same (either empty if you used Empty Constructor, or the 
            previous value of source from the call to a parameterized constructor or
            NewSource(string s)).
            </summary>
            <param name="newDel">The new Delimiter as a char[].  Note that this is converted into a single String and
            expects Unicode encoded chars.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.CountTokens">
            <summary>
            Method to get the number of tokens in this GridStringTokenizer.
            </summary>
            <returns>The number of Tokens in the internal ArrayList.</returns>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.HasMoreTokens">
            <summary>
            Method to probe for more tokens.
            </summary>
            <returns>true if there are more tokens; false otherwise.</returns>
        </member>
        <member name="M:Telerik.Web.UI.GridStringTokenizer.NextToken">
            <summary>
            Method to get the next (string)token of this GridStringTokenizer.
            </summary>
            <returns>A string representing the next token; null if no tokens or no more tokens.</returns>
        </member>
        <member name="P:Telerik.Web.UI.GridStringTokenizer.Source">
            <summary>
            Gets the Source string of this GridStringTokenizer.
            </summary>
            <returns>A string representing the current Source.</returns>
        </member>
        <member name="P:Telerik.Web.UI.GridStringTokenizer.Delim">
            <summary>
            Gets the Delimiter string of this GridStringTokenizer.
            </summary>
            <returns>A string representing the current Delimiter.</returns>
        </member>
        <member name="T:Telerik.Web.UI.GridTableFrame">
            <summary>
            The frame attribute for a table specifies which sides of the frame surrounding
            the table will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.Void">
            <summary>No sides.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.Above">
            <summary>The top side only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.Below">
            <summary>The bottom side only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.HSides">
            <summary>The top and bottom sides only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.LHS">
            <summary>The left-hand side only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.RHS">
            <summary>The right-hand side only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.VSides">
            <summary>The right and left sides only.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.Box">
            <summary>All four sides.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableFrame.Border">
            <summary>All four sides</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTableTextDirection">
            <summary>
            Specifies the two possible text directions. Related to
            Telerik RadGrid support for right-to-left languages.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableTextDirection.LTR">
            <summary>Left-To-Right direction</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableTextDirection.RTL">
            <summary>Right-To-Left direction</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridChildLoadMode">
            <summary>
            Defines the possible modes for loading the child items when
            <strong>RadGrid</strong> displays hierarchy.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridChildLoadMode.ServerBind">
            <summary>
            All child GridTableViews will be bound immediately when DataBind occurs for a parent GridTableView or RadGrid. 
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridChildLoadMode.ServerOnDemand">
            <seealso cref="P:Telerik.Web.UI.GridItem.Expanded"/>
            <seealso cref="P:Telerik.Web.UI.GridItem.Expanded"/>
            <seealso cref="P:Telerik.Web.UI.GridItem.Expanded"/>
            <summary>
            DataBind of a child GridTableView would only take place when an item is Expanded  <seealso cref="P:Telerik.Web.UI.GridItem.Expanded"/>. 
            This is the default value of <see cref="P:Telerik.Web.UI.GridTableView.HierarchyLoadMode"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridChildLoadMode.Client">
            <summary>
            	<para>This mode is similar to ServerBind, but items are expanded client-side, using
                JavaScript manipulations, instead of postback to the server.</para>
            	<para>
                    In order to use client-side hierarchy expand, you will need to set also
                    <see cref="P:Telerik.Web.UI.GridClientSettings.AllowExpandCollapse"/> to
                    <strong>true</strong>.
                </para>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupLoadMode">
            <summary>
            	<para>Specifies where the grouping will be handled. There are two options:</para>
            	<list type="bullet">
            		<item>Server-side - <strong>GridTableView.GroupLoadMode.Server</strong></item>
            		<item>Client-side -
            <strong>GridTableView.GroupLoadMode.Client</strong></item></list>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridGroupLoadMode.Server">
            <summary>
            This is the default behavior. Groups are expanded after postback to the server
            for example: 
            <div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<code class="VB">
            &lt;MasterTableView GroupLoadMode=<font color="black"><font class="string">"Server"</font>&gt;</font>
            						</code></td></tr></tbody></table></div>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridGroupLoadMode.Client">
            <summary>
            Groups will be expanded client-side and no postback will be performed.<br/>
            	<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<code class="VB">
            &lt;MasterTableView GroupLoadMode=<font color="black"><font class="string">"Client"</font>&gt;</font>
            						</code></td></tr></tbody></table></div>
            and set the client setting <strong>AllowGroupExpandCollapse</strong> to
            <strong>true:</strong><br/>
            	<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<code class="VB">
            &lt;ClientSettings AllowGroupExpandCollapse=<font color="black"><font class="string">"True"</font>&gt;</font>
            						</code></td></tr></tbody></table></div>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridEditMode">
            <summary>
            	<para>To display the grid column editors inline when switching grid item in edit
                mode (see the screenshot below), you simply need to change the
                <strong>EditMode</strong> property to <strong>InPlace</strong>.</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code>
            &lt;radg:RadGrid id=<font class="string" color="black">"RadGrid1"</font> runat=<font class="string" color="black">"server"</font>&gt;<br/>&lt;MasterTableView AutoGenerateColumns=<font class="string" color="black">"True"</font> EditMode=<font color="black"><font class="string">"InPlace"</font> /&gt;<br/>&lt;/radg:RadGrid&gt;</font>
            							</code>
            						</pre>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<para class=""><img alt="A row in edit mode" src="Images/grd_EditMode_markedup.png" border="0"/></para>
            	<para>To display the grid column editors in auto-generated form when switching grid
                item in edit mode (see the screenshot below), you simply need to change the
                MasterTableView <strong>EditMode</strong> property to
                <strong>EditForms</strong>.</para>
            	<div class="LanguageSpecific">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code>
            &lt;radg:RadGrid id=<font class="string" color="black">"RadGrid1"</font> runat=<font class="string" color="black">"server"</font>&gt;<br/>&lt;MasterTableView AutoGenerateColumns=<font class="string" color="black">"True"</font> EditMode=<font color="black"><font class="string">"EditForms"</font> /&gt;<br/>&lt;/radg:RadGrid&gt;</font>
            							</code>
            						</pre>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div><img alt="Edit in forms mode" src="images/grd_EditInForms_thumb.png" border="0"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridEditMode.InPlace">
            <summary>
            Telerik RadGrid will display the column editors inline when switching
            grid item in edit mode
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridEditMode.EditForms">
            <summary>
            Telerik RadGrid will display the grid column editors in
            auto-generated form when switching grid item in edit mode
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridDataSourcePersistenceMode">
            <summary>
            Indicate where RadGrid would store its data
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridDataSourcePersistenceMode.NoPersistence">
            <summary>
            DataSource (or generated html tables) data will not be stored.
            RadGrid will fire NeedDataSource event and will bind after each postback
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridDataSourcePersistenceMode.ViewState">
            <summary>
            Default - RadGrid stores data in the view-state bag.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridResetPageIndexAction">
            <summary>
                Discribe how <strong>RadGrid</strong> whould respond if the
                <see cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex"/> is invalid when data-binding. See
                <see cref="P:Telerik.Web.UI.GridTableView.CurrentResetPageIndexAction"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridResetPageIndexAction.SetPageIndexToFirst">
            <summary>
            CurrentPageIndex would be set to 0
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridResetPageIndexAction.SetPageIndexToLast">
            <summary>
            CurrentPageIndex would be set to current page count - 1
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridResetPageIndexAction.ReportError">
            <summary>
            RadGrid would repord an InvalidOperationException.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridInsertItemPageIndexAction.ShowItemOnFirstPage">
            <summary>
            InsertItem will be shown on first page
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridInsertItemPageIndexAction.ShowItemOnLastPage">
            <summary>
            InsertItem will be shown on the last page
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridInsertItemPageIndexAction.ShowItemOnCurrentPage">
            <summary>
            InsertItem will be shown on the current page
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridCommandItemDisplay">
            <summary>
            Specifies the position of the <see cref="F:Telerik.Web.UI.GridItemType.CommandItem"/> in
            Telerik RadGrid.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridCommandItemDisplay.None">
            <summary>There will be no command item.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridCommandItemDisplay.Top">
            <summary>The command item will be above the Telerik RadGrid</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridCommandItemDisplay.Bottom">
            <summary>The command item will be on the bottom of Telerik RadGrid</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridCommandItemDisplay.TopAndBottom">
            <summary>
            The command item will be both on the top and bottom of
            Telerik RadGrid.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridInsertItemDisplay">
            <summary>
            Specifies the position of the <see cref="M:Telerik.Web.UI.GridTableView.InsertItem"/> in
            Telerik RadGrid.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridInsertItemDisplay.Top">
            <summary>The command item will be above the Telerik RadGrid</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridInsertItemDisplay.Bottom">
            <summary>The command item will be on the bottom of Telerik RadGrid</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTableView">
            <summary>Represents one table of data.</summary>
            <remarks>
            	<para>In case of flat grid structure, i.e. no hierarchy levels, this object is the
            <strong>MasterTableView</strong> itself.</para>
            	<para>In case of hierarchical structure, the topmost <strong>GridTableView</strong> is
            the <strong>MasterTableView</strong>. All inner (child) tables are refered as
            DetailTables. Each table that has children tables has a collection called
            <see cref="P:Telerik.Web.UI.GridTableView.DetailTables"/> where you can access these tables.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableViewBase.OwnerGrid">
            <summary>Gets the owner RadGrid object.</summary>
            <value>The owner RadGrid object.</value>
            <seealso cref="P:Telerik.Web.UI.GridTableViewBase.OwnerGrid">OwnerGrid Property</seealso>
        </member>
        <member name="F:Telerik.Web.UI.GridTableView.filterItemStyle">
            <summary>Gets the rendering style of a FilterItem.</summary>
        </member>
        <member name="F:Telerik.Web.UI.GridTableView.commandItemStyle">
            <summary>Gets the rendering style of a CommandItem.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.#ctor(Telerik.Web.UI.RadGrid)">
            <summary>
            Constructs a new <strong>GridTableView</strong> and sets as its owner the RadGrid
            object.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.#ctor(Telerik.Web.UI.RadGrid,System.Boolean)">
            <summary>
            Constructs a new <strong>GridTableView</strong> and sets as its owner the
            <strong>RadGrid</strong> object. Sets the <strong>IsTrackingViewState</strong> property
            to the corresponding value of the boolean parameter.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
            <param name="OwnerGrid">The owner RadGrid object</param>
            <param name="IsTrackingViewState">
            Indicates whether <strong>RadGrid</strong> is saving changes to its view
            state.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.#ctor">
            <summary>
            Default contructor for <strong>GridTableView</strong> - generally used by Page
            serializer only.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableView">GridTableView Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.SwapColumns(System.String,System.String)">
            <summary>
            Swaps columns appearance position using the unique names of the two
            columns.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.SwapColumns(System.String,System.String)">SwapColumns Method</seealso>
            <param name="columnName1">first column unique name</param>
            <param name="columnName2">second column unique name</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.SwapColumns(System.Int32,System.Int32)">
            <summary>Swaps columns appearance position using order indexes of the two columns.</summary>
            <remarks>
            You should have in mind that <strong>GridExpandColumn</strong> and
            <strong>RowIndicatorColumn</strong> are always in front of data columns so that's why
            you columns will start from index 2.
            </remarks>
            <seealso cref="M:Telerik.Web.UI.GridTableView.SwapColumns(System.Int32,System.Int32)">SwapColumns Method</seealso>
            <param name="orderIndex1">first column order index</param>
            <param name="orderIndex2">second column order index</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ClearSelectedItems">
            <summary>
            Removes all selected items that belong to this <strong>GridTableView</strong>
            instance.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridSelecting">GridSelecting Class</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ClearEditItems">ClearEditItems Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ClearEditItems">
            <summary>
            Removes all edit items that belong to the <strong>GridTableView</strong>
            instance.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridEditFormItem">GridEditFormItem Class</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ClearSelectedItems">ClearSelectedItems Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.Rebind">
            <summary>
                Forces the Owner <strong>RadGrid</strong> to fire
                <see cref="E:Telerik.Web.UI.RadGrid.NeedDataSource"/> event then calls
                <see cref="M:Telerik.Web.UI.GridTableView.DataBind"/>.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridNeedDataSourceEventHandler">GridNeedDataSourceEventHandler Delegate</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.DataBind">DataBind Method</seealso>
            <remarks>
            The <strong>Rebind</strong> method should be called every time a change to the
            <strong>RadGrid</strong> columns/items has been made.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.DataBind">
            <summary>Binds the data source to the <strong>RadGrid</strong> instance.</summary>
            <remarks>
                Call this member to bind partially <strong>RadGrid</strong>. Before calling this
                method the <see cref="P:Telerik.Web.UI.GridTableView.DataSource"/> property should be assigned or you can use
                <see cref="M:Telerik.Web.UI.GridTableView.Rebind"/> method instead. Use <see cref="M:Telerik.Web.UI.RadGrid.DataBind"/>
                or <see cref="M:Telerik.Web.UI.RadGrid.Rebind"/> member to bind all
                <strong>GridTableView</strong>s in <strong>RadGrid</strong>.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataSource">DataSource Property</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.Rebind">Rebind Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ClearChildSelectedItems">
            <summary>For internal usage.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ClearChildEditItems">
            <summary>For internal usage.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ClearEditItemsAfterPageSizeChanged(System.Int32)">
            <summary>
            Clears any edited items with an index greater than the new page size.
            </summary>
            <param name="newPageSize">The new page size.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.GetColumn(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.GridColumn"/> based on its
            <see cref="P:Telerik.Web.UI.GridColumn.UniqueName"/>.
            </summary>
            <returns>
            The <strong>GridColumn</strong> object related to the
            <em>columnUniqueName</em>.
            </returns>
            <seealso cref="T:Telerik.Web.UI.GridColumn">GridColumn Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridColumn.UniqueName">UniqueName Property (Telerik.Web.UI.GridColumn)</seealso>
            <example>
            	<para>The following code snippet demonstrates how you to access a column at
                PreRender RadGrid event and make set it as invisible:</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radg:radgrid id="RadGrid1" DataSourceID="AccessDataSource1"
                runat="server" OnPreRender="RadGrid1_PreRender"&gt;<br/>
                &lt;/radg:radgrid&gt;<br/>
                &lt;asp:AccessDataSource ID="AccessDataSource1"
                DataFile="~/Grid/Data/Access/Nwind.mdb"<br/>
                SelectCommand="SELECT CustomerID, CompanyName, ContactName FROM Customers"<br/>
                runat="server"&gt;<br/>
                &lt;/asp:AccessDataSource&gt;</para>
            	<code lang="CS" title="[New Example]">
            protected void RadGrid1_PreRender(object sender, System.EventArgs e)
            {
                 RadGrid1.MasterTableView.GetColumn( "CustomerID" ).Visible = false;            
            }
            </code>
            </example>
            <seealso cref="M:Telerik.Web.UI.GridTableView.GetItems(Telerik.Web.UI.GridItemType[])">GetItems Method</seealso>
            <param name="columnUniqueName">The <see cref="P:Telerik.Web.UI.GridColumn.UniqueName"/> for the requested column.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.GetColumnSafe(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.GridColumn"/> based on its
            <see cref="P:Telerik.Web.UI.GridColumn.UniqueName"/>.
            </summary>
            <param name="columnUniqueName">The <see cref="P:Telerik.Web.UI.GridColumn.UniqueName"/> for the requested column.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.GetItems(Telerik.Web.UI.GridItemType[])">
            <summary>
            Returns a collection of <see cref="T:Telerik.Web.UI.GridItem"/> objects based on their
                 <see cref="P:Telerik.Web.UI.GridItem.ItemType"/>.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.GridItem"/>s collection of objects based on their
                <see cref="P:Telerik.Web.UI.GridItem.ItemType"/>.
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableView.GetColumn(System.String)">GetColumn Method</seealso>
            <param name="includeItemTypes">
            The <see cref="P:Telerik.Web.UI.GridItem.ItemType"/>, which will be used as a criteria for
            the collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PrepareControlHierarchy">
            <summary>
            Applies all view changes to control hierarchy before rendering
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.CreateTableView(Telerik.Web.UI.RadGrid,System.Boolean)">
            <summary>
            This method is used by RadGrid internally. Please do not use.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.Clone">
            <exclude/>
            <excludetoc/>
            <summary>For internal structure usage.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.CreateControlHierarchy(System.Boolean)">
            <summary>
            Recreates all GridItems and chld controls, using the DataSource or the ViewState
            </summary>
            <param name="useDataSource">'True' means that DataBind() is executing. 'False' means that Viewtate 
            has been just loaded after postback.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ExportToCSV">
            <summary>
            Exports the grid data in CSV format using the properties set in the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridExportSettings.html">ExportSettings</a>.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ExportToWord">ExportToWord Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ExportToExcel">ExportToExcel Method</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx">MS Excel and MS Word online example</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ExportToPdf">
            <summary>
            Exports the grid data in PDF format using the properties set in the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridExportSettings.html">ExportSettings</a>.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx">Exporting online example</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ExportToExcel">
            <summary>
            Exports the grid data in Microsoft Excel ® format using the properties set in the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridExportSettings.html">ExportSettings</a>.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ExportToWord">ExportToWord Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ExportToExcel">ExportToExcel Method</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Exporting/DefaultCS.aspx">MS Excel and MS Word online example</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ExportToWord">
            <summary>
            Exports the grid data in Microsoft Word ® format based on the selected ExportSettings.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridExportSettings">GridExportSettings Class</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.ExportToExcel">ExportToExcel Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.SetLevelRequiresBinding">
            <summary>For internal usage.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PrepareExport">
            <exclude/>
            <excludetoc/>
            <summary>For internal usage.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.ExtractValuesFromItem(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)">
            <summary>
                The passed IDictionary object (like Hashtable for example) will be filled with the
                names/values of the corresponding column data-fields and their values. Only
                instances of type <see cref="T:Telerik.Web.UI.GridEditableColumn"/> support extracting values.
            </summary>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/ExtractValues/DefaultCS.aspx">Using grid server-side API for extraction</seealso>
            <param name="newValues">the dictionary that will be filled</param>
            <param name="editedItem">the item to extract values from</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem)">
            <summary>
                Perform asynchronous update operation, using the DataSource control API and the
                Rebind method. Please, make sure you have specified the correct
                <strong>DataKeyNames</strong> for the <see cref="T:Telerik.Web.UI.GridTableView"/>. When the
                asynchronous operation calls back, RadGrid will fire
                <see cref="E:Telerik.Web.UI.RadGrid.ItemUpdated"/> event.
            </summary>
            <remarks>
            	<para>The following online example uses PerformUpdate method:</para>
            	<para>
            		<span id="Header1_ExampleLabel"><a href="http://www.telerik.com/demos/aspnet/Grid/Examples/AJAX/EditOnDblClick/DefaultCS.aspx">
                Edit on double-click</a></span></para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem)">PerformInsert Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem)">PerformDelete Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem,System.Boolean)">
            <summary>
                Perform asynchronous update operation, using the DataSource control API. Please
                make sure you have specified the correct <strong>DataKeyNames</strong> for the
                GridTableView. When the asynchronous operation calls back, RadGrid will fire
                <see cref="E:Telerik.Web.UI.RadGrid.ItemUpdated"/> event. The boolean property defines if
                RadGrid will <see cref="M:Telerik.Web.UI.GridTableView.Rebind"/> after the update.
            </summary> 
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformInsert Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformDelete Method</seealso>
            <param name="editedItem">the item that is in edit mode and should be updated</param>
            <param name="suppressRebind">set to true to prevent grid from binding after the update operation completes</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformInsert">
            <summary>
                Perform asynchronous insert of the new item, diplayed by RadGrid when in edit mode,
                using the DataSourceControl API, then <see cref="M:Telerik.Web.UI.GridTableView.Rebind"/>. When the
                asynchronous operation calls back, RadGrid will fire
                <see cref="E:Telerik.Web.UI.RadGrid.ItemInserted"/> event.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem)">PerformUpdate Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem)">PerformDelete Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.GetInsertItem">
            <summary>
            Get the item that appears when grid is in Insert Mode.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformInsert">PerformInsert Method</seealso>
            <returns>A reference to the newly inserted item for the respective GridTableView.</returns>
            <remarks>
            	<para>There is scenarios in which you need to make some changes with/depending on
                the inserted item.</para>
            	<para>If you want to predifine some controls values on item insertion, you should
                use the ItemCommand server-side event to access it:</para>
            	<pre>
            [C#]<br/>private void RadGrid1_ItemCommand(object source, Telerik.Web.UI.GridCommandEventArgs e)<br/>{<br/>  if (e.CommandName == RadGrid.InitInsertCommandName)<br/>
              {<br/>    e.Canceled = true;<br/>
                e.Item.OwnerTableView.InsertItem();<br/>    GridEditableItem insertedItem = e.Item.OwnerTableView.GetInsertItem();<br/>
                GridEditFormItem editFormItem = insertedItem as GridEditFormItem; <br/><br/>    TextBox box = editFormItem.FindControl("txtEmployeeID") as TextBox;<br/>    box.Text = "11";<br/>  }<br/>}
                </pre>
            	<pre>
            		<br/>[VB.NET]
                </pre>
            	<pre>
            Private Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs) Handles RadGrid1.ItemCommand<br/>         If (e.CommandName = RadGrid.InitInsertCommandName) Then<br/>
                        e.Canceled = True<br/>            e.Item.OwnerTableView.InsertItem()<br/>             Dim insertedItem As GridEditableItem = e.Item.OwnerTableView.GetInsertItem()<br/>
                         Dim editFormItem As GridEditFormItem = CType(insertedItem, GridEditFormItem)<br/><br/>             Dim box As TextBox = CType(MyUserControl.FindControl("insertedItem"), TextBox)<br/>            box.Text = "11"<br/>         End If<br/> End Sub
                </pre>
            	<para><span class="threadMessageBody" id="ctl00_ctl07_repeaterMessages_ctl00_lblMessageText">If you want to get access to
                the newly added row and its values to update in a custom data source, you can use
                the InsertCommand event:</span></para>
            	<para><span class="threadMessagebody">[C#]</span></para>
            	<pre>
            		<span class="threadMessagebody">protected void RadGrid1_InsertCommand(object source, GridCommandEventArgs e)  <br/> {  <br/>     GridDataInsertItem gridDataInsertItem =  <br/>         (GridDataInsertItem)(RadGrid1.MasterTableView.GetInsertItem());<br/>
                Hashtable ht = new Hashtable();  <br/>     gridDataInsertItem.ExtractValues(ht);  <br/>     //Loop through each "DictionaryEntry" in hash table and insert using key value <br/>     foreach (DictionaryEntry ent in ht)  <br/>
                 {  <br/>         //get the key values and insert to custom datasource. <br/>     } </span>
            		<span class="threadMessagebody"><br/>}</span>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As GridCommandEventArgs)<br/>    Dim gridDataInsertItem As GridDataInsertItem = CType(RadGrid1.MasterTableView.GetInsertItem,GridDataInsertItem)<br/>
                Dim ht As Hashtable = New Hashtable<br/>    gridDataInsertItem.ExtractValues(ht)<br/>    'Loop through each "DictionaryEntry" in hash table and insert using key value <br/>    For Each ent As DictionaryEntry In ht<br/>
                    'get the key values and insert to custom datasource. <br/>    Next<br/>End Sub
                </pre>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem)">
            <summary>
            Performs asynchronous insert operation, using the DataSourceControl API, then
            Rebinds. When the asynchronous operation calls back, RadGrid will fire
            <see cref="E:Telerik.Web.UI.RadGrid.ItemInserted"/> event.
            </summary>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem)">PerformUpdate Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem)">PerformDelete Method</seealso>
            <param name="editedItem">item to be inserted</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem,System.Boolean)">
            <summary>
            Perform asynchronous insert operation, using the DataSource control API.
            When the asynchronous operation calls back, RadGrid will fire <see cref="E:Telerik.Web.UI.RadGrid.ItemInserted"/> event.
            </summary> 
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformUpdate Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformDelete Method</seealso>
            <param name="editedItem">the item to be inserted</param>
            <param name="suppressRebind">True to prevent from binding after the insert operartion completes.</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem)">
            <summary>
            Perform asynchronous delete operation, using the DataSourceControl API the Rebinds the grid. Please make sure you have specified the correct <strong>DataKeyNames</strong> for the GridTableView.
            When the asynchronous operation calls back, RadGrid will fire <see cref="E:Telerik.Web.UI.RadGrid.ItemDeleted"/> event.
            </summary> 
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem)">PerformUpdate Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem)">PerformInsert Method</seealso>
            <param name="editedItem">The item that should be deleted</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.PerformDelete(Telerik.Web.UI.GridEditableItem,System.Boolean)">
            <summary>
            Perform delete operation, using the DataSourceControl API. Please make sure you have specified the correct <strong>DataKeyNames</strong> for the GridTableView.
            </summary>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformUpdate(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformUpdate Method</seealso>
            <seealso cref="M:Telerik.Web.UI.GridTableView.PerformInsert(Telerik.Web.UI.GridEditableItem,System.Boolean)">PerformInsert Method</seealso>
            <param name="editedItem">The item that should be deleted</param>
            <param name="suppressRebind">Set to true to stop error from binding</param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.InsertItem">
            <summary>
                Places the GridTableView in insert mode, allowing user to insert a new data-item
                values. The <see cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex"/> will be set to display the last
                page. You can use also the <see cref="P:Telerik.Web.UI.GridTableView.IsItemInserted"/> to place the
                GridTableView in insert mode.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.InsertItem(System.Object)">
            <summary>
                Places the GridTableView in insert mode, allowing the user to insert a new
                data-item values. The GridInsertItem created will be bound to values of the
                newDataItem object. The <see cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex"/> will be set to display
                the last page. You can use also the <see cref="P:Telerik.Web.UI.GridTableView.IsItemInserted"/> property to
                place the GridTableView in insert mode.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableView.InsertItem(System.Collections.IDictionary)">
            <summary>
                Places the GridTableView in insert mode, allowing the user to insert a new
                data-item values. The GridInsertItem created will be bound to values found in
                newValues dictionary; The <see cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex"/> will be set to
                display the last page. You can use also the <see cref="P:Telerik.Web.UI.GridTableView.IsItemInserted"/> to
                place the GridTableView in insert mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.OwnerID">
            <summary>Gets the ClientID of the RadGrid object that contains this instance.</summary>
            <value>
            The string representation of the ClientID object that contains the
            instance.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.OwnerID">OwnerID Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RetrieveDataTypeFromFirstItem">
            <summary>Gets or sets a value indicating whether items' data type should be
            retrieved from supplied enumerable's first item.</summary>
            <value>
            	<strong>true</strong> if this function is enabled; otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
            <remarks>
            You should enable this property in scenarios in which the item type should not
            be retrieved from the enumerable’s generic argument but from its first item’s
            type. Such cases will be the use of various O/R Mappers  where the enumerable
            is a entity base class and does not contains the actual object’s properties.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ItemTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered in the control in normal
            (non-Edit) mode.
            </summary>
            <value>A value of type System.Web.UI.CompiledBindableTemplateBuilder</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EditItemTemplate">
            <summary>
            Gets or sets the EditItemTemplate, which is rendered in the control in edit
            mode.
            </summary>
            <value>A value of type System.Web.UI.CompiledBindableTemplateBuilder</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.NestedViewTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered in the control in normal
            (non-Edit) mode.
            </summary>
            <value>A value of type System.Web.UI.CompiledBindableTemplateBuilder</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupHeaderTemplate">
            <summary>
            Gets or sets the group header ItemTemplate.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupFooterTemplate">
            <summary>
            Gets or sets the group footer ItemTemplate.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DetailTables">
            <summary>
            	<para>Gets or sets the collection of detail table views for this
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>.</para>
            </summary>
            <value>
            A collection of detail table views for this
            <strong>GridTableView</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyValues">DataKeyValues Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <remarks>
                Adding or removing objects to the <strong>DetailTables</strong> collection changes
                the hierarchical structure. 
                <para>
                    Use <see cref="M:Telerik.Web.UI.RadGrid.Rebind"/> after modifying the collection
                    programmatically.
                </para>
            	<para>This collection can also be altered unsing the environment designer.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CurrentResetPageIndexAction">
            <summary>
            	<para>
                    Gets or sets a value that describes how <strong>RadGrid</strong> would respond
                    if the <see cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex"/> is invalid when data-binding.
                </para>
            </summary>
            <remarks>
            	<para>
                    This property is not persisted in the ViewState. By deafult the value is
                    <see cref="F:Telerik.Web.UI.GridResetPageIndexAction.SetPageIndexToFirst"/>.
                </para>
            </remarks>
            <seealso cref="T:Telerik.Web.UI.GridResetPageIndexAction">GridResetPageIndexAction Enumeration</seealso>
            <value>
                A member of the <strong>GridResetPageIndexAction</strong> enumeration which
                describes how <strong>RadGrid</strong> would respond if the
                <strong>CurrentPageIndex</strong> is invalid when data-binding. By default its
                value is <see cref="F:Telerik.Web.UI.GridResetPageIndexAction.SetPageIndexToFirst"/>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GridLines">
            <summary>
            Gets or sets a value indicating whether the border lines for grid cells will be
            displayed.
            </summary>
            <value>
                One of the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableViewBase~GridLines.html">GridLines</a>
                values. The default is <see cref="F:System.Web.UI.WebControls.GridLines.Both"/>.
            </value>
            <remarks>
            	<para>Use the <strong>GridLines</strong> property to specify the gridline style for
                a <strong>GridTableView</strong> control. The following table lists the available
                styles.</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>Style</term>
            				<description>Description</description>
            			</item>
            			<item>
            				<term><strong>GridLines.None</strong></term>
            				<description>No gridlines are displayed.</description>
            			</item>
            			<item>
            				<term><strong>GridLines.Horizontal</strong></term>
            				<description>Displays the horizontal gridlines only.</description>
            			</item>
            			<item>
            				<term><strong>GridLines.Vertical</strong></term>
            				<description>Displays the vertical gridlines only.</description>
            			</item>
            			<item>
            				<term><strong>GridLines.Both</strong></term>
            				<description>Displays both the horizontal and vertical
                            gridlines.</description>
            			</item>
            		</list>
            	</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableViewBase.CellPadding">CellPadding Property (Telerik.Web.UI.GridTableViewBase)</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableViewBase.CellSpacing">CellSpacing Property (Telerik.Web.UI.GridTableViewBase)</seealso>
            <example>
            	<para>The following code snippet demonstrates how to use the
                <strong>GridLines</strong> property to hide the gridlines in a
                <strong>GridTableView</strong> control.</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radG:RadGrid ID="RadGrid1" runat="server"
                <strong>GridLines="None"</strong>&gt;<br/>
                &lt;/radGrid:RadGrid&gt;</para>
            	<code lang="VB" title="[New Example]">
            RadGrid1.GridLines = GridLines.None
                </code>
            	<code lang="CS" title="[New Example]">
            RadGrid1.GridLines = GridLines.None;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.GridTableView.HorizontalAlign">HorizontalAlign Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HorizontalAlign">
            <summary>
            	<para>Gets or sets a value indicating the horizontal alignment of the grid
                table.</para>
            </summary>
            <value>
                One of the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableViewBase~HorizontalAlign.html">HorizontalAlign</a>
                values. The default is <see cref="F:System.Web.UI.WebControls.HorizontalAlign.NotSet"/>.
            </value>
            <remarks>
            	<para>Use the <strong>HorizontalAlign</strong> property to specify the horizontal
                alignment of a <strong>GridTableView</strong> control within the page. The
                following table lists the different horizontal alignment styles.</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>Alignment value</term>
            				<description>Description</description>
            			</item>
            			<item>
            				<term><strong>HorizontalAlign.NotSet</strong></term>
            				<description>The horizontal alignment of the <b>GridTableView</b>
                            control has not been set.</description>
            			</item>
            			<item>
            				<term><strong>HorizontalAlign.Left</strong></term>
            				<description>The <b>GridTableView</b> control is left-aligned on the
                            page.</description>
            			</item>
            			<item>
            				<term><strong>HorizontalAlign.Center</strong></term>
            				<description>The <b>GridTableView</b> control is centered on the
                            page.</description>
            			</item>
            			<item>
            				<term><strong>HorizontalAlign.Right</strong></term>
            				<description>The <b>GridTableView</b> control is right-aligned on the
                            page.</description>
            			</item>
            			<item>
            				<term><strong>HorizontalAlign.Justify</strong></term>
            				<description>The <b>GridTableView</b> control is aligned with both the
                            left and right margins of the page.</description>
            			</item>
            		</list>
            	</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.GridLines">GridLines Property</seealso>
            <example>
            	<para>The following code snippet demonstrates how to use the
                <strong>HorizontalAlign</strong> property to align a <strong>GridTableView</strong>
                control on the right side of a page.</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radG:RadGrid ID="RadGrid1" runat="server"
                HorizontalAlign="Right"&gt;<br/>
                &lt;/radG:RadGrid&gt;</para>
            	<code lang="VB" title="[New Example]">
            RadGrid1.HorizontalAlign = HorizontalAlign.Right
                </code>
            	<code lang="CS" title="[New Example]">
            RadGrid1.HorizontalAlign = HorizontalAlign.Right;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DataKeyValues">
            <summary>
            	<para>
                    Gets a collection of <strong>DataKeyValue</strong> objects that represent the
                    data key value of the corresponding item (specified with its
                    <see cref="P:Telerik.Web.UI.GridItem.ItemIndex"/>) and the <strong>DataKeyName</strong>
                    (case-sensitive!). The <strong>DataKeyName</strong> should be one of the
                    specified in the <see cref="P:Telerik.Web.UI.GridTableView.DataKeyNames"/> array.
                </para>
            </summary>
            <example>
            	<code lang="CS" title="CS" description="The following code will display a message when an Item is updated. The message will show the Employee ID for the updated employee data.">
            protected void RadGrid1_ItemUpdated(object source, Telerik.Web.UI.GridUpdatedEventArgs e)
               {
                    if (e.Exception != null)
                    {
                        e.KeepInEditMode = true;
                        e.ExceptionHandled = true;
                        Response.Write("Employee " + e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["EmployeeID"] + " cannot be updated. Reason: " + e.Exception.Message);
                    }
                    else
                    {
                        Response.Write("Employee " + e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["EmployeeID"] + " updated");
                    }
               }
                </code>
            	<code lang="CS" title="CS short" description="In brief:">
            int eID = (int)tableView.DataKeyValues[editedItem.ItemIndex]["EmployeeID"];
                </code>
            	<code lang="VB" title="VB short" description="In brief:">
            Dim eID as Integer = (CInt)tableView.DataKeyValues(editedItem.ItemIndex)("EmployeeID")
                </code>
            	<code lang="CS" title="VB" description="The following code will display a message when an Item is updated. The message will show the Employee ID for the updated employee data.">
            Protected Sub RadGrid1_ItemUpdated(ByVal source As Object, ByVal e As Telerik.Web.UI.GridUpdatedEventArgs) Handles RadGrid1.ItemUpdated
               If Not e.Exception Is Nothing Then
                     e.KeepInEditMode = True
                     e.ExceptionHandled = True
                     Response.Write("Employee " + e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("EmployeeID").ToString() + " cannot be updated. Reason: " + e.Exception.Message)
               Else
                     Response.Write("Employee " + e.Item.OwnerTableView.DataKeyValues(e.Item.ItemIndex)("EmployeeID").ToString() + " updated")
               End If
            End Sub
                </code>
            </example>
            <returns>data key name/value pair</returns>
            <value>
            A
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridDataKeyArray.html">GridDataKeyArray</a> that
            contains the data key of each item in a <strong>GridTableView</strong> control.
            </value>
            <remarks>
            When the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~DataKeyNames.html">DataKeyNames</a>
            property is set, the <strong>GridTableView</strong> control automatically creates a
            <strong>DataKeyValue</strong> object for each item in the control. The
            <strong>DataKeyValue</strong> object contains the values of the field or fields
            specified in the <strong>DataKeyNames</strong> property. The
            <strong>DataKeyValue</strong> objects are then added to the control's
            <strong>DataKeysValue</strong> collection. Use the <strong>DataKeysValue</strong>
            property to retrieve the <strong>DataKeyValue</strong> object for a specific data item
            in the <strong>GridTableView</strong> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DataKeyNames">
            <summary>
            	<para>
                    Gets or sets an array of data-field names that will be used to populate the
                    <see cref="P:Telerik.Web.UI.GridTableView.DataKeyValues"/> collection, when the
                    <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                    control is databinding.
                </para>
            </summary>
            <remarks>
            	<para>Use the <strong>DataKeyNames</strong> property to specify the field or fields
                that represent the primary key of the data source.</para>
            	<para><strong>Note:</strong> Values set to this property are case-sensitive! The
                field names should be coma-separated.</para>
            	<para>
                    The data key names/values are stored in the <strong>ViewState</strong> so they
                    are available at any moment after grid have been data-bound, after postbacks,
                    etc. This collection is used when editing data, and for automatic relations
                    when binding an hiararchical grid (see
                    <see cref="P:Telerik.Web.UI.GridTableView.ParentTableRelation"/>).
                </para>
            	<para>If the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumn~Visible.html">Visible</a>
                property of a column field is set to false, the column is not displayed in the
                <strong>GridTableView</strong> control and the data for the column does not make a
                round trip to the client. If you want the data for a column that is not visible to
                make a round trip, add the field name to the <strong>DataKeyNames</strong>
                property.</para>
            </remarks>
            <value>
            An array that contains the names of the primary key fields for the items
            displayed in a <strong>GridTableView</strong> control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ClientDataKeyNames">
            <summary>
            	<para>This property is used to specify the field from the underlying datasource,
                which will populate the ClientDataKeyNames collection.<br/>
                This collection can later be accessed on the client, to get the key
                value(s).</para>
            	<para>The following example demonstrates the extraction of the data key value for a
                given data table view object:</para>
            	<para><br/>
                &lt;ClientSettings&gt;<br/>
                &lt;ClientEvents OnHierarchyExpanded="HierarchyExpanded" /&gt;<br/>
                &lt;/ClientSettings&gt;</para>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function HierarchyExpanded(sender, args)<br/>
                {<br/>
                var firstClientDataKeyName =
                args.get_tableView().get_clientDataKeyNames()[0];<br/>
                alert("Item with " + firstClientDataKeyName + ":'" +
                args.getDataKeyValue(firstClientDataKeyName)<br/>
                + "' expanded.");<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>The logic is placed in the OnHierarchyExpanded client side event handler,
                which is triggered when the user expands a node<br/>
                in a hierarchical grid, but can be used in any other event, given that a proper
                reference to the client table view object is obtained.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AdditionalDataFieldNames">
            <summary>
                Gets or sets values indicating <strong>DataFieldNames</strong> that should be
                sorted, grouped, etc and are not included as columns, in case the property
                <see cref="P:Telerik.Web.UI.GridTableView.RetrieveAllDataFields"/> is <strong>false</strong>.
            </summary>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyValues">DataKeyValues Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <value>
            An array of DataFieldNames values that should be sorted, grouped, etc and are not
            included as columns.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.RetrieveAllDataFields">RetrieveAllDataFields Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableNoRecordsTemplate">
            <summary>
                Gets or sets a value indicating whether <strong>RadGrid</strong> will show
                <see cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate"/> instead of the corresponding
                <see cref="T:Telerik.Web.UI.GridTableView"/> if there is no items to display.
            </summary>
            <value>
            	<strong>true</strong> if <see cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate"/> usage is enabled;
                otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate">NoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoMasterRecordsText">NoMasterRecordsText Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoDetailRecordsText">NoDetailRecordsText Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate">
            <summary>
            	<para>Gets or sets the template that will be displayed if a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control is bound to a data source that does not contain any records.</para>
            </summary>
            <remarks>
            	<para>
                    You can set the text that will appear in the NoRecordsTemplate through
                    <see cref="P:Telerik.Web.UI.GridTableView.NoMasterRecordsText">NoMasterRecordsText</see> and
                    <see cref="P:Telerik.Web.UI.GridTableView.NoDetailRecordsText">NoDetailRecordsText</see> properties.
                </para>
            	<para>By default if <strong>Items.Count</strong> equals 0,
                <strong>GridTableView</strong> will render no records message.</para>
            	<para>If <strong>NoRecordsTemplate</strong> and
                <strong>NoMasterRecordsText/</strong><strong>NoDetailRecordsText</strong> are set,
                the <strong>NoRecordsTemplate</strong> property has priority.</para>
            </remarks>
            <value>
            	<para>A
                <a href="http://msdn2.microsoft.com/en-us/library/system.web.ui.itemplate.aspx">System.Web.UI.ITemplate</a>
                that contains the custom content for the empty data row. The default value is a
                null reference (<strong>Nothing</strong> in Visual Basic), which indicates that
                this property is not set.</para>
            </value>
            <example>
            	<para>The following example demonstrates how <strong>NoRecordsTemplate</strong> can
                be implemented declaratively:</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radG:RadGrid ID="RadGrid1" runat="server"&gt;<br/>
                &lt;MasterTableView&gt;<br/>
                &lt;NoRecordsTemplate&gt;<br/>
                &lt;div style="text-align: center; height: 300px"&gt;<br/>
                &lt;asp:Label ForeColor="RoyalBlue" runat="server" ID="Label1"&gt;Currently there
                are no items in this folder.&lt;/asp:Label&gt;<br/>
                &lt;br /&gt;<br/>
                &lt;/div&gt;<br/>
                &lt;/NoRecordsTemplate&gt;<br/>
                &lt;/MasterTableView&gt;<br/>
                &lt;/radG:RadGrid&gt;</para>
            	<para>The following code snippet demonstrates how the NoRecordsTemplate can be
                implemented dynamically:</para>
            	<code lang="VB" title="[New Example]">
            RadGrid1.MasterTableView.NoRecordsTemplate = New NoRecordsTemplate()
              
            Public Class NoRecordsTemplate
                Implements ITemplate
                
                Public Sub New()
                End Sub
             
                Public Sub InstantiateIn(ByVal container As System.Web.UI.Control) Implements System.Web.UI.ITemplate.InstantiateIn
                    Dim lbl As Label = New Label()
                    lbl.ID = "Label1"
                    lbl.Text = "Currently there are no items in this folder."
                    lbl.ForeColor = System.Drawing.Color.RoyalBlue
                    container.Controls.Add(lbl)
                End Sub
            End Class
                </code>
            	<code lang="CS" title="[New Example]">
            RadGrid1.MasterTableView.NoRecordsTemplate = new NoRecordsTemplate();
             
            class NoRecordsTemplate: ITemplate
            {
                public NoRecordsTemplate()
                {
                }
                
                public void InstantiateIn(Control container)
                {
                    Label lbl = new Label();
                    lbl.ID = "Label1";
                    lbl.Text = "Currently there are no items in this folder.";
                    lbl.ForeColor = System.Drawing.Color.RoyalBlue;
                    container.Controls.Add(lbl);
                }
            }
                </code>
            </example>
            <notes>
            	<para>The
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~EnableNoRecordsTemplate.html">
                EnableNoRecordsTemplate Property</a> should be set to <strong>true</strong> (its
                default value) in order to be displayed the
                <strong>NoRecordsTemplate</strong>.</para>
            </notes>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EnableNoRecordsTemplate">EnableNoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoMasterRecordsText">NoMasterRecordsText Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoDetailRecordsText">NoDetailRecordsText Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.NoMasterRecordsText">
            <summary>
                Gets or sets the text that will be displayed in there is no
                <see cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate"/> defined and no records in the
                <strong>MasterTableView</strong>.
            </summary>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EnableNoRecordsTemplate">EnableNoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate">NoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoDetailRecordsText">NoDetailRecordsText Property</seealso>
            <value>
            The text to display in the empty data item. The default is an empty string ("")
            which indicates that this property is not set.
            </value>
            <remarks>
            The empty data row is displayed in a <strong>GridTableView</strong> control when
            the data source that is bound to the control does not contain any records. Use the
            <strong>NoMasterRecordsText</strong> and <strong>NoDetailRecordsText</strong> property
            to specify the text to display in the empty data item. Alternatively, you can define
            your own custom user interface (UI) for the empty data item by setting the
            <strong>NoRecordsTemplate</strong> property instead of this property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.NoDetailRecordsText">
            <summary>
                Gets or sets the text that will be displayed in there is no
                <see cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate"/> defined and no records in the Detail tables.
            </summary>
            <value>
            The text to display in the empty data item. The default is an empty string (""),
            which indicates that this property is not set.
            </value>
            <remarks>
            The empty data row is displayed in a <strong>GridTableView</strong> control when
            the data source that is bound to the control does not contain any records. Use the
            <strong>NoMasterRecordsText</strong> and <strong>NoDetailRecordsText</strong> property
            to specify the text to display in the empty data item. Alternatively, you can define
            your own custom user interface (UI) for the empty data item by setting the
            <strong>NoRecordsTemplate</strong> property instead of this property.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EnableNoRecordsTemplate">EnableNoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate">NoRecordsTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoMasterRecordsText">NoMasterRecordsText Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RetrieveAllDataFields">
            <summary>
            	<para>Gets or sets a value indicating whether the <strong>GridTableView</strong>
                will extract all bindable properties from the <strong>DataSource</strong> when
                binding, to perform operations like sorting, grouping, etc on DataFields that are
                not included in the column declarations.</para>
            </summary>
            <remarks>
                You can also use the <see cref="P:Telerik.Web.UI.GridTableView.AdditionalDataFieldNames"/> array to indicate
                RadGrid <strong>DataFieldNames</strong> that should be sorted, grouped, ect and are
                not included as columns.
            </remarks>
            <value>
            	<para><strong>true</strong>, if the <strong>GridTableView</strong> will extract all
                bindable properties from the <strong>DataSource</strong> when binding; otherwise,
                <strong>false</strong>. The default value is <strong>true.</strong></para>
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AdditionalDataFieldNames">AdditionalDataFieldNames Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.UseAllDataFields">
            <summary>
            	<para>Gets or sets a value indicating whether the <strong>GridTableView</strong>
                should use all retieved properties from the <strong>DataSource</strong> when
                binding, to perform operations like sorting, grouping, etc on DataFields that are
                not included in the column declarations.</para>
            </summary>
            <remarks>
                You can also use the <see cref="P:Telerik.Web.UI.GridTableView.AdditionalDataFieldNames"/> array to indicate
                RadGrid <strong>DataFieldNames</strong> that should be sorted, grouped, ect and are
                not included as columns.
            </remarks>
            <value>
            	<para><strong>false</strong>, if the <strong>GridTableView</strong> will not use all
                bindable properties from the <strong>DataSource</strong> when binding; otherwise,
                <strong>true</strong>. The default value is <strong>false.</strong></para>
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AdditionalDataFieldNames">AdditionalDataFieldNames Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RetrieveNullAsDBNull">
            <summary>
            	<para>Gets or sets a value indicating whether <strong>null</strong> values in the
                database will be retrieved as <strong>dbnull</strong> values.</para>
            </summary>
            <value>
            	<para><strong>true</strong> if the <strong>null</strong> values in the database
                will be retrieved as <strong>dbnull</strong> values; otherwise,
                <strong>false</strong>. The default is <strong>false</strong>.</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ParentTableRelation">
            <summary>
            Gets or sets the collection of data-field pairs that describe the relations in a
            hierarchical grid.
            </summary>
            <remarks>
                If you have specified the relations <strong>RadGrid</strong> will automatically
                filter the child data-source when when binding detail-tables. The specified
                <see cref="P:Telerik.Web.UI.GridRelationFields.MasterKeyField"/> in each
                <see cref="T:Telerik.Web.UI.GridRelationFields"/> in this collection should be a Key that is
                specified in the parent table's <see cref="P:Telerik.Web.UI.GridTableView.DataKeyNames"/> array. Each
                DetailKeyField specfied should also be included in this
                <strong>GridTableView</strong>'s DataKeyNames array.
                <strong>MasterTableView</strong> does not need any
                <strong>ParentTableRelations</strong>.
            </remarks>
            <value>
            A <strong>GridTableViewRelation</strong> collection of data-field pairs that
            describe the relations in a hierarchical grid.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableViewRelation">GridTableViewRelation Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyValues">DataKeyValues Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataKeyNames">DataKeyNames Property</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Hierarchy/ThreeLevel/DefaultCS.aspx">Hierarchy online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.SelfHierarchySettings">
            <summary>
            Gets a set the options for <strong>GridTableView</strong>'s self-hierarchy
            behavior.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridSelfHierarchySettings">GridSelfHierarchySettings Class</seealso>
            <value>Options for <strong>GridTableView</strong>'s self-hierarchy behavior.</value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Hierarchy/SelfReferencing/DefaultCS.aspx">Self-referencing hierarchy online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.NestedViewSettings">
            <summary>
            Gets a set of options for the <strong>GridTableView's</strong> data-bound
            nested view template.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CommandItemSettings">
            <summary>Gets a set the options for <strong>GridTableView</strong>'s command item.</summary>
            <value>The options for <strong>GridTableView</strong>'s command item.</value>
            <seealso cref="T:Telerik.Web.UI.GridCommandItemSettings">GridCommandItemSettings Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CommandItemDisplay">CommandItemDisplay Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DataSource">
            <summary>
            	<para>Gets or sets the object from which the data-bound control retrieves its list
                of data items.</para>
            </summary>
            <remarks>
            	<para>
                    Generally the <strong>DataSource</strong> object references
                    <see cref="P:Telerik.Web.UI.RadGrid.DataSource"/>. Assign this property only if you need to
                    change the default behavior or <see cref="T:Telerik.Web.UI.RadGrid"/>.
                </para>
            	<para>
            		<strong>RadGrid</strong> modifies this property when
                    <see cref="P:Telerik.Web.UI.RadGrid.DataSource"/> is assigned.
                </para>
            	<para>On postback the <strong>DataSource</strong> property settings are not
                persisted due to performance reasons. Note, however, that you can save the grid
                <strong>DataSource</strong> in a <strong>Session/Application/Cache</strong>
                variable and then retrieve it from there after postback invocation. Respectively,
                you can get the changes made in the data source in a dataset object and then
                operate with them.</para>
            	<para>This property cannot be set by themes or style sheet themes.</para>
            </remarks>
            <value>
            An object that represents the data source from which the
            <strong>GridTableView</strong> control retrieves its data. The default is a null
            reference (<strong>Nothing</strong> in Visual Basic).
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataSourceID">DataSourceID Property</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/SimpleBinding/DefaultCS.aspx">Simple data-binding online example</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/Binding/DefaultCS.aspx">Various data sources online example</seealso>
            <seealso cref="T:Telerik.Web.UI.GridNeedDataSourceEventHandler">GridNeedDataSourceEventHandler Delegate</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DataSourceID">
            <summary>
            Gets or sets the ID of the <strong>DataSource</strong> control used for
            population of this <strong>GridTableView</strong> data items.
            </summary>
            <example>
            	<para class="sourcecode">[ASPX/ASCX]<br/>
                &lt;radG:RadGrid ID="RadGrid1" runat="server"
                DataSourceID="SessionDataSource1"&gt;<br/>
                 ............<br/>
                &lt;/radG:RadGrid&gt;</para>
            </example>
            <value>
            	<para>The ID of a control that represents the data source from which the data-bound
                control retrieves its data. The default is String.Empty ("").</para>
            </value>
            <remarks><para>This property cannot be set by themes or style sheet themes.</para></remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DataSource">DataSource Property</seealso>
            <seealso cref="T:Telerik.Web.UI.GridNeedDataSourceEventHandler">GridNeedDataSourceEventHandler Delegate</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ParentItem">
            <summary>
            Gets a reference to a <strong>GridItem</strong> that is a parent of this
            <strong>GridTableView</strong>, when this <strong>GridTableView</strong> represents a
            child table in a hierarchical structure.
            </summary>
            <value>A reference to the server control's parent control.</value>
            <remarks>
            Whenever a page is requested, a hierarchy of server controls on that page is
            built. This property allows you to determine the parent control of the current server
            control in that hierarchy, and to program against it.
            </remarks>
            <remarks>
            Whenever a page is requested, a hierarchy of server controls on that page is
            built. This property allows you to determine the parent control of the current server
            control in that hierarchy, and to program against it.
            </remarks>
            <seealso cref="T:Telerik.Web.UI.GridItem">GridItem Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.FilterExpression">
            <summary><para>Gets or sets the filtering options for grid columns.</para></summary>
            <remarks>
            In the most common case, Telerik RadGrid checks all filtering options
            for each column, then prepares a filter expression and sets this property internally. 
            <para><strong>Note:</strong> You should be careful when setting this property as it may
            break the whole filtering functionality for your grid.</para>
            	<para>More info on the way, the expressions are created you can find
            <a href="http://msdn2.microsoft.com/en-US/library/system.data.datacolumn.expression(VS.80).aspx">
            here</a> (external link to MSDN library).</para>
            </remarks>
            <example>
            	<code lang="VB" title="Set FilterExpression" description="Set FilterExpression on initial page load">
            If (Not Page.IsPostBack) Then
                        RadGrid1.MasterTableView.FilterExpression = "([Country] LIKE '&lt;see cref="Germany"/&gt;') "
             
                        Dim column As GridColumn = RadGrid1.MasterTableView.GetColumnSafe("Country")
                        column.CurrentFilterFunction = GridKnownFunction.Contains
                        column.CurrentFilterValue = "Germany"
                    End If
                </code>
            	<code lang="CS" title="Set FilterExpression" description="Set FilterExpression on initial page load">
            if (!Page.IsPostBack) 
                    {
                        RadGrid1.MasterTableView.FilterExpression = "([Country] LIKE \'&lt;see cref="Germany"/&gt;\') ";
             
                        GridColumn column = RadGrid1.MasterTableView.GetColumnSafe("Country");
                        column.CurrentFilterFunction = GridKnownFunction.Contains;
                        column.CurrentFilterValue = "Germany";
                    }
                </code>
            </example>
            <seealso cref="!:grdApplyingDefaultFilterOnInitialLoad.html" cat="RadGrid Manual">Applying default filter on initial load</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupsDefaultExpanded">
            <summary>
            Gets or sets a value indicating whether the groups will be expanded on grid load
            (<strong>true</strong> by default).
            </summary>
            <value>
            	<strong>true</strong>, if the groups will be expanded on grid load; otherwise,
            <strong>false</strong>. The default value is <strong>true</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.GroupLoadMode">GroupLoadMode Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.GroupByExpressions">GroupByExpressions Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HierarchyDefaultExpanded">
            <summary>
            Gets or sets a value indicating whether the hierarchy will be expanded by
            default. The default value of the property is false.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RowIndicatorColumn">
            <summary>
            Gets a reference to the <see cref="P:Telerik.Web.UI.GridTableView.RowIndicatorColumn"/> object, allowing
            you to customize its settings.
            </summary>
            <remarks>The property setter does nothing and should not be used. It works around a bug in the VS.NET designer.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ExpandCollapseColumn">
            <summary>
            Gets a reference to the <see cref="P:Telerik.Web.UI.GridTableView.ExpandCollapseColumn"/> object, allowing
            you to customize its settings.
            </summary>
            <remarks>The property setter does nothing and should not be used. It works around a bug in the VS.NET designer.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HierarchyLoadMode">
            <summary>
            	<para>
                    Gets or sets a value indicating when the <strong>DataBind</strong> of the child
                    <strong>GridTableView</strong> will occur when working in hierarchy mode.
                    Accepts values from <see cref="T:Telerik.Web.UI.GridChildLoadMode"/> enumeration. See the
                    remars for details.
                </para>
            </summary>
            <remarks>
            	<para>Changing this propery value impacts the performance the following way:</para>
            	<list type="bullet">
            		<item>In <strong>ServerBind</strong> mode - Roundtrip to the database only when
                    grid is bound. ViewState holds all detail tables data. Only detail table-views
                    of the expanded items are rendered. Postback to the server to expand an
                    item</item>
            		<item>In <strong>ServerOnDemand</strong> mode - Roundtrip to the database when
                    grid is bound and when item is expanded. ViewState holds data for only visible
                    Items (smallest possible). Only detail table-views of the expanded items are
                    rendered. Postback to the server to expand an item.</item>
            		<item>In <strong>Client</strong> mode - Roundtrip to the database only when
                    grid is bound. ViewState holds all detail tables data. All items are rendered -
                    even is not visible (not expanded). NO postback to the server to expand an item
                    - expand/collapse of hierarchy items is managed client-side.<br/>
            			<strong>Note:</strong> In order to use client-side hierarchy expand, you will
                    need to set also
                    <strong><see cref="P:Telerik.Web.UI.GridClientSettings.AllowExpandCollapse"/></strong>
                    to <strong>true</strong>.</item>
            	</list>
            </remarks>
            <value>The default value is <strong>ServerOnDemand</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupLoadMode">
            <summary>
            	<para>Specifies where the grouping will be handled. There are two options:</para>
            	<list type="bullet">
            		<item>Server-side - <strong>GridTableView.GroupLoadMode.Server</strong></item>
            		<item>Client-side -
            <strong>GridTableView.GroupLoadMode.Client</strong></item></list>
            </summary>
            <remarks>
            	<para><strong>GridTableView.GroupLoadMode.Server</strong></para>
            	<para>This is the default behavior. Groups are expanded after postback to the server
            for example:</para>
            	<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code inline="true">
            &lt;MasterTableView GroupLoadMode=<font color="black"><font class="string">"Server"</font>&gt;</font>
            							</code>
            						</pre></td></tr></tbody></table></div>
            	<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            		<strong>GridTableView.GroupLoadMode.Client</strong></div>
            	<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">Groups will be
            expanded client-side and no postback will be performed.<br/>
            		<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            			<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            				<tbody>
            					<tr>
            						<td nowrap="nowrap">
            							<pre>
            								<code>
            &lt;MasterTableView GroupLoadMode=<font color="black"><font class="string">"Client"</font>&gt;</font>
            								</code>
            							</pre></td></tr></tbody></table></div>
            and set the client setting <strong>AllowGroupExpandCollapse</strong> to
            <strong>true:</strong><br/>
            		<div class="LanguageSpecific" style="DISPLAY: block" name="Code_VB">
            			<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            				<tbody>
            					<tr>
            						<td nowrap="nowrap">
            							<pre>
            								<code>
            &lt;ClientSettings AllowGroupExpandCollapse=<font color="black"><font class="string">"True"</font>&gt;</font>
            								</code>
            							</pre></td></tr></tbody></table></div></div>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EditMode">
            <remarks>
            	<para>There are two possible values defined by the <strong>GridEditMode</strong>
                enumeration:</para>
            	<list type="bullet">
            		<item>InPlace</item>
            		<item>EditForms</item>
            	</list>
            	<para>To display the grid column editors inline when switching grid item in edit
                mode (see the screenshot below), you simply need to change the
                <strong>EditMode</strong> property to <strong>InPlace</strong>.</para>
            	<div class="LanguageSpecific" name="Code_VB">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code>
            &lt;radg:RadGrid id=<font class="string" color="black">"RadGrid1"</font> runat=<font class="string" color="black">"server"</font>&gt;<br/>&lt;MasterTableView AutoGenerateColumns=<font class="string" color="black">"True"</font> EditMode=<font color="black"><font class="string">"InPlace"</font> /&gt;<br/>&lt;/radg:RadGrid&gt;</font>
            							</code>
            						</pre>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<para class=""><img alt="A row in edit mode" src="Images/grd_EditMode_markedup.png" border="0"/></para>
            	<para>To display the grid column editors in auto-generated form when switching grid
                item in edit mode (see the screenshot below), you simply need to change the
                MasterTableView <strong>EditMode</strong> property to
                <strong>EditForms</strong>.</para>
            	<div class="LanguageSpecific">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap">
            						<pre>
            							<code>
            &lt;radg:RadGrid id=<font class="string" color="black">"RadGrid1"</font> runat=<font class="string" color="black">"server"</font>&gt;<br/>&lt;MasterTableView AutoGenerateColumns=<font class="string" color="black">"True"</font> EditMode=<font color="black"><font class="string">"EditForms"</font> /&gt;<br/>&lt;/radg:RadGrid&gt;</font>
            							</code>
            						</pre>
            					</td>
            				</tr>
            			</tbody>
            		</table>
            	</div><img alt="Edit in forms mode" src="images/grd_EditInForms_thumb.png" border="0"/>
            </remarks>
            <summary>
            	<para>FormsGets or sets a value indicating how a <strong>GridItem</strong> will
                look in edit mode.</para>
            </summary>
            <value>
            A value indicating how a <strong>GridItem</strong> will look in edit mode. The
            default is <strong>EditForms</strong>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridEditMode">GridEditMode Enumeration</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowMultiColumnSorting">
            <summary>
                Gets or sets the value indicating wheather more than one column can be sorted in a
                single <strong>GridTableView</strong>. The order is the same as the sequence of
                expressions in <see cref="P:Telerik.Web.UI.GridTableView.SortExpressions"/>.
            </summary>
            <value>
            	<strong>true</strong>, if more than one column can be sorted in a single
            <strong>GridTableView</strong>; otherwise, <strong>false</strong>. The default value is
            <strong>false</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowSorting">AllowSorting Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SortExpressions">SortExpressions Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowNaturalSort">
            <summary>
            Gets or sets the value indicated whether the no-sort state when changing sort
            order will be allowed.
            </summary>
            <value>
            	<strong>true</strong>, if the no-sort state when changing sort order will be
            allowed; otherwise, <strong>false</strong>. The default value is
            <strong>true</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SortExpressions">SortExpressions Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowSorting">AllowSorting Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowSorting">
            <summary>
            	<para>Gets or sets a value indicating whether the sorting feature is
                enabled.</para>
            </summary>
            <value>
            	<para>
            		<strong>true</strong> if the sorting feature is enabled; otherwise,
                    <strong>false</strong>. The default is <see cref="P:Telerik.Web.UI.RadGrid.AllowSorting"/>.
                </para>
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SortExpressions">SortExpressions Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomSorting">AllowCustomSorting Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowMultiColumnSorting">AllowMultiColumnSorting Property</seealso>
            <remarks>
            	<para>When a data source control that supports sorting is bound to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control, the <strong>GridTableView</strong> control can take advantage of the data
                source control's capabilities and provide automatic sorting functionality.</para>
            	<para>To enable sorting, set the <strong>AllowSorting</strong> property to
                <strong>true</strong>. When sorting is enabled, the heading text for each column
                field with its
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~SortExpressions.html">SortExpressions</a>
                property set is displayed as a link button.</para>
            	<para>Clicking the link button for a column causes the items in the
                <strong>GridTableView</strong> control to be sorted based on the sort expression.
                Typically, the sort expression is simply the name of the field displayed in the
                column, which causes the <strong>GridTableView</strong> control to sort with
                respect to that column. To sort by multiple fields, use a sort expression that
                contains a comma-separated list of field names. You can determine the sort
                expression that the <strong>GridTableView</strong> control is applying by using the
                SortExpressions property. Clicking a column's link button repeatedly toggles the
                sort direction between ascending and descending order.</para>
            	<para><strong>Note</strong> that if you want to sort the grid by a column different
                than a GridBoundColumn, you should set also its
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumn~SortExpression.html">SortExpression</a>
                property to the desired data field name you want the column to be sorted by.</para>
            </remarks>
            <notes>
            	<para>Different data sources have different requirements for enabling their sorting
                capabilities. To determine the requirements, see the documentation for the specific
                data source.</para>
            	<para>The <strong>SortExpression</strong> property for an automatically generated
                columns field is automatically populated. If you define your own columns through
                the <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumnCollection.html">Columns</a>
                collection, you must set the <strong>SortExpression</strong> property for each
                column; otherwise, the column will not display the link button in the
                header.</para>
            </notes>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowNaturalSort">AllowNaturalSort Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SortExpressions">SortExpressions Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowFilteringByColumn">
            <summary>
            	<para>Gets or sets a value indicating whether the filtering by column feature is
                enabled.</para>
            </summary>
            <value>
            	<para>
            		<strong>true</strong> if the filtering by column feature is enabled; otherwise,
                    <strong>false</strong>. Default value is the value of
                    <see cref="P:Telerik.Web.UI.RadGrid.AllowFilteringByColumn"/>.
                </para>
            </value>
            <remarks>
            	<para>
                    When the value is true, <strong>GridTableView</strong> will display the
                    filtering item, under the table's header item. The filtering can be controlled
                    based on a column through column properties:
                    <see cref="P:Telerik.Web.UI.GridColumn.FilterListOptions"/> ,
                    <see cref="P:Telerik.Web.UI.GridColumn.CurrentFilterFunction"/>,
                    <see cref="P:Telerik.Web.UI.GridColumn.CurrentFilterValue"/>. The column
                    <see cref="M:Telerik.Web.UI.GridColumn.SupportsFiltering"/> method is used to determine if
                    a column can be used with filtering. Generally, this function returns the value
                    set to AllowFiltering for a specific column. For example
                    <see cref="T:Telerik.Web.UI.GridBoundColumn"/> will return the values of
                    <see cref="P:Telerik.Web.UI.GridBoundColumn.AllowFiltering"/> property.
                </para>
            </remarks>
            <seealso cref="T:Telerik.Web.UI.GridFilteringItem">GridFilteringItem Class</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/Filtering/DefaultCS.aspx">Basic filtering online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableHeaderContextMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the header context menu should be 
                 enabled.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the header context menu feature is enabled; otherwise,
                     <strong>false</strong>. Default value is the value of
                     <see cref="P:Telerik.Web.UI.RadGrid.EnableHeaderContextMenu"/>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableHeaderContextAggregatesMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the option to set columns aggregates should appear in 
             	header context menu.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the set columns aggregates option is enabled; otherwise,
                     <strong>false</strong>. Default is <strong>false</strong>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableHeaderContextFilterMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the header context filter menu should be 
                 enabled.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the header context filter menu feature is enabled; otherwise,
                     <strong>false</strong>. Default value is the value of
                     <see cref="P:Telerik.Web.UI.RadGrid.EnableHeaderContextFilterMenu"/>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AutoGenerateColumns">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will
            automatically generate columns at runtime based on its
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~DataSource.html">DataSource</a>.
            </summary>
            <value>
            	<para>
                    A value indicating whether Telerik RadGrid will automatically
                    generate columns at runtime based on its <strong>DataSource</strong>. The
                    default value is the value of <strong>RadGrid</strong>'s property
                    <see cref="P:Telerik.Web.UI.RadGrid.AutoGenerateColumns"/>.
                </para>
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AutoGeneratedColumns">AutoGeneratedColumns Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DetailTableIndex">
            <summary>For internal usage.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ChildSelectedItems">
            <summary>
            	<para>
                    Gets all items among the hierarchy of
                    <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                    items that are selected. The selected items in a <strong>GridTableView</strong>
                    are cleared when <see cref="P:Telerik.Web.UI.GridTableView.ParentItem"/> collapses and the
                    <strong>ParentItem</strong> becomes selected.
                </para>
            </summary>
            <value>
            A <strong>GridItemCollection</strong> of items among the hierarchy of
            <strong>GridTableView</strong> items that are selected.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridItemCollection">GridItemCollection Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ChildEditItems">
            <summary>
            	<para>
                    Gets all items among the hierarchy of
                    <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                    items that are in edit mode. The edit items in a <strong>GridTableView</strong>
                    are cleared when <see cref="P:Telerik.Web.UI.GridTableView.ParentItem"/> collapses.
                </para>
            </summary>
            <value>A GridItemCollection of items that are in edit mode.</value>
            <seealso cref="T:Telerik.Web.UI.GridItemCollection">GridItemCollection Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EditMode">EditMode Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EditFormSettings">EditFormSettings Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableColumnsViewState">
            <summary>
            Gets or sets a value indicating whether all columns settings will be persisted in
            the ViewState or not.
            </summary>
            <value>
            	<strong>true</strong> if columns are kept in the view state; otherwise
            <strong>false</strong>. The default value is <strong>true</strong>.
            </value>
            <requirements>
                Set this property to false if you need to change dynamically the
                <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> structure of the <strong>RadGrid</strong>.
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowCustomSorting">
            <summary>Gets or sets if the custom sorting feature is enabled.</summary>
            <remarks>
                With custom sorting turned on, RadGrid will display as Sorting Icons, will maintain
                the SortExpressions collection and so on, but it will not actually sort the Data.
                You should perform the custom sorting in the SortCommand event handler. You can
                also use the <see cref="M:Telerik.Web.UI.GridSortExpressionCollection.GetSortString"/> method,
                which will return the sort expressions string in the same format as it wold be used
                by a DataView component.
            </remarks>
            <value>
            	<strong>true</strong>, if custom sorting feature is enabled; otherwise,
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowSorting">AllowSorting Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SortExpressions">SortExpressions Property</seealso>
            <seealso cref="T:Telerik.Web.UI.GridSortCommandEventHandler">GridSortCommandEventHandler Delegate</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowCustomPaging">
            <summary>Gets or sets if the custom paging feature is enabled.</summary>
            <value>
            	<strong>true</strong>, if the custom paging feature is enabled; otherwise,
                <strong>false</strong>. Default value is the value of
                <see cref="P:Telerik.Web.UI.RadGrid.AllowCustomPaging"/>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/CustomPaging/DefaultCS.aspx">Custom paging online example</seealso>
            <remarks>
                There are cases in which you may want to fetch only a fixed number of records and
                perform operations over this specified set of data. Telerik RadGrid allows such
                data manipulation through the custom paging mechanism integrated in the control.
                The main steps you need to undertake are: 
                <list type="bullet">
            		<item>Set <b>AllowPaging = true</b> and <b>AllowCustomPaging = true</b> for
                    your grid instance</item>
            		<item>Implement code logic which to extract merely a fixed number of records
                    from the grid source and present them in the grid structure</item>
            		<item>The total number of records in the grid source should be defined through
                    the <b>VirtualItemCount</b> property of the MasterTableView/GridTableView
                    instance. Thus the grid "understands" that the data source contains the
                    specified number of records and it should fetch merely part of them at a time
                    to execute requested operation.</item>
            	</list>Another available option for custom paging support is through the
                ObjectDataSource control custom paging feature:<br/>
            	<a href="http://www.telerik.com/help/radgrid/v4_Net2/?grdCustomPagingThroughObjectDataSourcePopulation.html">
                Custom paging with ObjectDataSource grid content generator</a>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowPaging">
            <summary><para>Gets or sets a value indicating whether the paging feature is enabled.</para></summary>
            <value>
            	<para>
            		<strong>true</strong> if the paging feature is enabled; otherwise,
                    <strong>false</strong>. The default is <see cref="P:Telerik.Web.UI.RadGrid.AllowPaging"/>.
                </para>
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PageCount">PageCount Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PageSize">PageSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagingManager">PagingManager Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagerStyle">PagerStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.RenderPagerStyle">RenderPagerStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagerTemplate">PagerTemplate Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CurrentPageIndex">CurrentPageIndex Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CurrentResetPageIndexAction">CurrentResetPageIndexAction Property</seealso>
            <remarks>
            	<para>Instead of displaying all the records in the data source at the same time,
                the <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control can automatically break the records up into pages. If the data source
                supports the paging capability, the <strong>GridTableView</strong> control can take
                advantage of that and provide built-in paging functionality. The paging feature can
                be used with any data source object that supports the
                <em>System.Collections.ICollection</em> interface or a data source that supports
                paging capability.</para>
            	<para>To enable the paging feature, set the <strong>AllowPaging</strong> property
                to <strong>true</strong>. By default, the <strong>GridTableView</strong> control
                displays 10 records on a page at a time. You can change the number of records
                displayed on a page by setting the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~PageSize.html">PageSize</a>
                property. To determine the total number of pages required to display the data
                source contents, use the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~PageCount.html">PageCount</a>
                property. You can determine the index of the currently displayed page by using the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~CurrentPageIndex.html">CurrentPageIndex</a>
                property.</para>
            	<para>When paging is enabled, an additional row called the pager item is
                automatically displayed in the <strong>GridTableView</strong> control. The pager
                row contains controls that allow the user to navigate to the other pages. You can
                control the settings of the pager row (such as the pager display mode, the number
                of page links to display at a time, and the pager control's text labels) by using
                the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~PagerStyle.html">PagerStyle</a>
                properties. The pager row can be displayed at the top, bottom, or both the top and
                bottom of the control by setting the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridPagerStyle~Position.html">Position</a>
                property. You can also select from one of six built-in pager display modes by
                setting the <a href="Telerik.Web.UI~Telerik.Web.UI.GridPagerMode.html">Mode</a>
                property.</para>
            	<para>The <strong>GridTableView</strong> control also allows you to define a custom
                template for the pager row. For more information on creating a custom pager row
                template, see
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~PagerTemplate.html">PagerTemplate</a>.</para>
            	<para>The <strong>GridTableView</strong> control provides an event that you can use
                to perform a custom action when paging occurs.</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>Event</term>
            				<description>Description</description>
            			</item>
            			<item>
            				<term>
            					<see cref="E:Telerik.Web.UI.RadGrid.PageIndexChanged"/>
            				</term>
            				<description>Occurs when one of the pager buttons is clicked, but after
                            the <b>GridTableView</b> control handles the paging operation. This
                            event is commonly used when you need to perform a task after the user
                            navigates to a different page in the control.</description>
            			</item>
            		</list>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CanRetrieveAllData">
            <summary><para>Gets or sets a value indicating whether Telerik RadGrid should retrieve all data and ignore server paging in case of filtering or grouping.</para></summary>
            <value>
            	<para>
            		<strong>true</strong> (default) if the retrieve all data feature is enabled; otherwise,
                    <strong>false</strong>.
                </para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.PageSize">
            <summary>
            	<para>
                    Specify the maximum number of items that would appear in a page, when paging is
                    enabled by <see cref="P:Telerik.Web.UI.GridTableView.AllowPaging"/> or
                    <see cref="P:Telerik.Web.UI.GridTableView.AllowCustomPaging"/> property. Default value is the value of
                    <see cref="P:Telerik.Web.UI.RadGrid.PageSize"/>.
                </para>
            </summary>
            <value>The number of records to display on a single page. The default is 10.</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The PageSize property is set to a value less than 1.</exception>
            <remarks>
            When the paging feature is enabled (by setting the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~AllowPaging.html">AllowPaging</a>
            property to true), use the <strong>PageSize</strong> property to specify the number of
            records to display on a single page.
            </remarks>
            <value><para>The number of records to display on a single page. The default is 10.</para></value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowAutomaticUpdates">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will perform
            automatic updates, i.e. using the <strong>DataSource</strong> controls
            functionality.
            </summary>
            <value>
            	<strong>true</strong>, if Telerik RadGrid will perform automatic
            updates; otherwise, <strong>false</strong>. The default value is
            <strong>false</strong>.
            </value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/AllEditableColumns/DefaultCS.aspx">Automatic operations online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowAutomaticInserts">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will perform
            automatic inserts, i.e. using the <strong>DataSource</strong> controls
            functionality.
            </summary>
            <value>
            	<strong>true</strong>, if the Telerik RadGrid will perform automatic
            inserts; otherwise, <strong>false</strong>. The default value is
            <strong>false</strong>.
            </value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/AllEditableColumns/DefaultCS.aspx">Automatic operations online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AllowAutomaticDeletes">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will perform
            automatic deletes, i.e. using the <strong>DataSource</strong> controls
            functionality.
            </summary>
            <value>
            	<strong>true</strong>, if Telerik RadGrid will perform automatic
            deletes; otherwise, <strong>false</strong>. The default value is
            <strong>false</strong>.
            </value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/DataEditing/AllEditableColumns/DefaultCS.aspx">Automatic operations online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Columns">
            <summary>
            	<para>Gets a collection of
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumn.html">GridColumn</a> objects
                that represent the column fields in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
            A
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumnCollection.html">GridColumnCollection</a>
            that contains all the column fields in the <strong>GridTableView</strong>
            control.
            </value>
            <remarks>
            	<para>A column field represents a column in a <strong>GridTableView</strong>
                control. The <strong>Columns</strong> property (collection) is used to store all
                the explicitly declared column fields that get rendered in the GridTableView
                control. You can also use the <strong>Columns</strong> collection to
                programmatically manage the collection of column fields.</para>
            	<para>The column fields are displayed in the <strong>GridTableView</strong> control
                in the order that the column fields appear in the <strong>Columns</strong>
                collection.</para>
            	<para>
                    To get a list of all columns rendered in the current instance use
                    <see cref="P:Telerik.Web.UI.GridTableView.RenderColumns"/>
            	</para>
            	<para>Although you can programmatically add column fields to the
                <strong>Columns</strong> collection, it is easier to list the column fields
                declaratively in the <strong>GridTableView</strong> control and then use the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridColumn~Visible.html">Visible</a>
                property of each column field to show or hide each column field.</para>
            	<para>If the <strong>Visible</strong> property of a column field is set to false,
                the column is not displayed in the <strong>GridTableView</strong> control and the
                data for the column does not make a round trip to the client. If you want the data
                for a column that is not visible to make a round trip, add the field name to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~DataKeyNames.html">DataKeyNames</a>
                property.</para>
            	<para>This property can be managed programmatically or by Property Builder (IDE
                designer).</para>
            </remarks>
            <notes>
            Explicitly declared column fields can be used in combination with automatically
            generated column fields. When both are used, explicitly declared column fields are
            rendered first, followed by the automatically generated column fields. Automatically
            generated column fields are not added to the <strong>Columns</strong>
            collection.
            </notes>
            <seealso cref="T:Telerik.Web.UI.GridColumnCollection">GridColumnCollection Class</seealso>
            <seealso cref="T:Telerik.Web.UI.GridColumn">GridColumn Class</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GeneralFeatures/ColumnTypes/DefaultCS.aspx">Column types online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.PageCount">
            <summary>
            	<para>Gets the number of pages required to display the records of the data source
                in a <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>The number of pages in a <strong>GridTableView</strong> control.</value>
            <remarks>
            When the paging feature is enabled (by setting the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~AllowPaging.html">AllowPaging
            Property</a> to <strong>true</strong>), use the <strong>PageCount</strong> property to
            determine the total number of pages required to display the records in the data source.
            This value is calculated by dividing the total number of records in the data source by
            the number of records displayed in a page (as specified by the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~PageSize.html">PageSize</a>
            property) and rounding up.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomPaging">AllowCustomPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PageSize">PageSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagingManager">PagingManager Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagerStyle">PagerStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagerTemplate">PagerTemplate Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.DataSourceCount">
            <summary>Gets the number of pages if paging is enabled.</summary>
            <value>The number of pages if paging is enabled.</value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomPaging">AllowCustomPaging Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ResolvedDataSourceView">
            <summary>
                Gets a DataView object that represents the data sent to the
                <see cref="T:Telerik.Web.UI.GridTableView"/> to be displayed.
            </summary>
            <value>A result DataView object of all grid operations.</value>
            <remarks>
                ResolvedDataSourceView is available only in <see cref="E:Telerik.Web.UI.RadGrid.ItemDataBound"/> event
                handler i.e. when the grid is bound.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.PagingManager">
            <summary>
            Gets a Paging object that is the result of paging settings and runtime paging
            state of the grid.
            </summary>
            <value>
            A
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridPagingManager.html">GridPagingManager</a>
            object that corresponds to the Paging object.
            </value>
            <remarks>
            	<strong>Note</strong> that changes made to this object would <u>not</u> have
            effect on the structure of the grid.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PageSize">PageSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PageCount">PageCount Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.SortExpressions">
            <summary>
            Gets a collection of sort expressions for this table view instance, associated
            with the column or columns being sorted.
            </summary>
            <remarks>
            	<para>
                    Modifying the <strong>SortExpressions</strong> collection will result in change
                    of the order of appearance of items in the table view. If
                    <see cref="P:Telerik.Web.UI.GridTableView.AllowMultiColumnSorting"/> is set to false this collection can
                    only contain one item. Adding other <see cref="T:Telerik.Web.UI.GridSortExpression"/> in
                    the collection in this case will cause existing expression to be deleted or if
                    GridSortExpression with the same same
                    <see cref="P:Telerik.Web.UI.GridSortExpression.FieldName"/> exist its
                    <see cref="P:Telerik.Web.UI.GridSortExpression.SortOrder"/> will be changed.
                </para>
            	<para>This property's value is preserved in the ViewState.</para>
            </remarks>
            <seealso cref="T:Telerik.Web.UI.GridSortExpressionCollection">GridSortExpressionCollection Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowSorting">AllowSorting Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomSorting">AllowCustomSorting Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowMultiColumnSorting">AllowMultiColumnSorting Property</seealso>
            <value>
            The collection of sort expressions associated with the column or columns being
            sorted.
            </value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Programming/Sort/DefaultCS.aspx">Advanced sorting online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupByExpressions">
            <summary>
                Adding <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to this collection will cause the
                current table-view to display items sorted and devided in groups separated by
                <see cref="T:Telerik.Web.UI.GridGroupHeaderItem"/>s, that display common group and aggregate
                field values. See <see cref="P:Telerik.Web.UI.GridGroupByExpression.Expression"/> on details of
                expressions syntax.
            </summary>
            <remarks>
            	<strong>Note</strong> that the correctness of the expressions in the collection is
                checked when DataBind occures. Then if an expression in not correct or a
                combination of expressions is erroneous a <see cref="T:Telerik.Web.UI.GridGroupByException"/>
                would be thrown on <see cref="M:Telerik.Web.UI.GridTableView.DataBind"/>. This property's value is preserved
                in the ViewState.
            </remarks>
            <value>
            A GroupByExpressionCollection of values that will cause the current table-view to
            display items sorted and devided in groups separated by
            <strong>GridGroupHeaderItem</strong>s, that display common group and aggregate field
            values.
            </value>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/GroupBy/Expressions/DefaultCS.aspx">Group-By expressions online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AutoGeneratedColumns">
            <seealso cref="P:Telerik.Web.UI.GridTableView.RenderColumns"/>
            <seealso cref="P:Telerik.Web.UI.GridTableView.Columns"/>
            <seealso cref="P:Telerik.Web.UI.GridTableView.RenderColumns"/>
            <seealso cref="P:Telerik.Web.UI.GridTableView.Columns"/>
            <summary>
                Get an array of automatically generated columns. This array is available when
                <see cref="P:Telerik.Web.UI.RadGrid.AutoGenerateColumns"/> is set to true. Autogenerated
                columns appear always after <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> when rendering.
            </summary>
            <value>An array of automatically generated columns.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EditFormSettings">
            <summary>
            Gets a value defining the setting that will be applied when an Item is in edit
            mode and the <see cref="P:Telerik.Web.UI.GridTableView.EditMode"/> property is set to
            <strong>EditForms</strong>.
            </summary>
            <example>
            	<para><font face="Courier New">[ASPX/ASCX]</font></para>
            	<para><font face="Courier New">&lt;MasterTableView&gt;<br/>
                &lt;<font style="BACKGROUND-COLOR: #edb078" color="white">EditFormSettings</font>
                CaptionFormatString='&lt;img src=<font class="string" color="black">"img/editRowBg.gif"</font> alt=<font class="string" color="black">""</font>
                /&gt;</font><font face="Courier New"><font color="black"><font class="comment">'&gt;</font><br/>
                &lt;FormMainTableStyle GridLines=<font class="string">"None"</font>
                CellSpacing=<font class="string">"0"</font>
                CellPadding=<font class="string">"3"</font>
                Width=<font class="string">"100%"</font>
                CssClass=<font class="string">"none"</font>/&gt;<br/>
                &lt;FormTableStyle CssClass=<font class="string">"EditRow"</font>
                CellSpacing=<font class="string">"0"</font>
                BorderColor=<font class="string">"#c4c0b5"</font>
                CellPadding=<font class="string">"2"</font>
                Width=<font class="string">"100%"</font>/&gt;<br/>
                &lt;FormStyle Width=<font class="string">"100%"</font>
                BackColor=<font class="string">"#ffffe1"</font></font>&gt;&lt;/FormStyle&gt;<br/>
                &lt;/<font style="BACKGROUND-COLOR: #edb078" color="white">EditFormSettings</font>&gt;</font></para>
            </example>
            <seealso cref="T:Telerik.Web.UI.GridEditFormSettings">GridEditFormSettings Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Caption">
            <summary>
            	<para>Gets or sets a string that specifies a brief description of a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>.
                Related to Telerik RadGrid accessibility compliance.</para>
            </summary>
            <value>
            A string that represents the text to render in an HTML caption element in a
            <strong>GridTableView</strong> control. The default value is an empty string
            ("").
            </value>
            <remarks>
            	<para>Use the <strong>Caption</strong> property to specify the text to render in an
                HTML caption element in a <strong>GridTableView</strong> control. The text that you
                specify provides assistive technology devices with a description of the table that
                can be used to make the control more accessible.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.Summary">Summary Property</seealso>
            <example>
            	<pre>
            The following example demonstrates how to style the Caption of a MasterTableView and detail GridTableView.
            </pre>
            	<pre>
            &lt;head runat="server"&gt;<br/>    &lt;title&gt;Untitled Page&lt;/title&gt;<br/>    &lt;style type="text/css"&gt;<br/>
            		<font color="red">.MasterTable_Default caption</font><br/>            {<br/>             color: red;<br/>            }   
                </pre>
            	<pre>
            		<font color="red">.DetailTable_Default caption<br/></font>            {<br/>             color: blue;<br/>            }<br/>
            		<br/>    &lt;/style&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;form id="form1" runat="server"&gt;<br/>&lt;div&gt;<br/>&lt;radG:RadGrid runat="server" ID="RadGrid1" DataSourceID="SqlDataSource1" AllowPaging="true"<br/>AllowMultiRowEdit="true" OnItemCommand="RadGrid1_ItemCommand" &gt;<br/>&lt;MasterTableView EditMode="EditForms" DataKeyNames="CustomerID" <font color="red">Caption="Master Caption"</font> CommandItemDisplay="Top"&gt;<br/> 
            &lt;Columns&gt;<br/>&lt;radG:GridEditCommandColumn&gt;<br/>&lt;/radG:GridEditCommandColumn&gt;<br/>&lt;/Columns&gt;<br/>&lt;DetailTables&gt;<br/>&lt;radG:GridTableView DataKeyNames="OrderID" DataSourceID="SqlDataSource2" <font color="red">Caption="Detail Caption" CssClass="DetailTable_Default"</font>&gt;<br/>&lt;ParentTableRelation&gt;<br/>&lt;radG:GridRelationFields DetailKeyField="CustomerID" MasterKeyField="CustomerID" /&gt;<br/>&lt;/ParentTableRelation&gt;<br/>&lt;/radG:GridTableView&gt;<br/>&lt;/DetailTables&gt;<br/>&lt;/MasterTableView&gt;<br/>&lt;/radG:RadGrid&gt;<br/>&lt;asp:SqlDataSource ID="SqlDataSource1" runat="server" ConnectionString="&lt;/%$ ConnectionStrings:NorthwindConnectionString2/%&gt;"<br/>SelectCommand="SELECT [CustomerID], [CompanyName], [ContactName], [ContactTitle] FROM [Customers]"&gt;<br/>&lt;/asp:SqlDataSource&gt;<br/>&lt;asp:SqlDataSource ID="SqlDataSource2" runat="server" ConnectionString="&lt;/%$ ConnectionStrings:NorthwindConnectionString2/%&gt;"<br/>SelectCommand="SELECT [OrderID], [CustomerID], [ShipCountry] FROM [Orders] WHERE ([CustomerID] = @CustomerID)"&gt;<br/>&lt;SelectParameters&gt;<br/>&lt;asp:Parameter Name="CustomerID" Type="String" /&gt;<br/>&lt;/SelectParameters&gt;<br/>&lt;/asp:SqlDataSource&gt;<br/>&lt;/div&gt;<br/>&lt;/form&gt;<br/>&lt;/body&gt;
            </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Summary">
            <summary>Gets or sets the 'summary' attribute for the respective table.</summary>
            <remarks>
            This attribute provides a summary of the table's purpose and structure for user
            agents rendering to non-visual media such as speech and Braille. This property is a
            part of Telerik RadGrid accessibility features.
            </remarks>
            <value>
            A string representation of the 'summary' attribute for the respective
            table.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.Caption">Caption Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Dir">
            <summary>
            	<para>Gets or sets the text direction. This property is related to Telerik RadGrid support
            for Right-To-Left lanugages. It has two possible vales defined by
            <see cref="T:Telerik.Web.UI.GridTableTextDirection"/> enumeration:</para>
            	<list type="bullet">
            		<item>LTR - left-to-right text</item>
            		<item>RTL - right-to-left text</item></list>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Frame">
            <remarks>
            	<para>The frame attribute for a table specifies which sides of the frame surrounding
            the table will be visible. Possible values:</para>
            	<list type="bullet">
            		<item><strong>void</strong>: No sides. <strong>This is the default
            value</strong>.</item>
            		<item><strong>above</strong>: The top side only.</item>
            		<item><strong>below</strong>: The bottom side only.</item>
            		<item><strong>hsides</strong>: The top and bottom sides only.</item>
            		<item><strong>vsides</strong>: The right and left sides only.</item>
            		<item><strong>lhs</strong>: The left-hand side only.</item>
            		<item><strong>rhs</strong>: The right-hand side only.</item>
            		<item><strong>box</strong>: All four sides.</item>
            		<item><strong>border</strong>: All four sides</item></list>
            </remarks>
            <summary>Gets or sets a value specifying the frame table attribute.</summary>
            <value>
            A
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableFrame.html">GridTableFrame</a> value,
            specifying the frame table attribute.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableFrame">GridTableFrame Enumeration</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.TableLayout">
            <seealso cref="T:Telerik.Web.UI.GridTableLayout">GridTableLayout Enumeration</seealso>
            <value>
            	<para>
                    A
                    <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableLayout.html">GridTableLayout</a>
                    value, indicating the table layout type. The default value is
                    <see cref="F:Telerik.Web.UI.GridTableLayout.Fixed"/>.
                </para>
            </value>
            <summary>Gets or sets a string that indicates whether the table layout is fixed.</summary>
            <remarks>
            	<para>
                    The value of the TableLayout property is a <strong>string</strong> that
                    specifies or receives one of the following <strong>GridTableLayout</strong>
                    enumeration values: 
                    <list type="table">
            			<item>
            				<term><span class="clsDefValue">Auto</span></term>
            				<description>Default (except in some scenarios, e.g. when using static headers with grouping or hierarchy). Column width is set by the widest unbreakable content in
                            the column cells.</description>
            			</item>
            			<item>
            				<term><span class="clsLiteral">Fixed</span></term>
            				<description>
                                Table and column widths are set either by the sum of the
                                widths on the <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> objects or, if these are
                                not specified, by the width of the first row of cells. If no width
                                is specified for the table, it renders by default with width=100%.
                            </description>
            			</item>
            		</list>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ItemStyle">
            <summary>
            	<para>Gets a reference to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
                object that allows you to set the appearance of items in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the style of
                data items in a <strong>GridTableView</strong> control. If style is not altered (is
                default) <see cref="P:Telerik.Web.UI.RadGrid.ItemStyle"/> is used.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">AlternatingItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CommandItemStyle">CommandItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.FooterStyle">FooterStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.HeaderStyle">HeaderStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SelectedItemStyle">SelectedItemStyle Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderItemStyle">
            <summary>Gets the rendering style of an Item.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of the item. If <see cref="P:Telerik.Web.UI.GridTableView.ItemStyle"/> is not specified the
                return value is OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.ItemStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.GroupHeaderItemStyle">
            <summary>Manage visual style of the group header items.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the style of
                the group header items. If style is not altered (is default)
                <see cref="P:Telerik.Web.UI.RadGrid.GroupHeaderItemStyle"/> is used.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderGroupHeaderItemStyle">
            <summary>Gets the rendering style of the group header items.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of the group header items. If
                <see cref="P:Telerik.Web.UI.GridTableView.GroupHeaderItemStyle"/> is not specified the return value is
                OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.GroupHeaderItemStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">
            <summary>
            	<para>Gets a reference to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
                object that allows you to set the appearance of alternating items in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the style of
                alternating data items in a <strong>GridTableView</strong> control. If style is not
                altered (is default) <see cref="P:Telerik.Web.UI.RadGrid.AlternatingItemStyle"/> is used.
            </value>
            <remarks>
            	<para>Use the <strong>AlternatingItemStyle</strong> property to control the
                appearance of alternating items in a <strong>GridTableView</strong> control. When
                this property is set, the items are displayed alternating between the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~ItemStyle.html">ItemStyle</a>
                settings and the <strong>AlternatingItemStyle</strong> settings. This property is
                read-only; however, you can set the properties of the
                <strong>GridTableItemStyle</strong> object it returns. The properties can be set
                declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the
                    <strong>GridTableView</strong> control in the form
                    <strong>Property-Subproperty</strong>, where <strong>Subproperty</strong> is a
                    property of the <strong>GridTableItemStyle</strong> object (for example,
                    AlternatingItemStyle-ForeColor).</item>
            		<item>Nest an &lt;AlternatingItemStyle&gt; element between the opening and
                    closing tags of the GridTableView control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                <strong>Property.Subproperty</strong> (for example,
                AlternatingItemStyle.ForeColor). Common settings usually include a custom
                background color, foreground color, and font properties.</para>
            </remarks>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderAlternatingItemStyle">
            <summary>Gets the rendering style of the AlternatingItem.</summary>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of the AlternatingItem. If <see cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle"/>
                is not specified the return value is
                OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.AlternatingItemStyle"/>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EditItemStyle">
            <summary>
            	<para>Gets a reference to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
                object that allows you to set the appearance of the item selected for editing in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
            	<para>
                    A reference to the <strong>GridTableItemStyle</strong> that represents the
                    style of the row being edited in a GridTableView control. If style is not
                    altered (is default) <see cref="P:Telerik.Web.UI.RadGrid.EditItemStyle"/> is used.
                </para>
            </value>
            <remarks>
            	<para>Use the <strong>EditItemStyle</strong> property to control the appearance of
                the item in edit mode. This property is read-only; however, you can set the
                properties of the <strong>GridTableItemStyle</strong> object it returns. The
                properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the
                    <strong>GridTableView</strong> control in the form
                    <strong>Property-Subproperty</strong>, where <strong>Subproperty</strong> is a
                    property of the <strong>GridTableItemStyle</strong> object (for example,
                    <strong>EditItemStyle-ForeColor</strong>).</item>
            		<item>Nest an &lt;<strong>EditItemStyle</strong>&gt; element between the
                    opening and closing tags of the <strong>GridTableView</strong> control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                <strong>Property.Subproperty</strong> (for example,
                <strong>EditItemStyle.ForeColor</strong>). Common settings usually include a custom
                background color, foreground color, and font properties.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ItemStyle">ItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.GroupHeaderItemStyle">GroupHeaderItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">AlternatingItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagerStyle">PagerStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.HeaderStyle">HeaderStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.FilterItemStyle">FilterItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CommandItemStyle">CommandItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.FooterStyle">FooterStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SelectedItemStyle">SelectedItemStyle Property</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderEditItemStyle">
            <summary>Gets the rendering style of an edit Item.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of an edit item. If <see cref="P:Telerik.Web.UI.GridTableView.EditItemStyle"/> is not
                specified the return value is OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.EditItemStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.PagerStyle">
            <summary>
            Gets a reference to the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridPagerStyle.html">GridPagerStyle</a> object
            that allows you to set the appearance of the pager item in a
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
            control.
            </summary>
            <value>
                A reference to the <strong>GridPagerStyle</strong> that represents the style of the
                pager item in a <strong>GridTableView</strong> control. If style is not altered (is
                default) <see cref="P:Telerik.Web.UI.RadGrid.PagerStyle"/> is used.
            </value>
            <remarks>
            	<para>Use the <strong>PagerStyle</strong> property to control the appearance of the
                pager item in a <strong>GridTableView</strong> control. The pager item is displayed
                when the paging feature is enabled (by setting the <strong>AllowPaging</strong>
                property to <strong>true</strong>) and contains the controls that allow the user to
                navigate to the different pages in the control. This property is read-only;
                however, you can set the properties of the GridPagerStyle object it returns. The
                properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the
                    <strong>GridTableView</strong> control in the form
                    <strong>Property-Subproperty</strong>, where <strong>Subproperty</strong> is a
                    property of the <strong>GridPagerStyle</strong> object (for example,
                    <strong>PagerStyle-ForeColor</strong>).</item>
            		<item>Nest a <strong>&lt;PagerStyle&gt;</strong> element between the opening
                    and closing tags of the <strong>GridTableView</strong> control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                <strong>Property.Subproperty</strong> (for example,
                <strong>PagerStyle.ForeColor</strong>). Common settings usually include a custom
                background color, foreground color, and font properties.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ItemStyle">ItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">AlternatingItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.HeaderStyle">HeaderStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.FooterStyle">FooterStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SelectedItemStyle">SelectedItemStyle Property</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Styles/HeaderFooterPagerStyles/DefaultCS.aspx">Styling Header, Footer and Pager items online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderPagerStyle">
            <summary>Gets the rendering style of the Pager item.</summary>
            <value>
                A reference to the GridTableItemStyle that represents the rendering style of the
                pager item. If <see cref="P:Telerik.Web.UI.GridTableView.PagerStyle"/> is not specified the return value is
                OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.PagerStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HeaderStyle">
            <summary>
            	<para>Gets a reference to the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
                object that allows you to set the appearance of the header item in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
            	<para>
                    A reference to the <strong>GridTableItemStyle</strong> that represents the
                    style of the header row in a <strong>GridTableView</strong> control. If style
                    is not altered (is default) <see cref="P:Telerik.Web.UI.RadGrid.HeaderStyle"/> is used.
                </para>
            </value>
            <remarks>
            	<para>Use the <strong>HeaderStyle</strong> property to control the appearance of
                the header item in a <strong>GridTableView</strong> control. This property is
                read-only; however, you can set the properties of the
                <strong>GridTableItemStyle</strong> object it returns. The properties can be set
                declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the
                    <strong>GridTableView</strong> control in the form
                    <strong>Property-Subproperty</strong>, where <strong>Subproperty</strong> is a
                    property of the GridTableItemStyle object (for example,
                    <strong>HeaderStyle-ForeColor</strong>).</item>
            		<item>Nest a <strong>&lt;HeaderStyle&gt;</strong> element between the opening
                    and closing tags of the GridTableView control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                <strong>Property.Subproperty</strong> (for example,
                <strong>HeaderStyle.ForeColor</strong>). Common settings usually include a custom
                background color, foreground color, and font properties.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ItemStyle">ItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">AlternatingItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.EditItemStyle">EditItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.FooterStyle">FooterStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.SelectedItemStyle">SelectedItemStyle Property</seealso>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Styles/HeaderFooterPagerStyles/DefaultCS.aspx">Styling Header, Footer and Pager items online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderHeaderStyle">
            <summary>Gets the rendering style of a GridHeaderItem.</summary>
            <value>
                A reference to the GridTableItemStyle that represents the rendering style of the
                GridHeaderItem. If <see cref="P:Telerik.Web.UI.GridTableView.HeaderStyle"/> is not specified the return value
                is OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.HeaderStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.FilterItemStyle">
            <summary>
            Gets a reference to the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
            object that allows you to set the appearance of the filter item in a
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
            control.
            </summary>
            <value>
            A reference to the <strong>GridTableItemStyle</strong> that represents the style
            of the filter item.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderFilterItemStyle">
            <summary>Gets the rendering style of a FilterItem.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of a FilterItem. If <see cref="P:Telerik.Web.UI.GridTableView.FilterItemStyle"/> is not
                specified the return value is OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.FilterItemStyle"/>
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CommandItemStyle">
            <summary>
            Gets a referenct to the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableItemStyle.html">GridTableItemStyle</a>
            object that allows you to set the appearance of the command item in a
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
            control.
            </summary>
            <value>
            A reference to the <strong>GridTableItemStyle</strong> that represents the style
            of the command item.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderCommandItemStyle">
            <summary>Gets the rendering style of a CommandItem.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of a CommandItem. If <see cref="P:Telerik.Web.UI.GridTableView.CommandItemStyle"/> is not
                specified the return value is
                OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.CommandItemStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderActiveItemStyle">
            <summary>Gets the rendering style of an ActiveItem.</summary>
            <value>
            A reference to the <strong>GridTableItemStyle</strong> that represents the
            rendering style of an ActiveItem.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.FooterStyle">
            <summary>Manage visual style of the footer item.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the style of
                the footer item. If style is not altered (is default)
                <see cref="P:Telerik.Web.UI.RadGrid.FooterStyle"/> is used.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
            <seealso cref="!:http://www.telerik.com/demos/aspnet/Grid/Examples/Styles/HeaderFooterPagerStyles/DefaultCS.aspx ">Styling Header, Footer and Pager items online example</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderFooterStyle">
            <summary>Gets the rendering style of an FooterItem.</summary>
            <value>
                A reference to the <strong>GridTableItemStyle</strong> that represents the
                rendering style of an FooterItem. If <see cref="P:Telerik.Web.UI.GridTableView.FooterStyle"/> is not
                specified the return value is OwnerGrid.<see cref="P:Telerik.Web.UI.RadGrid.FooterStyle"/>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridTableItemStyle">GridTableItemStyle Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.SelectedItemStyle">
            <summary>
            Gets a reference to the
            <a onclick="javascript:navigateToHelp2Keyword('frlrfSystemWebUIWebControlsStyleClassTopic','System.Web.UI.WebControls.Style')" href="#">Style</a> object that allows you to set the appearance of the selected item
               in a <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
               control.
            </summary>
            <value>
            	<para>
                    A reference to the <strong>Style</strong> object that represents the style of
                    the selected item in a <strong>GridTableView</strong> control. If style is not
                    altered (is default) <see cref="P:Telerik.Web.UI.RadGrid.SelectedItemStyle"/> is used.
                </para>
            </value>
            <remarks>
            	<para>Use the <strong>SelectedItemStyle</strong> property to control the appearance
                of the selected item in a GridTableView control. This property is read-only;
                however, you can set the properties of the <strong>Style</strong> object it
                returns. The properties can be set declaratively using one of the following
                methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the
                    <strong>GridTableView</strong> control in the form
                    <strong>Property-Subproperty</strong>, where <strong>Subproperty</strong> is a
                    property of the <strong>Style</strong> object (for example,
                    <strong>SelectedItemStyle-ForeColor</strong>).</item>
            		<item>Nest a <strong>&lt;SelectedRowStyle&gt;</strong> element between the
                    opening and closing tags of the <strong>GridTableView</strong> control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                <strong>Property.Subproperty</strong> (for example,
                <strong>SelectedItemStyle.ForeColor</strong>). Common settings usually include a
                custom background color, foreground color, and font properties.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the
                <strong>SelectedItemStyle</strong> property to define a custom style for the
                selected item in a <strong>GridTableView</strong> control.</para>
            	<para>[ASPX/ASCX]</para>
            	<para>&lt;radG:RadGrid ID="RadGrid1" runat="server"&gt;<br/>
                ..........<br/>
                &lt;SelectedItemStyle BackColor="#FFE0C0" /&gt;<br/>
                &lt;/radG:RadGrid&gt;</para>
            	<code lang="VB" title="[New Example]">
            RadGrid1.SelectedItemStyle.BackColor = System.Drawing.Color.Azure
                </code>
            	<code lang="CS" title="[New Example]">
            RadGrid1.SelectedItemStyle.BackColor = System.Drawing.Color.Azure;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ItemStyle">ItemStyle Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AlternatingItemStyle">AlternatingItemStyle Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Name">
            <summary>
            Gets or sets the name of the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>.
            </summary>
            <value>
            The string representation of the Name of the <strong>GridTableView</strong> it is
            assigned to. The default is String.Empty ("").
            </value>
            <remarks>
            The <strong>Name</strong> property can be used distinguish different
            <strong>GridTableView</strong> instances. Often used to set different settings for
            different views conditionally.
            </remarks>
            <example>
            	<para>The following example demonstrates different action on</para>
            	<para>[ASPX/ASCX]</para>&lt;script type="text/javascript" &gt;<br/>
                function OnRowDblClick(index)<br/>
                {<br/>
                 if(this.Name == "MasterTableView")<br/>
                 {<br/>
                 alert("Cliecked row with index " + index + " of the MasterTableView");<br/>
                 }<br/>
                 if(this.Name == "DetailTableView1")<br/>
                 {<br/>
                 alert("Clicked row with index " + index + " of the first detail table");<br/>
                 }<br/>
                 if(this.Name == "DetailTableView2")<br/>
                 {<br/>
                 alert("Clicked row with index " + index + " of the second detail table");<br/>
                 }<br/>
                }<br/>
                &lt;/script&gt;<br/>
            	<br/>
                &lt;radG:RadGrid ID="RadGrid1" runat="server" &gt;<br/>
                 &lt;MasterTableView Name="MasterTableView"&gt;<br/>
                 &lt;DetailTables&gt;<br/>
                 &lt;radG:GridTableView Name="DetailTableView1" &gt;<br/>
                 &lt;/radG:GridTableView&gt;<br/>
                 &lt;radG:GridTableView Name="DetailTableView2"&gt;<br/>
                 &lt;/radG:GridTableView&gt;<br/>
                 &lt;/DetailTables&gt;<br/>
                 &lt;/MasterTableView&gt;<br/>
                 &lt;ClientSettings&gt;<br/>
                 &lt;ClientEvents OnRowDblClick="OnRowDblClick"&gt;&lt;/ClientEvents&gt;<br/>
                 &lt;/ClientSettings&gt;<br/>
                &lt;/radG:RadGrid&gt;
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ShowHeader">
            <summary>
                Gets or sets a value indicating if the <see cref="T:Telerik.Web.UI.GridHeaderItem"/> will be
                shown in the current <strong>GridTableView</strong>.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>GridHeaderItem</strong> will be shown in
            the current <strong>GridTableView</strong>; otherwise, <strong>false</strong>. The
            default value is <strong>true</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ShowFooter">ShowFooter Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ShowGroupFooter">
            <summary>
                Gets or sets a value indicating if the <see cref="T:Telerik.Web.UI.GridGroupFooterItem"/> will be
                shown in the current <strong>GridTableView</strong>.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>GridGroupFooterItem</strong> will be shown in
            the current <strong>GridTableView</strong>; otherwise, <strong>false</strong>. The
            default value is <strong>true</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ShowFooter">ShowFooter Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ShowFooter">
            <summary>
                Gets or sets a value indicating if the <see cref="T:Telerik.Web.UI.GridFooterItem"/> will be
                shown in the current <strong>GridTableView</strong>.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>GridFooterItem</strong> will be shown in
            the current <strong>GridTableView</strong>; otherwise, <strong>false</strong>. The
            default value is <strong>false</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.ShowHeader">ShowHeader Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RenderColumns">
            <summary>
            Gets an array of all columns that are used when rendering the grid
            instance.
            </summary>
            <value>An array of all columns that are used when rendering the grid instance.</value>
            <remarks>
                Modifying the array would <u>not</u> affect rendering as it is regenerated before
                each data-bind. To modify the list of columns available use
                <see cref="P:Telerik.Web.UI.GridTableView.Columns"/> property.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.Columns">Columns Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ItemsHierarchy">
            <summary>
            	<para>
                    Gets a collection of all data items of a grid table view and items that belong
                    to child tables of the <strong>GridTableView</strong> if the hierarchy is
                    expanded. The items are collected depth-first. The property
                    <see cref="P:Telerik.Web.UI.RadGrid.Items"/> actually referres to
                    <strong>ItemsHierarchy</strong> of<br/>
            		<see cref="P:Telerik.Web.UI.RadGrid.MasterTableView"/>. This property can be used to
                    traverse all<br/>
                    DataItems items in the hiearchy of a <strong>GridTableView</strong>.
                </para>
            </summary>
            <value>
            A <strong>GridDataItemCollection</strong> of all data items of a grid table view
            and items that belong to child tables of the <strong>GridTableView</strong> if the
            hierarchy is expanded.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridDataItem">GridDataItem Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.Items">
            <summary>
            	<para>Gets a collection of GridDataItem objects that represent the data items in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridDataItem.html">GridDataItem</a>
                control.</para>
            </summary>
            <remarks>
            The <strong>Items</strong> property (collection) is used to store the data items
            in a <strong>GridTableView</strong> control. The <strong>GridTableView</strong> control
            automatically populates the Items collection by creating a
            <strong>GridDataItem</strong> object for each record in the data source and then adding
            each object to the collection. This property is commonly used to access a specific item
            in the control or to iterate though the entire collection of items.
            </remarks>
            <value>
            A <strong>GridDataItemCollection</strong> that contains all the data items in a
            <strong>GridTableView</strong> control
            </value>
            <seealso cref="T:Telerik.Web.UI.GridDataItem">GridDataItem Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.VirtualItemCount">
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomPaging">AllowCustomPaging Property</seealso>
            <commentsfrom cref="P:Telerik.Web.UI.RadGrid.VirtualItemCount" filter=""/>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CurrentPageIndex">
            <summary>
            Gets or sets a value indicating the index of the currently active page in case
            paging is enabled (<see cref="P:Telerik.Web.UI.RadGrid.AllowPaging"/> is
            <strong>true</strong>).
            </summary>
            <value>The index of the currently active page in case paging is enabled.</value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowCustomPaging">AllowCustomPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ShowHeadersWhenNoRecords">
            <summary>
            If set to true (the default)
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridNoRecordsItem.html">GridNoRecordsItem</a>
            is used to display no records template. This item is the only one displayed in the
            <strong>GridTableView</strong> in this case.
            </summary>
            <seealso cref="P:Telerik.Web.UI.GridTableView.NoRecordsTemplate">NoRecordsTemplate Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HasDetailTables">
            <summary>
            Gets a value indicating if the <strong>GridTableView</strong> instance has
            children (Detail) tables.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>GridTableView</strong> instance has
            children (Detail) tables; otherwise, <strong>false</strong>.
            </value>
            <seealso cref="P:Telerik.Web.UI.GridTableView.DetailTables">DetailTables Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ID">
            <summary>
            Gets or sets the programmatic identifier assigned to the current
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>.
            </summary>
            <remarks>
            	<para>This property is set automatically by <strong>RadGrid</strong> object that
                owns this instance.</para>
            </remarks>
            <value>The programmatic identifier assigned to the control.</value>
            <notes>
            Only combinations of alphanumeric characters and the underscore character ( _ )
            are valid values for this property. Including spaces or other invalid characters will
            cause an ASP.NET page parser error.
            </notes>
            <seealso cref="P:Telerik.Web.UI.GridTableView.OwnerID">OwnerID Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.RequiresBinding">
            <summary>
            Gets or sets a value indicating whether <strong>RadGrid</strong> will be built on
            PreRender unless it was built before that. This property is supposed for
            Telerik RadGrid internal usage, yet you can set it with care.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>RadGrid</strong> will be built on
            PreRender; otherwise, <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.HierarchyIndex">
            <summary>
            The unique hierarchy index of the current table view, generated when it is
            binding.
            </summary>
            <value>The hierarchy index of the current table view.</value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.ItemsCreated">
            <summary>
            Indicates whether the items have been created, generally by data-binding.
            </summary>
            <value>
            	<strong>true</strong>, if the items have beed created; otherwise,
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.UID">
            <summary>
            This property is used internally by <strong>RadGrid</strong> and it is not
            intended to be used directly from your code.
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.PagerTemplate">
            <summary>
            	<para>Gets or sets the custom content for the pager item in a
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView.html">GridTableView</a>
                control.</para>
            </summary>
            <value>
            A
            <a href="http://msdn2.microsoft.com/en-us/library/system.web.ui.itemplate.aspx">System.Web.UI.ITemplate</a>
            that contains the custom content for the pager item. The default value is null, which
            indicates that this property is not set.
            </value>
            <remarks>
            If this template is set, <strong>RadGrid</strong> will not create the default
            pager controls.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.GridTableView.AllowPaging">AllowPaging Property</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.PagingManager">PagingManager Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CommandItemTemplate">
            <summary>
            	<para>Gets or sets the template that will be instantiated in the CommandItem. If
                this template is set, <strong>RadGrid</strong> will not create the default
                CommandItem controls.</para>
            </summary>
            <value>
            A
            <a href="http://msdn2.microsoft.com/en-us/library/system.web.ui.itemplate.aspx">System.Web.UI.ITemplate</a>
            object that contains the custom content for the pager item. The default value is null,
            which indicates that this property is not set.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridCommandItem">GridCommandItem Class</seealso>
            <seealso cref="P:Telerik.Web.UI.GridTableView.CommandItemSettings">CommandItemSettings Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.IsItemInserted">
            <summary>
            Gets or sets a value indicating if the <strong>GridTableView</strong> is
            currently in insert mode.
            </summary>
            <value>
            	<strong>true</strong>, if the <strong>GridTableView</strong> is currently in
            insert mode; otherwise, <strong>false</strong>.
            </value>
            <remarks>
                The ItemInserted property indicates if the <strong>GridTableView</strong> is
                currently in insert mode. After setting it you should call the
                <see cref="M:Telerik.Web.UI.GridTableView.Rebind"/> method. You can also use the
                <see cref="M:Telerik.Web.UI.GridTableView.InsertItem"/> method, that will also reposition the grid to show
                the last page, where the newly inserted item is generally displayed.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.OverrideDataSourceControlSorting">
            <summary>
            Gets or sets a value indicating if the <strong>GridTableView</strong> should override the
            default DataSourceControl sorting with grid native sorting.
            </summary>
            <remarks>
                You can set this to true in case of ObjectDataSource with IEnumerable data without implemented sorting. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.EnableSplitHeaderText">
            <summary>
            Gets or sets a value indicating if the text in the header of the <strong>GridTableView</strong> should be split on capital letter.
            <value>
            	<strong>True</strong> if header text should be split; otherwise,
            <strong>false</strong>. The default is <strong>true</strong>.
            </value>
            <remarks>
                This property is meaningful only when the <strong>GridTableView</strong> has <strong>AutoGenerateColumns</strong> = "true"
            </remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CommandItemDisplay">
            <summary>
            	<para>Gets or sets the default position of the GridCommandItem as defined by the
            <see cref="T:Telerik.Web.UI.GridCommandItemDisplay"/>. The possible values are:</para>
            	<list type="bullet">
            		<item>None - this is the default value - the command item will not be rendered</item>
            		<item>Top - the command item will be rendered on the top of the grid</item>
            		<item>Bottom - the command item will be rendered on the bottom of the grid</item>
            		<item>TopAndBottom - the command item will be rendered both on top and bottom of the
            grid.</item></list>
            </summary>
            <value>
            A
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridCommandItemDisplay.html">GridCommandItemDisplay</a>
            proprty which define the default position of the
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridCommandItem.html">GridCommandItem</a>.
            </value>
            <seealso cref="T:Telerik.Web.UI.GridCommandItemDisplay">GridCommandItemDisplay Enumeration</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridTableView.CustomPageSize">
            <summary>
            Stores a custom PageSize value if such is set when page mode is NextPrevAndNumeric
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridRelationFields">
            <summary>
            corresponding fields from a master-detail relation
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridTableViewRelation">
            <summary>
                <para>
                  A collection that stores <see cref="T:Telerik.Web.UI.GridRelationFields"/> objects.
               </para>
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableViewRelation"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.#ctor">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewRelation"/>.
               </para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.#ctor(Telerik.Web.UI.GridTableViewRelation)">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> based on another <see cref="T:Telerik.Web.UI.GridTableViewRelation"/>.
               </para>
            </summary>
            <param name="value">
                  A <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> from which the contents are copied
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.#ctor(Telerik.Web.UI.GridRelationFields[])">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> containing any array of <see cref="T:Telerik.Web.UI.GridRelationFields"/> objects.
               </para>
            </summary>
            <param name="value">
                  A array of <see cref="T:Telerik.Web.UI.GridRelationFields"/> objects with which to intialize the collection
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.Add(Telerik.Web.UI.GridRelationFields)">
            <summary>
               <para>Adds a <see cref="T:Telerik.Web.UI.GridRelationFields"/> with the specified value to the 
               <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridRelationFields"/> to add.</param>
            <returns>
               <para>The index at which the new element was inserted.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.AddRange(Telerik.Web.UI.GridTableViewRelation)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.AddRange(Telerik.Web.UI.GridRelationFields[])">
            <summary>
            <para>Copies the elements of an array to the end of the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/>.</para>
            </summary>
            <param name="value">
               An array of type <see cref="T:Telerik.Web.UI.GridRelationFields"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.Add(Telerik.Web.UI.GridRelationFields)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.AddRange(Telerik.Web.UI.GridTableViewRelation)">
            <summary>
                <para>
                  Adds the contents of another <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> to the end of the collection.
               </para>
            </summary>
            <param name="value">
               A <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.Add(Telerik.Web.UI.GridRelationFields)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.Contains(Telerik.Web.UI.GridRelationFields)">
            <summary>
            <para>Gets a value indicating whether the 
               <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> contains the specified <see cref="T:Telerik.Web.UI.GridRelationFields"/>.</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridRelationFields"/> to locate.</param>
            <returns>
            <para><see langword="true"/> if the <see cref="T:Telerik.Web.UI.GridRelationFields"/> is contained in the collection; 
              otherwise, <see langword="false"/>.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.IndexOf(Telerik.Web.UI.GridRelationFields)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.CopyTo(Telerik.Web.UI.GridRelationFields[],System.Int32)">
            <summary>
            <para>Copies the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> values to a one-dimensional <see cref="T:System.Array"/> instance at the 
               specified index.</para>
            </summary>
            <param name="array"><para>The one-dimensional <see cref="T:System.Array"/> that is the destination of the values copied from <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</para></param>
            <param name="index">The index in <paramref name="array"/> where copying begins.</param>
            <returns>
              <para>None.</para>
            </returns>
            <exception cref="T:System.ArgumentException"><para><paramref name="array"/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> is greater than the available space between <paramref name="index"/> and the end of <paramref name="array"/>.</para></exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="array"/> is <see langword="null"/>. </exception>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is less than <paramref name="array"/>'s lowbound. </exception>
            <seealso cref="T:System.Array"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.IndexOf(Telerik.Web.UI.GridRelationFields)">
            <summary>
               <para>Returns the index of a <see cref="T:Telerik.Web.UI.GridRelationFields"/> in 
                  the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridRelationFields"/> to locate.</param>
            <returns>
            <para>The index of the <see cref="T:Telerik.Web.UI.GridRelationFields"/> of <paramref name="value"/> in the 
            <see cref="T:Telerik.Web.UI.GridTableViewRelation"/>, if found; otherwise, -1.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.Contains(Telerik.Web.UI.GridRelationFields)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.Insert(System.Int32,Telerik.Web.UI.GridRelationFields)">
            <summary>
            <para>Inserts a <see cref="T:Telerik.Web.UI.GridRelationFields"/> into the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> at the specified index.</para>
            </summary>
            <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
            <param name=" value">The <see cref="T:Telerik.Web.UI.GridRelationFields"/> to insert.</param>
            <returns><para>None.</para></returns>
            <seealso cref="M:Telerik.Web.UI.GridTableViewRelation.Add(Telerik.Web.UI.GridRelationFields)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.GetEnumerator">
            <summary>
               <para>Returns an enumerator that can iterate through 
                  the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</para>
            </summary>
            <returns><para>None.</para></returns>
            <seealso cref="T:System.Collections.IEnumerator"/>
        </member>
        <member name="M:Telerik.Web.UI.GridTableViewRelation.Remove(Telerik.Web.UI.GridRelationFields)">
            <summary>
               <para> Removes a specific <see cref="T:Telerik.Web.UI.GridRelationFields"/> from the 
               <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridRelationFields"/> to remove from the <see cref="T:Telerik.Web.UI.GridTableViewRelation"/> .</param>
            <returns><para>None.</para></returns>
            <exception cref="T:System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception>
        </member>
        <member name="P:Telerik.Web.UI.GridTableViewRelation.Item(System.Int32)">
            <summary>
            <para>Represents the entry at the specified index of the <see cref="T:Telerik.Web.UI.GridRelationFields"/>.</para>
            </summary>
            <param name="index"><para>The zero-based index of the entry to locate in the collection.</para></param>
            <value>
               <para> The entry at the specified index of the collection.</para>
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is outside the valid range of indexes for the collection.</exception>
        </member>
        <member name="T:Telerik.Web.UI.GridValidationSettings">
            <summary>
            Container of misc. grouping settings of RadGrid control
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupByExpression">
            <summary>
                Expression similar to SQL's "Select Group By" clause that is used by
                <strong>GridTableView</strong> to group items
                (<see cref="P:Telerik.Web.UI.GridTableView.GroupByExpressions"/>. Expressions can be defined by
                assigning <see cref="P:Telerik.Web.UI.GridGroupByExpression.Expression">Expression</see> property and/or managing the
                items in <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> or
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> collections.
            </summary>
            <remarks>
                If you use <see cref="P:Telerik.Web.UI.GridGroupByExpression.Expression"/> property to assign
                group by expression as string then the expression is parsed and
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.SelectFields"/> and
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields"/> are created. If the
                expression syntax is incorrect a <see cref="T:Telerik.Web.UI.GridGroupByException"/> would be
                thrown. You can use <see cref="T:Telerik.Web.UI.GridGroupByField"/>'s properties to set
                expression's fields appearance format strings, etc. See
                <see cref="P:Telerik.Web.UI.GridGroupByExpression.Expression"/> property for details about the expression syntax.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpression.#ctor(Telerik.Web.UI.GridColumn)">
            <summary>Constructs a new GroupByExpression from a grid GridColumn.</summary>
            <remarks>
            If the column does not have a valid <see cref="P:Telerik.Web.UI.GridColumn.GroupByExpression"/> string assigned this 
            constructor will throw <see cref="T:Telerik.Web.UI.GridGroupByException"/>. Column should be <see cref="P:Telerik.Web.UI.GridColumn.Groupable"/>
            The following properties will be copied from the corresponding column's properties:
            <list>
            		<item>
            		Column's data-format-string depending on the type of the column. For example 
            		<see cref="P:Telerik.Web.UI.GridBoundColumn.DataFormatString"/></item> will be copied to 
            		<see cref="P:Telerik.Web.UI.GridGroupByField.FormatString"/>.
            	<item>
            		Column's <see cref="P:Telerik.Web.UI.GridColumn.HeaderText"/> will be copied to <see cref="P:Telerik.Web.UI.GridGroupByField.HeaderText"/>
            		</item>
            	</list>
            </remarks>
            <param name="column">
            the column (and its <strong>DataField</strong> respectively) that will be used
            for grouping Telerik RadGrid
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpression.Parse(System.String)">
            <summary>Calls GridGroupByExpression(expression)</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpression.ToString">
            <summary>The same as the <see cref="P:Telerik.Web.UI.GridGroupByExpression.Expression"/> property</summary>
            <returns>the string representation of the expression.</returns>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpression.IsSame(Telerik.Web.UI.GridGroupByExpression)">
            <summary>
            Compares the current expression against the expression set as parameter and check
            if both expressions contain field with the same name.
            </summary>
            <returns>
            	<strong>true</strong> if both expressions contain field with the same name,
            otherwise false.
            </returns>
            <param name="expression">expression to check against this expression</param>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpression.ContainsSameGroupByField(Telerik.Web.UI.GridGroupByExpression)">
            <summary>Checks if the given expression contains same Group-By field as this one.</summary>
            <returns>
            true if the expression already contains this GroupByField, otherwise
            false.
            </returns>
            <remarks>
            Use this function to determine if two expressions seem to produce the same set of results
            </remarks>
            <param name="expression">Expression to check</param>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByExpression.SelectFields">
            <summary>
            Gets a collection of SelectField objects (field names, aggregates etc.) that form
            the "Select" clause. Standing on the left side of the "Group By" clause.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByExpression.GroupByFields">
            <summary>
                Gets a collection of <see cref="T:Telerik.Web.UI.GridGroupByField"/> objects that form the grouping
                clause. Standing on the right side of the "Group By" clause
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByExpression.Expression">
            <summary>String representation of the GroupBy expression.</summary>
            <remarks>
            	<para>Expression syntax:</para>
            	<para>fieldname[ alias]|aggregate(fieldname)[ alias][, ...] Group By fieldname[
                sort][, ...]</para>
            	<list type="bullet">
            		<item>
            			<strong>fieldname</strong>: the name of any field from the
                        <see cref="P:Telerik.Web.UI.RadGrid.DataSource"/>
            		</item>
            		<item><strong>alias</strong>: alas string. This cannot contain blanks or other
                    reserved symbols like ',', '.' etc.</item>
            		<item>
            			<strong>aggregate</strong>: any of - <em>min</em>, <em>max</em>,
                        <em>sum</em>, <em>count</em>, <em>last</em>, <em>first</em> etc (the same
                        as in <see cref="T:Telerik.Web.UI.GridAggregateFunction"/> enumeration )
                    </item>
            		<item><strong>sort</strong>: <em>asc</em> or <em>desc</em> - the sort order of
                    the grouped items</item>
            	</list>
            </remarks>
            <example>
            	<code lang="CS" description="Here is a sample expression:">
            Country, City, count(Country) Items, ContactName Group By Country, City desc
                </code>
            	<code lang="VB" title="[New Example]" description="Here is a sample expression:">
            Country, City, count(Country) Items, ContactName Group By Country, City desc
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByExpression.Index">
            <summary>
                Gets the index of the expression if added in a
                <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>
            </summary>
            <value>
                integer, representing the index of the collection ni
                <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupByExpressionCollection">
            <summary>
            Collection that stores group by expressions <seealso cref="T:Telerik.Web.UI.GridGroupByExpression"/>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.#ctor">
            <summary>
            <para>
             Initializes a new instance of <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>.
            </para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.#ctor(Telerik.Web.UI.GridGroupByExpressionCollection)">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> based on another <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>.
               </para>
            </summary>
            <param name="value">
                  A <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> from which the contents are copied
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.#ctor(Telerik.Web.UI.GridGroupByExpression[])">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> containing any array of <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> objects.
               </para>
            </summary>
            <param name="value">
                  An array of <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> objects with which to intialize the collection
            </param>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.Add(Telerik.Web.UI.GridGroupByExpression)">
            <summary>
               <para>Adds a <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> with the specified value to the 
               <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to add.</param>
            <returns>
               <para>The index at which the new element was inserted.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.AddRange(Telerik.Web.UI.GridGroupByExpression[])"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.Add(System.String)">
            <summary>
               <para>Parses value and adds a <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to the
               <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> string representation to add.</param>
            <returns>
               <para>The index at which the new element was inserted.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.AddRange(Telerik.Web.UI.GridGroupByExpression[])"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.AddRange(Telerik.Web.UI.GridGroupByExpression[])">
            <summary>
            <para>Copies the elements of an array to the end of the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>.</para>
            </summary>
            <param name="value">
               An array of type <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.Add(Telerik.Web.UI.GridGroupByExpression)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.AddRange(Telerik.Web.UI.GridGroupByExpressionCollection)">
            <summary>
                <para>
                  Adds the contents of another <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> to the end of the collection.
               </para>
            </summary>
            <param name="value">
               A <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.Add(Telerik.Web.UI.GridGroupByExpression)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.Contains(Telerik.Web.UI.GridGroupByExpression)">
            <summary>
            <para>Gets a value indicating whether the 
               <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> contains the specified <see cref="T:Telerik.Web.UI.GridGroupByExpression"/>.</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to locate.</param>
            <returns>
            <para><see langword="true"/> if the <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> is contained in the collection; 
              otherwise, <see langword="false"/>.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.IndexOf(Telerik.Web.UI.GridGroupByExpression)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.CopyTo(Telerik.Web.UI.GridGroupByExpression[],System.Int32)">
            <summary>
            <para>Copies the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> values to a one-dimensional <see cref="T:System.Array"/> instance at the 
               specified index.</para>
            </summary>
            <param name="array"><para>The one-dimensional <see cref="T:System.Array"/> that is the destination of the values copied from <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para></param>
            <param name="index">The index in <paramref name="array"/> where copying begins.</param>
            <returns>
              <para>None.</para>
            </returns>
            <exception cref="T:System.ArgumentException"><para><paramref name="array"/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> is greater than the available space between <paramref name="array"/> and the end of <paramref name="array"/>.</para></exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="array"/> is <see langword="null"/>. </exception>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="array"/> is less than <paramref name="array"/>"s lowbound. </exception>
            <seealso cref="T:System.Array"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.IndexOf(Telerik.Web.UI.GridGroupByExpression)">
            <summary>
               <para>Returns the index of a <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> in 
                  the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to locate.</param>
            <returns>
            <para>The index of the <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> of <paramref name="value"/> in the 
            <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/>, if found; otherwise, -1.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.Contains(Telerik.Web.UI.GridGroupByExpression)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.Insert(System.Int32,Telerik.Web.UI.GridGroupByExpression)">
            <summary>
            <para>Inserts a <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> into the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> at the specified index.</para>
            </summary>
            <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
            <param name=" value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to insert.</param>
            <returns><para>None.</para></returns>
            <seealso cref="M:Telerik.Web.UI.GridGroupByExpressionCollection.Add(Telerik.Web.UI.GridGroupByExpression)"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.GetEnumerator">
            <summary>
               <para>Returns an enumerator that can iterate through 
                  the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para>
            </summary>
            <returns><para>None.</para></returns>
            <seealso cref="T:System.Collections.IEnumerator"/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupByExpressionCollection.Remove(Telerik.Web.UI.GridGroupByExpression)">
            <summary>
               <para> Removes a specific <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> from the 
               <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.GridGroupByExpression"/> to remove from the <see cref="T:Telerik.Web.UI.GridGroupByExpressionCollection"/> .</param>
            <returns><para>None.</para></returns>
            <exception cref="T:System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupByExpressionCollection.Item(System.Int32)">
            <summary>
            <para>Represents the entry at the specified index of the <see cref="T:Telerik.Web.UI.GridGroupByExpression"/>.</para>
            </summary>
            <param name="index"><para>The zero-based index of the entry to locate in the collection.</para></param>
            <value>
               <para> The entry at the specified index of the collection.</para>
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is outside the valid range of indexes for the collection.</exception>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupPanel">
            <summary>
            	<strong>GridGroupPanel</strong> appears on the top of Telerik RadGrid
                when <see cref="P:Telerik.Web.UI.RadGrid.ShowGroupPanel">ShowGroupPanel</see> of RadGrid is set to
                <strong>true</strong> and if <see cref="P:Telerik.Web.UI.GridClientSettings.AllowDragToGroup"/>
                is set to <strong>true</strong>, you can drag column to the panel to group data by
                that column.
            </summary>
            <seealso cref="!:grdBasicGrouping.html" cat="RadGrid Manual">Basic Grouping</seealso>
            <seealso cref="!:grdTraverseItemsInGroupPanel.html" cat="RadGrid Manual">Traversing items in group panel</seealso>
            <example>
            	<code lang="CS" title="Iterate through group panel items in PreRender">
            protected void RadGrid1_PreRender(object sender, System.EventArgs e)
            {
                    TableCell cell;
             
                    foreach (cell in RadGrid1.GroupPanel.GroupPanelItems)
                    {
                        Control ctrl;
                        foreach (ctrl in cell.Controls)
                        {
                            if (ctrl is ImageButton)
                            {
                                ImageButton button = ctrl as ImageButton;
                                button.ImageUrl = "&lt;my_img_url&gt;";
                                button.CausesValidation = false;
                            }
                        }
                    }
            }
                </code>
            	<code lang="VB" title="Iterate through group panel items in PreRender">
            Protected Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid1.PreRender
                    Dim cell As TableCell
             
                    For Each cell In RadGrid1.GroupPanel.GroupPanelItems
                        Dim ctrl As Control
                        For Each ctrl In cell.Controls
                            If (Typeof ctrl Is ImageButton) Then
                                Dim button As ImageButton = CType(ctrl, ImageButton)
                                button.ImageUrl = "&lt;my_img_url&gt;"
                                button.CausesValidation = False
                            End If
                        Next ctrl
                    Next cell
            End Sub
                </code>
            </example>
            <remarks>
                Group by fields (displayed in the GroupPanel) are defined through the
                <see cref="P:Telerik.Web.UI.GridTableView.GroupByExpressions">GridGroupByExpressions</see>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupPanel.#ctor">
            <summary>For internal usage only.</summary>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupPanel.InitializeIn(Telerik.Web.UI.RadGrid,System.Boolean)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupPanel.Ungroup(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.GridGroupPanel.Swap(System.String,System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupPanel.GroupPanelItems">
            <summary>
            Gets a collection of items displayed in the group panel. These items represent
            the <strong>GroupByFields</strong> used for Telerik RadGrid
            grouping.
            </summary>
            <example>
            	<code lang="CS" title="Traversing items in group panel">
            protected void RadGrid1_PreRender(object sender, System.EventArgs e)
            {
                    TableCell cell;
             
                    foreach (cell in RadGrid1.GroupPanel.GroupPanelItems)
                    {
                        Control ctrl;
                        foreach (ctrl in cell.Controls)
                        {
                            if (ctrl is ImageButton)
                            {
                                ImageButton button = ctrl as ImageButton;
                                button.ImageUrl = "&lt;my_img_url&gt;";
                                button.CausesValidation = false;
                            }
                        }
                    }
            }
                </code>
            	<code lang="VB" title="Traversing items in group panel">
            Protected Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs) Handles RadGrid1.PreRender
                    Dim cell As TableCell
             
                    For Each cell In RadGrid1.GroupPanel.GroupPanelItems
                        Dim ctrl As Control
                        For Each ctrl In cell.Controls
                            If (Typeof ctrl Is ImageButton) Then
                                Dim button As ImageButton = CType(ctrl, ImageButton)
                                button.ImageUrl = "&lt;my_img_url&gt;"
                                button.CausesValidation = False
                            End If
                        Next ctrl
                    Next cell
            End Sub
                </code>
            </example>
            <seealso cref="!:grdTraverseItemsInGroupPanel.html" cat="RadGrid Manual">Traversing items in group panel</seealso>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupPanel.Text">
            <summary>
            Gets or sets the text displayed in the group panel to urge the user dragging a
            column to group by.
            </summary>
            <example>
            	<pre>
            &lt;GroupPanel Text="Drag here the column you need to group by."&gt;&lt;/GroupPanel&gt;
            </pre>
            </example>
            <remarks>
            Note that the GroupPanel Text has a default value, so you don't need to set it
            generally.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupPanel.PanelStyle">
            <summary>Gets the style that will be used for the group panel.</summary>
            <example>
            	<pre>
                &lt;GroupPanel Text="Drag a column here."&gt;<br/>        &lt;PanelStyle BackColor="Aqua" BorderStyle="Dotted" /&gt;<br/>    &lt;/GroupPanel&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupPanel.PanelItemsStyle">
            <summary>Gets the style that will be used for the group panel items.</summary>
            <example>
            	<pre>
                &lt;GroupPanel Text="Drag a column here."&gt;<br/>        &lt;PanelStyle BackColor="Aqua" BorderStyle="Dotted" /&gt;<br/>        &lt;PanelItemsStyle BackColor="Black" Font-Italic="true"/&gt;<br/>    &lt;/GroupPanel&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridGroupPanel.Visible">
            <summary>Gets or sets a value indicating whether the group panel will be displayed.</summary>
            <value>true, if group panel is visible, otherwise false (the default value).</value>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridGroupPanelStyle">
            <summary>
            Summary description for GridGroupPanelStyle.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridHeaderContextMenu">
            <summary>
            
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridHeaderContextMenu.EnableAutoScroll">
            <summary>
            	Gets or sets a value indicating if an automatic scroll is applied if the groups are larger then the screen height.		
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridFilterMenu">
            <summary>Represents the filtering menu for Telerik RadGrid.</summary>
        </member>
        <member name="T:Telerik.Web.UI.GridNeedDataSourceEventArgs">
            <summary>
            Summary description for NeedDataSourceEvent.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadGrid">
            <summary>
            RadGrid control class.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridTableView"/>
            <remarks>
            Set properties of RadGrid as default for the corresponding properties of grid's 
            table views <seealso cref="T:Telerik.Web.UI.GridTableView"/>.
            The best approach to bind RadGrid is to handle its <see cref="E:Telerik.Web.UI.RadGrid.NeedDataSource"/> event and set the DataSource property 
            there. This way RadGrid will handle automatically operations like paging, sorting, grouping, etc.
            The main table-view can be accessed through <see cref="P:Telerik.Web.UI.RadGrid.MasterTableView"/> property.
            The group panel and its items can be accessed using GroupPanel property. Note that the group items can be modified only 
            through the <see cref="P:Telerik.Web.UI.GridTableView.GroupByExpressions"/> properties of each GridTableView.
            Hierarchical grid structure can be implemented adding GridTableView objects to <see cref="P:Telerik.Web.UI.GridTableView.DetailTables"/> and handling 
            <see cref="E:Telerik.Web.UI.RadGrid.DetailTableDataBind"/> event, where you should set the DataSource of each bound detail table filtered
            according to the <see cref="P:Telerik.Web.UI.GridTableView.ParentItem"/> property key values.
            The <see cref="P:Telerik.Web.UI.RadGrid.Columns"/> of RadGrid property is a reference to the columns of the MasterTableView and is present in RadGrid for 
            compatibility with the DataGrid server control.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.CancelCommandName">
            <summary>Represents the <b>Cancel</b> command name. This field is read-only.</summary>
            <remarks>
            Use the <b>CancelCommandName</b> field to represent the "Cancel" command name.
            This command cancels the edit operation and RadGrid returns to normal mode.
            </remarks>
            <example>
            	<para>The example below demonstrates how to use the Cancel command within an
                EditItemTemplate.</para>
            	<pre>
            &lt;radG:GridTemplateColumn UniqueName="TemplateColumn"&gt;
            </pre>
            	<pre>
                &lt;EditItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="Cancel" Text="Cancel Edit" <font color="red">CommandName="Cancel"</font>&gt;
            </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/EditItemTemplate&gt;
            </pre>
            	<pre>
            &lt;/radG:GridTemplateColumn&gt;
            </pre>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.DeleteCommandName">
            <summary>Represents the "Delete" command name. This field is read-only.</summary>
            <remarks>
            Use the <b>DeleteCommandName</b> field to represent the "Delete" command
            name.
            </remarks>
            <example>
            	<para>The example below demonstrates how to use the Delete command within an
                ItemTemplate.</para>
            	<pre>
            &lt;radG:GridTemplateColumn UniqueName="TemplateColumn"&gt;
            </pre>
            	<pre>
                &lt;ItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="Delete" Text="Delete" <font color="red">CommandName="Delete"</font>&gt;
            </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/ItemTemplate&gt;
            </pre>
            	<pre>
            &lt;/radG:GridTemplateColumn&gt;
            </pre>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.EditCommandName">
            <summary>Represents the "Edit" command name. This field is read-only.</summary>
            <remarks>
            Use the <b>EditCommandName</b> field to represent the "Edit" command name. This
            command enters RadGrid in edit mode.
            </remarks>
            <example>
            	<para>The example below demonstrates how to use the "Edit" command within an
                ItemTemplate.</para>
            	<pre>
            &lt;radG:GridTemplateColumn UniqueName="TemplateColumn"&gt;
            </pre>
            	<pre>
                &lt;ItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="Edit" Text="Edit" <font color="red">CommandName="Edit"</font>&gt;
                </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/ItemTemplate&gt;
            </pre>
            	<pre>
            &lt;/radG:GridTemplateColumn&gt;
            </pre>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.InitInsertCommandName">
            <summary>Represents the "InitInsert" command name. This field is read-only.</summary>
            <example>
            	<para>The example below demonstrates how to use the InitInsert command within an
                CommandItemTemplate.</para>
            	<pre>
                &lt;CommandItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="AddNew" Text="Add new record" <font color="red">CommandName="InitInsert"</font>&gt;
            </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/CommandItemTemplate&gt;
            </pre>
            </example>
            <remarks>
            Use the <strong>InitInsertCommandName</strong> field to represent the
            "InitInsert" command name. This command enters RadGrid in edit mode and lets the user
            enter the data for a new record.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.PerformInsertCommandName">
            <summary>Represents the "PerformInsert" command name. This field is read-only.</summary>
            <remarks>
            Use the <strong>PerformInsertCommandName</strong> field to represent the
            "PerformInsert" command name. This command enters the new record into the
            database.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.RebindGridCommandName">
            <summary>
            Represents the "RebindGrid" command name. This field is read-only. Forces
            <strong>RadGrid.Rebind</strong>
            </summary>
            <remarks>
            Use the <strong>RebindGridCommandName</strong> field to force rebinding the
            grid.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.UpdateCommandName">
            <example>
            	<para>The example below demonstrates how to use the Update command within an
                EditItemTemplate.</para>
            	<pre>
            &lt;radG:GridTemplateColumn UniqueName="TemplateColumn"&gt;
                </pre>
            	<pre>
                &lt;EditItemTemplate&gt;
                </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="Update" Text="Update" <font color="red">CommandName="Update"</font>&gt;
                </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
                </pre>
            	<pre>
                &lt;/EditItemTemplate&gt;
                </pre>
            	<pre>
            &lt;/radG:GridTemplateColumn&gt;
            </pre>
            </example>
            <summary>Represents the "Update" command name. This field is read-only.</summary>
            <remarks>
            Use the <b>UpdateCommandName</b> field to represent the "Update" command
            name.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.UpdateEditedCommandName">
            <summary>
            Represents the "UpdateEdited" command name. Updates all items that are in edit
            mode. This field is read-only.
            </summary>
            <example>
            	<para>The example below demonstrates how to use the UpdateEdited command within an
                CommandItemTemplate.</para>
            	<pre>
                &lt;CommandItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="UpdateEdited" Text="Update Edited" <font color="red">CommandName="UpdateEdited"</font>&gt;
            </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/CommandItemTemplate&gt;
            </pre>
            </example>
            <remarks>
            Use the <b>UpdateCommandName</b> field to represent the "Update" command
            name.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.DeleteSelectedCommandName">
            <summary>Represents the "DeleteSelected" command name. This field is read-only.</summary>
            <remarks>
            Use the <strong>DeleteSelectedCommandName</strong> field to represent the
            "DeleteSelected" command name.
            </remarks>
            <example>
            	<para>The example below demonstrates how to use the DeleteSelected command within
                an CommandItemTemplate.</para>
            	<pre>
                &lt;CommandItemTemplate&gt;
            </pre>
            	<pre>
                    &lt;asp:LinkButton runat="server" ID="DeleteSelected" Text="Delete Selected" <font color="red">CommandName="DeleteSelected"</font>&gt;
                </pre>
            	<pre>
                    &lt;/asp:LinkButton&gt;
            </pre>
            	<pre>
                &lt;/CommandItemTemplate&gt;
            </pre>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.DownloadAttachmentCommandName">
            <summary>Represents the "DownloadAttachment" command name. This field is read-only.</summary>
            <remarks>
            Use the <strong>DownloadAttachment</strong> field to represent the
            "DownloadAttachment" command name.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RadGrid.HeaderContextMenuFilterCommandName">
            <summary>
            Represents the name of the filter command fired through RadGrid's header context menu.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.#ctor">
            <summary>
            Constructs a new instance of RadGrid
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.DataBind">
            <summary>
            	<para>Data-bind %<strong>MasterTableView</strong>% and its detail
                %<strong>GridTableView</strong>%s. Prior to calling <strong>DataBind</strong>, the
                %<strong>DataSource</strong>% property should be assigned.</para>
            </summary>
            <seealso href="http://www.telerik.com/help/aspnet-ajax/grdsimpledatabinding.html" cat="Manual">Simple Data-binding</seealso>
            <remarks>
            	<para>You should have in mind, that in case you are using simple data binding (i.e.
                when you are not using <strong>NeedDataSource</strong> event) the correct approach
                is to call the <b>DataBind()</b> method on the first page load when
                <b>!Page.IsPostBack</b> and after handling some event (sort event for
                example).</para>
            	<para>You will need to assign <strong>DataSource</strong> and rebind the grid after
                each operation (paging, sorting, editing, etc.) - this copies exactly MS
                <b>DataGrid</b> behavior.</para>
            	<para>
                    We recommend using the <see cref="M:Telerik.Web.UI.RadGrid.Rebind"/> method instead and handling
                    the <see cref="E:Telerik.Web.UI.RadGrid.NeedDataSource"/> event.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.RaisePostBackEvent(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.SetIsBetweenFilter(Telerik.Web.UI.GridColumn)">
            <summary>
            Sets property of the GridDateTimeColumn, GridNumericColumn or GridRatingColumn indicating
            whether the current filter function is Between ot NotBetween. Used in case of custom FilterTemplates
            </summary>
            <param name="column"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.CreateTableView">
            <summary>
            This method is used by RadGrid internally. Please do not use.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.Rebind">
            <summary>
            Forces RadGrid to fire
            <a href="Telerik.Web.UI~Telerik.Web.UI.RadGrid~NeedDataSource_EV.html">NeedDataSource</a>
            event then calls
            <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~DataBind.html">DataBind</a>
            	<!--DXMETADATA end -->
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.SetStyleClasses">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadGrid.ParseSPViewFieldsIntoDataColumns``1(``0)">
            <summary>
            Used by the SPRadGrid control
            </summary>
            <returns></returns>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.CancelCommand">
            <summary>
            	<para>Occurs when the Cancel button is clicked for an item in the
                Telerik RadGrid control.</para>
            </summary>
            <remarks>
            	<para>The CancelCommand event is raised when the Cancel button is clicked for an
                item in the Telerik RadGrid control.</para>
            </remarks>
            <example>
            	<br/>
                The following code example demonstrates how to specify and code a handler for the
                CancelCommand event to cancel edits made to an item in the
                Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; @ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_CancelCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    Response.Write("Cancel")
                End Sub
             
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnCancelCommand="RadGrid1_CancelCommand" &gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridEditCommandColumn&gt;
                                &lt;/radG:GridEditCommandColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$ ConnectionStrings: NorthwindConnectionString %&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.CreateColumnEditor">
            <summary>
            Fires when each editable column creates its column editor, prior to initializing its controls in the cells of the grid
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.NeedDataSource">
            <summary>
            	<para>Fires when the grid is about to be bound and the data source must be assigned
                (is null/Nothing).</para>
            </summary>
            <remarks>
            	<para>
                    Using this event eliminates the need for calling <see cref="M:Telerik.Web.UI.RadGrid.DataBind"/>
                    when the grid content should be refreshed, due to a structural change.<br/>
                    For example if Edit command bubbles, grid will automatically rebind and display
                    the item in edit mode, with no additional code.
                </para>
            	<para>Note that when you use <strong>NeedDataSource</strong> you need to assign
                manually the DataSource property only once in the event handler!</para>
            	<para><strong>Important:</strong> You should never call <strong>Rebind()</strong>
                method in <strong>NeedDataSource</strong> event handler or
                <strong>DataBind</strong>() for <font style="BACKGROUND-COLOR: #ffffff">the grid
                <u>at any stage</u> of the page lifecycle</font>!</para>
            	<para>For more information related to Advanced Data Binding (i.e. with
                NeedDataSource) see the following <a href="grdAdvancedDataBinding.html">Data
                binding</a> article.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemEvent">
            <summary>
            Fires when various item events occur - for example, before Pager item is
            initialized, before EditForm is initialized, etc.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.DetailTableDataBind">
            <summary>
            Fires when a detail-table in the hierarchy is about to be bound. You should only assign the DataSource property of the detail table to a
            data-source properly filtered to display ony child records related to the parent item.
            </summary>
            <remarks>
            You can find the instance of the detail table in the event argument (e). You can
            find the parent item using e.DetailTable.ParentItem property. For more information see
            <a href="grdBindingHierarchicalGrids.html">Hierarchical Binding</a>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.DeleteCommand">
            <summary>
            Occurs when the Delete button is clicked for an item in the
            Telerik RadGrid control.
            </summary>
            <remarks>
            	<para>The DeleteCommand event is raised when the Delete button is clicked for an
                item in the Telerik RadGrid control.</para>
            	<para>A typical handler for the DeleteCommand event removes the selected item from
                the data source.</para>
            </remarks>
            <example>
                The following code example demonstrates how to specify and code a handler for the
                CancelCommand event to cancel a Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" /&gt; @ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_DeleteCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    Response.Write("Delete")
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnDeleteCommand="RadGrid1_DeleteCommand"  &gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridButtonColumn Text="Delete" CommandName="Delete" UniqueName="Delete"&gt;&lt;/radG:GridButtonColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$ ConnectionStrings: NorthwindConnectionString %&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.EditCommand">
            <summary>
            Occurs when the Edit button is clicked for an item in the
            Telerik RadGrid control.
            </summary>
            <remarks>
            	<para>The EditCommand event is raised when the Edit button is clicked for an item
                in the Telerik RadGrid control.</para>
            	<para>A typical handler for the EditCommand event edites the selected item from the
                data source.</para>
            </remarks>
            <example>
                The following code example demonstrates how to specify and code a handler for the
                EditCommand event to edit a Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" /&gt; @ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_EditCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    Response.Write("Edit")
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnEditCommand="RadGrid1_EditCommand"  &gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridEditCommandColumn&gt;
                                &lt;/radG:GridEditCommandColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemCommand">
            <summary>
            	<para>Occurs when a button is clicked in a Telerik RadGrid
                control.</para>
            </summary>
            <remarks>
            	<para>The ItemCommand event is raised when a button is clicked in the
                Telerik RadGrid control. This allows you to provide an event-handling
                method that performs a custom routine whenever this event occurs.</para>
            	<para>Buttons within a Telerik RadGrid control can also invoke some of
                the built-in functionality of the control. Fires if any control inside
                Telerik RadGrid rises a bubble event. This can be a command button
                (like Edit, Update button, Expand/Collapse of an items) The command arguemtn
                carries a reference to the item which rised the event, the command name and
                argument object.</para>
            	<para>A GridCommandEventArgs object is passed to the event-handling method, which
                allows you to determine the command name and command argument of the button
                clicked.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the ItemCommand event to add the
                name of a customer from a Telerik RadGrid control to a ListBox control when a item's Add
                button is clicked.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &lt;see cref="&gt; &lt;"/&gt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
             
                Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs)
                    If e.Item.ItemType = GridItemType.AlternatingItem Or e.Item.ItemType = GridItemType.Item Then
                        Dim item As Telerik.Web.UI.GridDataItem
                        item = e.Item
                        Dim LinkButton1 As LinkButton
                        LinkButton1 = item("LinkColumn").FindControl("LinkButton1")
                        LinkButton1.CommandArgument = e.Item.ItemIndex.ToString()
                    End If
                End Sub
             
                Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    ' If multiple buttons are used in a Telerik RadGrid control, use the
                    ' CommandName property to determine which button was clicked.
                    If e.CommandName = "Add" Then
                
                        ' Convert the row index stored in the CommandArgument
                        ' property to an Integer.
                        Dim index As Integer = Convert.ToInt32(e.CommandArgument)
                        
                        ' Retrieve the item that contains the button clicked 
                        ' by the user from the Items collection.
                        Dim item As Telerik.Web.UI.GridDataItem = RadGrid1.Items(index)
                        
                        ' Create a new ListItem object for the customer in the item.     
                        Dim nitem As New ListItem()
                        nitem.Text = Server.HtmlDecode(item("CustomerID").Text)
                        
                        ' If the customer is not already in the ListBox, add the ListItem 
                        ' object to the Items collection of the ListBox control. 
                        If Not CustomersListBox.Items.Contains(nitem) Then
                  
                            CustomersListBox.Items.Add(nitem)
                    
                        End If
                  
                    End If
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnItemCreated="RadGrid1_ItemCreated" OnItemCommand="RadGrid1_ItemCommand"&gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridTemplateColumn 
                                    UniqueName="LinkColumn" 
                                    HeaderText="LinkColumn"&gt;
                                    &lt;ItemTemplate&gt;
                                        &lt;asp:LinkButton CommandName="Add" Text="click" ID="LinkButton1" runat="server"&gt;LinkButton&lt;/asp:LinkButton&gt;
                                    &lt;/ItemTemplate&gt;
                                &lt;/radG:GridTemplateColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;asp:listbox id="CustomersListBox" runat="server"/&gt; 
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemCreated">
            <summary>
            	<para>Occurs when an item is created in a Telerik RadGrid
                control.</para>
            </summary>
            <remarks>
            	<para>Before the Telerik RadGrid control can be rendered, a GridItem
                object must be created for each row in the control. The ItemCreated event is raised
                when each row in the Telerik RadGrid control is created. This allows
                you to provide an event-handling method that performs a custom routine, such as
                adding custom content to a item, whenever this event occurs.</para>
            	<para>A GridItemEventArgs object is passed to the event-handling method, which
                allows you to access the properties of the row being created. You can determine
                which item type (header item, data pager item, and so on) is being bound by using
                the Item.ItemType property.</para>
            	<para><strong>Note</strong> that the changes made to the item control and its
                children at this stage does not persist into the ViewState.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the ItemCreated event to store
                the index of the item being created in the CommandArgument property of a LinkButton
                control contained in the item. This allows you to determine the index of the item
                that contains the LinkButton control when the user clicked the button.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
             
                Protected Sub RadGrid1_ItemCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs)
                    If e.Item.ItemType = GridItemType.AlternatingItem Or e.Item.ItemType = GridItemType.Item Then
                        Dim item As Telerik.Web.UI.GridDataItem
                        item = e.Item
                        Dim LinkButton1 As LinkButton
                        LinkButton1 = item("LinkColumn").FindControl("LinkButton1")
                        LinkButton1.CommandArgument = e.Item.ItemIndex.ToString()
                    End If
                End Sub
             
                Protected Sub RadGrid1_ItemCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    ' If multiple buttons are used in a Telerik RadGrid control, use the
                    ' CommandName property to determine which button was clicked.
                    If e.CommandName = "Add" Then
                
                        ' Convert the row index stored in the CommandArgument
                        ' property to an Integer.
                        Dim index As Integer = Convert.ToInt32(e.CommandArgument)
                        
                        ' Retrieve the item that contains the button clicked 
                        ' by the user from the Items collection.
                        Dim item As Telerik.Web.UI.GridDataItem = RadGrid1.Items(index)
                        
                        ' Create a new ListItem object for the customer in the item.     
                        Dim nitem As New ListItem()
                        nitem.Text = Server.HtmlDecode(item("CustomerID").Text)
                        
                        ' If the customer is not already in the ListBox, add the ListItem 
                        ' object to the Items collection of the ListBox control. 
                        If Not CustomersListBox.Items.Contains(nitem) Then
                  
                            CustomersListBox.Items.Add(nitem)
                    
                        End If
                  
                    End If
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnItemCreated="RadGrid1_ItemCreated" OnItemCommand="RadGrid1_ItemCommand"&gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridTemplateColumn 
                                    UniqueName="LinkColumn" 
                                    HeaderText="LinkColumn"&gt;
                                    &lt;ItemTemplate&gt;
                                        &lt;asp:LinkButton CommandName="Add" Text="click" ID="LinkButton1" runat="server"&gt;LinkButton&lt;/asp:LinkButton&gt;
                                    &lt;/ItemTemplate&gt;
                                &lt;/radG:GridTemplateColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;asp:listbox id="CustomersListBox" runat="server"/&gt; 
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString"&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ColumnCreating">
            <summary>
            Fires <strong>before</strong> a custom column is created. You can handle the
            event to replace or modify the instance of the column that should be created and added
            into the collection of column in the corresponding
            <strong>GridTableView</strong>.
            </summary>
            <remarks>
            	<para>The <strong>ColumnCreating</strong> event of Telerik RadGrid is
                fired <strong>only for custom grid columns.</strong> It is not designed to be used
                to cancel the creation of auto-generated columns. Its purpose is to have place
                where to define your custom columns (extending the default grid columns)
                programmatically and add them to the grid <strong>Columns</strong>
                collection.</para>
            	<para>See the manual part of Telerik RadGrid documentation for details
                about Telerik RadGrid inheritance.</para>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ColumnCreated">
            <remarks>
            The <strong>ColumnCreated</strong> event of Telerik RadGrid is
            designated to customize auto-generated columns at runtime (for example
            <strong>DataFormatString</strong>, <strong>ReadOnly</strong> or other properties of
            these auto-generated columns).
            </remarks>
            <summary>
            This event is fired <strong>after</strong> the creation of auto-generated
            columns.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemDataBound">
            <summary>
            	<para>Occurs when a data item is bound to data in a Telerik RadGrid
                control.</para>
            </summary>
            <remarks>
            	<para>Before the Telerik RadGrid control can be rendered, each item in
                the control must be bound to a record in the data source. The ItemDataBound event
                is raised when a data item (represented by a GridItem object) is bound to data in
                the Telerik RadGrid control. This allows you to provide an
                event-handling method that performs a custom routine, such as modifying the values
                of the data bound to the item, whenever this event occurs.</para>
            	<para>A GridItemEventArgs object is passed to the event-handling method, which
                allows you to access the properties of the item being bound. You can determine
                which item type (header item, data pager item, and so on) is being bound by using
                the Item.ItemType property.</para>
            	<para>Note that the changes made to the item control and its children does persist
                into the ViewState. This event is fired as a result of a data-binding of Telerik RadGrid
                contorl. This event is fired for items of type:</para>
            	<list type="bullet">
            		<item>GridDataItem</item>
            		<item>GridEditFormItem</item>
            		<item>GridHeaderItem</item>
            		<item>GridPagerItem</item>
            		<item>GridFooterItem</item>
            	</list>
            </remarks>
            <example>
                The following code example demonstrates how to use the ItemDataBound event to
                modify the value of a field in the data source before it is displayed in a
                Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB"&gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
            Protected Sub RadGrid1_ItemDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.GridItemEventArgs)
                    If e.Item.ItemType = GridItemType.AlternatingItem Or e.Item.ItemType = GridItemType.Item Then
                        Dim item As Telerik.Web.UI.GridDataItem
                        item = e.Item
                        item("CustomerID").Text = "Telerik"
                    End If
            End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnItemDataBound="RadGrid1_ItemDataBound"&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.PageIndexChanged">
            <summary>Fires when a paging action has been performed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.PageSizeChanged">
            <summary>
            Fires when
            <a href="RadGridNet2~Telerik.Web.UI.RadGrid~PageSize.html">PageSize</a> property
            value has been changed.
            </summary>
            <remarks>
            	<para>The <em>PageSizeChanged</em> event is rised when the value of the property
                PageSize is changed. You can cancel the event if the new <em>PageSize</em> value is
                invalid and it will not be saved. For example:</para>
            	<pre>
            protected void RadGrid1_PageSizeChanged(object source, GridPageSizeChangedEventArgs e)<br/>{<br/>    if(e.NewPageSize &lt; 1)<br/>
            		<strong>e.Canceled = true;<br/></strong>}
            </pre>
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.SortCommand">
            <summary>Occurs when a column is sorted.</summary>
            <remarks>
            	<para>The SortCommand event is raised when a column is sorted.</para>
            	<para>A typical handler for the SortCommand event sorts the list.</para>
            </remarks>
            <example>
                The following code example demonstrates how to specify and code a handler for the
                SortCommand event to sort a Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_SortCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridSortCommandEventArgs)
                    Response.Write("Sort")
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" AllowSorting="true" 
                        runat="server" OnSortCommand="RadGrid1_SortCommand" &gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.UpdateCommand">
            <summary>
            Occurs when the Update button is clicked for an item in the
            Telerik RadGrid control.
            </summary>
            <remarks>
            	<para>The UpdateCommand event is raised when the Update button is clicked for an
                item in the Telerik RadGrid control.</para>
            	<para>A typical handler for the UpdateCommand event updates the selected item from
                the data source.</para>
            </remarks>
            <example>
                The following code example demonstrates how to specify and code a handler for the
                UpdateCommand event to update a Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_UpdateCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    Response.Write("Update")
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnUpdateCommand="RadGrid1_UpdateCommand"  &gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridEditCommandColumn&gt;
                                &lt;/radG:GridEditCommandColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                       ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.InsertCommand">
            <summary>
            Occurs when the Insert button is clicked for an item in the
            Telerik RadGrid control.
            </summary>
            <remarks>
            	<para>The InsertCommand event is raised when the Insert button is clicked for an
                item in the Telerik RadGrid control.</para>
            	<para>A typical handler for the InsertCommand event insert the item into the data
                source.</para>
            </remarks>
            <example>
                The following code example demonstrates how to specify and code a handler for the
                InsertCommand event to insert a Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
             
                Protected Sub RadGrid1_InsertCommand(ByVal source As Object, ByVal e As Telerik.Web.UI.GridCommandEventArgs)
                    Response.Write("Insert")
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server" OnInsertCommand="RadGrid1_InsertCommand"   &gt;
                        &lt;MasterTableView CommandItemDisplay="TopAndBottom"&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt; 
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.GroupsChanging">
            <summary>
            Fires when a grouping action has been performed. For example when a column header
            was dragged in the GroupPanel.
            </summary>
            <remarks>
            You can use this event to set your own
            <a href="RadGridNet2~Telerik.Web.UI.GridGroupByExpression.html">GridGroupByExpression</a>
            when the user tries to group the grid.
            </remarks>
            <example>
            	<code lang="CS" title="CS">
            protected void RadGrid1_GroupsChanging(object source, Telerik.Web.UI.GridGroupsChangingEventArgs e)
            {
             //Expression is added (by drag/grop on group panel)
             
              if (e.Action == GridGroupsChangingAction.Group)
             {
              if (e.Expression.GroupByFields[0].FieldName != "CustomerID")
              {
               GridGroupByField countryGroupField = new GridGroupByField();
               countryGroupField.FieldName = "Country";
               GridGroupByField cityGroupField = new GridGroupByField();
               cityGroupField.FieldName = "City";
             
               e.Expression.SelectFields.Clear();
               e.Expression.SelectFields.Add(countryGroupField);
               e.Expression.SelectFields.Add(cityGroupField);
             
               e.Expression.GroupByFields.Clear();
               e.Expression.GroupByFields.Add(countryGroupField);
               e.Expression.GroupByFields.Add(cityGroupField);
              }
             
             }
            }
                </code>
            	<code lang="VB" title="VB">
            Protected Sub RadGrid1_GroupsChanging(ByVal source As Object, ByVal e As Telerik.Web.UI.GridGroupsChangingEventArgs)
             'Expression is added (by drag/grop on group panel)
              If (e.Action = GridGroupsChangingAction.Group) Then
              If (e.Expression.GroupByFields(0).FieldName &lt;&gt; "CustomerID") Then
               Dim countryGroupField As GridGroupByField = New GridGroupByField
               countryGroupField.FieldName = "Country"
               Dim cityGroupField As GridGroupByField = New GridGroupByField
               cityGroupField.FieldName = "City"
               e.Expression.SelectFields.Clear
               e.Expression.SelectFields.Add(countryGroupField)
               e.Expression.SelectFields.Add(cityGroupField)
               e.Expression.GroupByFields.Clear
               e.Expression.GroupByFields.Add(countryGroupField)
               e.Expression.GroupByFields.Add(cityGroupField)
              End If
             End If
            End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemUpdated">
            <summary>Fires when an automatic update operation is executed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemInserted">
            <summary>Fires when an automatic insert operation is executed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ItemDeleted">
            <summary>Fires when an automatic delete operation is executed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ExcelMLExportStylesCreated">
            <summary>Fires when a grid is exported to ExcelML and styles collections is created.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ExcelMLExportRowCreated">
            <summary>Fires when a grid is exported to ExcelML and row is created.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ExcelMLWorkBookCreated">
            <summary>Fires when a grid is exported to ExcelML and WorkBook is created.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.GridExporting">
            <summary>Fires when a grid is exporting.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.PdfExporting">
            <summary>Fires when a grid is exporting.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.HTMLExporting">
            <summary>Fires when a grid is exporting to Word or HTML Excel.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ExcelExportCellFormatting">
            <summary>
            
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ExportCellFormatting">
            <summary>
            Fires when a grid is exporting.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadGrid.ColumnsReorder">
            <summary>Fires when a columns reorder action has been performed.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.DataSource">
            <summary>
            Gets or sets the object from which the Telerik RadGrid control
            retrieves its list of data items.
            </summary>
            <remarks>
            	<para>You should have in mind, that in case you are using simple data binding (i.e.
                when you are not using <strong>NeedDataSource</strong> event) the correct approach
                is to call the <b>DataBind()</b> method on the first page load when
                <b>!Page.IsPostBack</b> and after handling some event (sort event for
                example).</para>
            	<para>You will need to assign <strong>DataSource</strong> and rebind the grid after
                each operation (paging, sorting, editing, etc.) - this copies exactly MS
                <b>DataGrid</b> behavior.</para>
            </remarks>
            <value>
            An object that represents the data source from which the
            Telerik RadGrid control retrieves its data. The default is a null reference
            (Nothing in Visual Basic).
            </value>
            <example>
            The following code example demonstrates how the DataSource property of a
            Telerik RadGrid control is used. In this example, the
            Telerik RadGrid control is bound to a DataSet object. After the DataSource
            property is set, the DataBind method is called explicitly.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.DataMember">
            <summary>
            Gets or sets the name of the list of data that the Telerik RadGrid
            control binds to, in cases where the data source contains more than one distinct list
            of data items.
            </summary>
            <value>
            The name of the specific list of data that the Telerik RadGrid
            control binds to, if more than one list is supplied by a data source control. The
            default value is String.Empty.
            </value>
            <remarks>
            	<para>
                    Use the <b>DataMember</b> property to specify a member from a multimember data
                    source to bind to the list control. For example, if you have a data source with
                    more than one table specified in the <see cref="P:Telerik.Web.UI.RadGrid.DataSource">DataSource</see>
                    property, use the <b>DataMember</b> property to specify which table to bind to
                    a data listing control.
                </para>
            	<para>The value of the DataMember property is stored in view state.</para>
            	<para>This property cannot be set by themes or style sheet themes. For more
                information, see <strong>ThemeableAttribute</strong> and <strong>Themes and Skins
                Overview</strong> in MSDN.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.GroupingSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridGroupingSettings"/> object that
                    allows you to set the properties of the grouping operation in a
                    Telerik RadGrid control.
                </para>
            </summary>
            <example>
                The following code example demonstrates how to set the GroupingSettings property
                declaratively. It sets the tooltips of the group expand control of the
                Telerik RadGrid. 
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1"
                        runat="server"&gt;
                        &lt;GroupingSettings ExpandTooltip="ExpandTooltip" /&gt;
                        &lt;MasterTableView&gt;
                            &lt;GroupByExpressions&gt;
                                &lt;radG:GridGroupByExpression&gt;
                                    &lt;SelectFields&gt;
                                        &lt;radG:GridGroupByField FieldAlias="CompanyName" FieldName="CompanyName" &gt;&lt;/radG:GridGroupByField&gt;
                                    &lt;/SelectFields&gt;
                                    &lt;GroupByFields&gt;
                                        &lt;radG:GridGroupByField FieldName="CompanyName" SortOrder="Descending"&gt;&lt;/radG:GridGroupByField&gt;
                                    &lt;/GroupByFields&gt;
                                &lt;/radG:GridGroupByExpression&gt;
                            &lt;/GroupByExpressions&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <value>
                A reference to the <see cref="T:Telerik.Web.UI.GridGroupingSettings"/> that allows you to set
                the properties of the grouping operation in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the <strong>GroupingSettings</strong> property to control the settings of
                the grouping operations in a Telerik RadGrid control. This property is
                read-only; however, you can set the properties of the
                <strong>GridGroupingSettings</strong> object it returns. The properties can be set
                declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridGroupingSettings object (for example,
                    GroupingSettings-ExpandTooltip).</item>
            		<item>Nest a &lt;GroupingSettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, GroupingSettings.ExpandTooltip). Common settings
                usually include the tool tips for the sorting controls.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.SortingSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridSortingSettings"/> object that
                    allows you to set the properties of the sorting operation in a
                    Telerik RadGrid control.
                </para>
            </summary>
            <value>
                A reference to the <see cref="T:Telerik.Web.UI.GridSortingSettings"/> that allows you to set
                the properties of the sorting operation in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the SortingSettings property to control the settings of the sorting
                operations in a Telerik RadGrid control. This property is read-only;
                however, you can set the properties of the GridSortingSettings object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridSortingSettings object (for example,
                    SortingSettings-SortedAscToolTip).</item>
            		<item>Nest a &lt;SortingSettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, SortingSettings.SortedAscToolTip). Common
                settings usually include the tool tips for the sorting controls.</para>
            </remarks>
            <example>
                The following code example demonstrates how to set the SortingSettings property
                declaratively. It sets the tooltips of the sorting control of the
                Telerik RadGrid control. 
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        AllowSorting="true"&gt;
                        &lt;SortingSettings SortToolTip="SortToolTip" SortedAscToolTip="SortedAscToolTip" SortedDescToolTip="SortedDescToolTip" /&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.HierarchySettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridHierarchySettings"/> object that
                    allows you to set the properties of the hierarchical
                    Telerik RadGrid control.
                </para>
            </summary>
            <value>
            A reference to the GridHierarchySettings that allows you to set the properties of
            the hierarchical Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the HierarchySettings property to control the settings of the
                hierarchical Telerik RadGrid control. This property is read-only;
                however, you can set the properties of the GridHierarchySettings object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridHierarchySettings object (for example,
                    HierarchySettings-CollapseTooltip).</item>
            		<item>Nest a &lt;HierarchySettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, HierarchySettings.CollapseTooltip). Common
                settings usually include the tool tips for the hierarchical
                Telerik RadGrid control.</para>
            </remarks>
            <example>
            	<code lang="VB" title="VB">
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ExportSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridExportSettings"/> object that
                    allows you to set the properties of the grouping operation in a
                    Telerik RadGrid control.
                </para>
            </summary>
            <value>
            A reference to the GridExportSettings that allows you to set the properties of
            the grouping operation in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the ExportSettings property to control the settings of the grouping
                operations in a Telerik RadGrid control. This property is read-only;
                however, you can set the properties of the GridGroupingSettings object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridExportSettings object (for example,
                    GroupingSettings-ExpandTooltip).</item>
            		<item>Nest a &lt;GroupingSettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, GroupingSettings.ExpandTooltip). Common settings
                usually include the tool tips for the sorting controls.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ValidationSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridValidationSettings"/> object that
                    allows you to set the properties of the validate operation in a
                    Telerik RadGrid control.
                </para>
            </summary>
            <value>
                A reference to the <see cref="T:Telerik.Web.UI.GridValidationSettings"/> that allows you to set
                the properties of the validate operation in a Telerik RadGrid control.
            </value>
            <example>
                The following code example demonstrates how to set the
                <strong>ValidationSettings</strong> property declaratively. It sets the validation
                for the <strong>PerformInsert</strong> command event of the TextBox1 control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        AutoGenerateColumns="false" 
                        runat="server"&gt;
                        &lt;ValidationSettings 
                            EnableValidation="true" 
                            CommandsToValidate="PefrormInsert" /&gt;
                            &lt;MasterTableView CommandItemDisplay="TopAndBottom"&gt;
                                &lt;Columns&gt;
                                    &lt;radG:GridEditCommandColumn&gt;
                                    &lt;/radG:GridEditCommandColumn&gt;
                                    &lt;radG:GridTemplateColumn HeaderText="ContactName" UniqueName="ContactName" DataField="ContactName"&gt;
                                        &lt;ItemTemplate&gt;
                                            &lt;%# Eval("ContactName") &lt;see cref="TextBox Text='&lt;"&gt;&gt;
                                        &lt;/ItemTemplate&gt;
                                        &lt;EditItemTemplate&gt;
                                            &lt;asp&lt;/see&gt;# Bind("ContactName") %&gt;' ID="TextBox1" runat="server"&gt;&lt;/asp:TextBox&gt;
                                            &lt;asp:RequiredFieldValidator ControlToValidate="TextBox1" ID="RequiredFieldValidator1" runat="server" ErrorMessage="RequiredFieldValidator"&gt;&lt;/asp:RequiredFieldValidator&gt;
                                        &lt;/EditItemTemplate&gt;
                                    &lt;/radG:GridTemplateColumn&gt;
                                &lt;/Columns&gt;
                            &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT TOP 3 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <remarks>
            	<para>Use the ValidationSettings property to control the settings of the validate
                operations in a Telerik RadGrid control. This property is read-only;
                however, you can set the properties of the GridValidationSettings object it
                returns. The properties can be set declaratively using one of the following
                methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridValidationSettings object (for example,
                    ValidationSettings-EnableValidation).</item>
            		<item>Nest a &lt;ValidationSettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, ValidationSettings.EnableValidation). Common
                settings usually include the propeties for the validation logic in
                Telerik RadGrid control.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ShowDesignTimeSmartTagMessage">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowCustomPaging">
            <summary>
            Gets or sets a value indicating whether custom paging should be performed instead
            of the integrated automatic paging.
            </summary>
            <remarks>
            	<para>
            		<a href="http://www.telerik.com/r.a.d.controls/Grid/Examples/Programming/CustomPaging/DefaultCS.aspx">
                This online example</a> demonstrates an approach to implementing custom paging with
                Telerik RadGrid. The simulated "DataLayer" wraps the logic of extracting records
                for only the specified page and deleting records. Telerik RadGrid
                maintains the pager buttons, changing of pager and other presentation specific
                features.</para>
            	<para>Another available option for custom paging support is represented in the
                <a href="grdCustomPagingThroughObjectDataSourcePopulation.html">how-to
                section</a>.</para>
            	<para><strong>Note:</strong> There is no universal mechanism for grouping when
                custom paging is allowed. The reason for this is that with the custom paging
                mechanism you fetch only part of the whole information from the grid datasource.
                Thus, when you trigger the grouping event the grid is restricted from operating
                with the whole available source data and is not able to group the items accurately.
                Furthermore, the aggregate functions as Count, Sum, etc. (covering operations with
                the whole set of grid items) will return incorrect results.</para>
            	<para>A workaround solution for you could be to use hierarchy in the grid instead
                of grouping to single out the grid items logically and visually according to custom
                criteria. Thus you will be able to use custom paging without further
                limitations.</para>
            	<para>Another approach is to build your own complex SQL statements which to get the
                whole available data from the grid datasource and then group the items in the grid
                with custom code logic.<br/>
            		<br/>
                Finally, you can use standard paging instead of custom paging to ensure the
                consistency of the data on grouping.</para>
            </remarks>
            <value>
            	<strong>true</strong>, if custom paging is allowed; otherwise
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowPaging">
            <summary>
            Gets or sets a value indicating whether the automatic paging feature is
            enabled.
            </summary>
            <value>
            	<strong>true</strong> if the paging feature is enabled; otherwise,
            <strong>false</strong>. The default is <strong>false</strong>
            </value>
            <remarks>
            	<para>Instead of displaying all the records in the data source at the same time,
                the Telerik RadGrid control can automatically break the records up into
                pages. If the data source supports the paging capability, the
                Telerik RadGrid control can take advantage of that and provide built-in
                paging functionality. The paging feature can be used with any data source object
                that supports the System.Collections.ICollection interface or a data source that
                supports paging capability.</para>
            	<para>To enable the paging feature, set the <strong>AllowPaging</strong> property
                to <strong>true</strong>. By default, the Telerik RadGrid control
                displays 10 records on a page at a time. You can change the number of records
                displayed on a page by setting the PageSize property. To determine the total number
                of pages required to display the data source contents, use the PageCount property.
                You can determine the index of the currently displayed page by using the
                CurrentPageIndex property.</para>
            	<para>When paging is enabled, an additional item called the pager item is
                automatically displayed in the Telerik RadGrid control. The pager item contains controls
                that allow the user to navigate to the other pages. You can control the settings of
                the pager item by using the <strong>PagerItemStyle</strong> property. The pager
                item can be displayed at the top, bottom, or both the top and bottom of the control
                by setting the Position property. You can also select from one of four built-in
                pager display modes by setting the Mode property.</para>
            	<para>The Telerik RadGrid control also allows you to define a custom
                template for the pager item.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the <strong>AllowPaging</strong>
                property to declaratively enable the paging feature in the
                Telerik RadGrid control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        AllowPaging="true" &gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
            <seealso cref="P:Telerik.Web.UI.RadGrid.AllowCustomPaging" cat="Custom Paging">AllowCustomPaging Property</seealso>
            <seealso cref="!:grdBasicPaging.html" cat="Telerik RadGrid Manual">Basic Paging</seealso>
            <seealso cref="!:grdPagerItem.html" cat="Telerik RadGrid Manual">Pager Item</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowSorting">
            <summary>Gets or sets a value indicating whether the sorting feature is enabled.</summary>
            <value>
            	<strong>true</strong> if the sorting feature is enabled; otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
            <remarks>
            	<para>When a data source control that supports sorting is bound to the
                Telerik RadGrid control, the Telerik RadGrid control can
                take advantage of the data source control's capabilities and provide automatic
                sorting functionality.</para>
            	<para>To enable sorting, set the <strong>AllowSorting</strong> property to
                <strong>true</strong>. When sorting is enabled, the heading text for each column
                field with its SortExpression property set is displayed as a link button.</para>
            	<para>Clicking the link button for a column causes the items in the
                Telerik RadGrid control to be sorted based on the sort expression.
                Typically, the sort expression is simply the name of the field displayed in the
                column, which causes the Telerik RadGrid control to sort with respect
                to that column. To sort by multiple fields, use a sort expression that contains a
                comma-separated list of field names. You can determine the sort expression that the
                Telerik RadGrid control is applying by using the SortExpression
                property. Clicking a column's link button repeatedly toggles the sort direction
                between ascending and descending order.</para>
            </remarks>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
            <example>
                The following code example demonstrates how to use the AllowSorting property to
                enable sorting in a Telerik RadGrid control when automatically
                generated columns are used.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        AllowSorting="true"&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                       ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <seealso cref="!:grdSortingExpressions.html" cat="Telerik RadGrid Manual">Sorting Expressions</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EnableLinqExpressions">
            <summary>Gets or sets a value indicating whether native LINQ expressions will be enabled.</summary>
            <value>
            	<strong>true</strong> if the sorting LINQ expressions are enabled; otherwise,
            <strong>false</strong>. The default is <strong>true</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ClientSettings">
            <summary>
            	<para>
                    Gets a reference to the <see cref="T:Telerik.Web.UI.GridClientSettings"/> object that
                    allows you to set the properties of the client-side behavior and appearance in
                    a Telerik RadGrid control.
                </para>
            </summary>
            <value>
                A reference to the <see cref="T:Telerik.Web.UI.GridClientSettings"/> that allows you to set the
                properties of the the client-side behavior and appearance in a
                Telerik RadGrid control.
            </value>
            <example>
            	<para>Use the ClientSettings property to control the settings of the client-side
                behavior and appearance in a Telerik RadGrid control. This property is
                read-only; however, you can set the properties of the GridClientSettings object it
                returns. The properties can be set declaratively using one of the following
                methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridClientSettings object (for example,
                    ClientSettings-AllowDragToGroup).</item>
            		<item>Nest a &lt;ClientSettings&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, SortingSettings.AllowDragToGroup). Common
                settings usually include the behavior and appearance on the client-side.</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AlternatingItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of alternating data items in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of alternating
            data items in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the AlternatingItemStyle property to control the appearance of
                alternating data items in a Telerik RadGrid control. When this property
                is set, the data items are displayed alternating between the ItemStyle settings and
                the AlternatingItemStyle settings. This property is read-only; however, you can set
                the properties of the GridTableItemStyle object it returns. The properties can be
                set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example,
                    AlternatingItemStyle-ForeColor).</item>
            		<item>Nest an &lt;AlternatingItemStyle&gt; element between the opening and
                    closing tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, AlternatingItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the AlternatingItemStyle
                property to declaratively define the style for alternating data items in a
                Telerik RadGrid control. 
                <code lang="VB" title="VB">
            &lt;%@ Page language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html  &gt;
              &lt;head id="Head1" runat="server"&gt;
                &lt;title&gt;GridView ItemStyle and AlternatingItemStyle Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                  &lt;h3&gt;GridView ItemStyle and AlternatingItemStyle Example&lt;/h3&gt;
             
                  &lt;radG:RadGrid id="CustomersGridView" 
                    datasourceid="CustomersSource" 
                    autogeneratecolumns="true" 
                    Skin=""
                    runat="server"&gt;
                            
                    &lt;itemstyle backcolor="LightCyan"  
                       forecolor="DarkBlue"
                       font-italic="true"/&gt;
                                
                    &lt;alternatingitemstyle backcolor="PaleTurquoise"  
                      forecolor="DarkBlue"
                      font-italic="true"/&gt;
                                        
                  &lt;/radG:RadGrid&gt;
                        
                  &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                  &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                  &lt;!-- expression to retrieve the connection string value   --&gt;
                  &lt;!-- from the Web.config file.                            --&gt;
                  &lt;asp:sqldatasource id="CustomersSource"
                    selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
                    connectionstring="&lt;&lt;see cref="NorthWindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;" 
                    runat="server"/&gt;
                    
                &lt;/form&gt;
              &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.GroupHeaderItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the group-header item in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the
            group-header item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the GroupHeaderItemStyle property to control the appearance of the
                group-header item in a Telerik RadGrid control. This property is
                read-only; however, you can set the properties of the GridTableItemStyle object it
                returns. The properties can be set declaratively using one of the following
                methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example,
                    GroupHeaderItemStyle-ForeColor).</item>
            		<item>Nest a &lt;GroupHeaderItemStyle&gt; element between the opening and
                    closing tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, GroupHeaderItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the group-header item in a Telerik RadGrid
                control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin="None" &gt;
                        &lt;GroupHeaderItemStyle BackColor="red"  /&gt; 
                        &lt;MasterTableView&gt;
                            &lt;GroupByExpressions&gt;
                                &lt;radG:GridGroupByExpression&gt;
                                    &lt;SelectFields&gt;
                                        &lt;radG:GridGroupByField FieldAlias="CompanyName" FieldName="CompanyName" &gt;&lt;/radG:GridGroupByField&gt;
                                    &lt;/SelectFields&gt;
                                    &lt;GroupByFields&gt;
                                        &lt;radG:GridGroupByField FieldName="CompanyName" SortOrder="Descending"&gt;&lt;/radG:GridGroupByField&gt;
                                    &lt;/GroupByFields&gt;
                                &lt;/radG:GridGroupByExpression&gt;
                            &lt;/GroupByExpressions&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AutoGenerateColumns">
            <summary>
            Gets or sets a value indicating whether bound fields are automatically created
            for each field in the data source.
            </summary>
            <remarks>
            	<para>When the AutoGenerateColumns property is set to true, an
                <strong>GridBoundColumn</strong> object is automatically created for each field in
                the data source. Each field is then displayed as a column in the
                Telerik RadGrid control in the order that the fields appear in the data
                source. This option provides a convenient way to display every field in the data
                source; however, you have limited control of how an automatically generated column
                field is displayed or behaves.</para>
            	<para>This set of columns can be accessed using the
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridTableView~AutoGeneratedColumns.html">AutoGeneratedColumns</a>
                collection.</para>
            	<div>
            		<list type="table">
            			<item>
            				<term><img src="images/grd_hs-note.gif"/></term>
            				<description>Runtime auto-generated columns will always appear after
                            the user-specified columns, unless the columns are ordered
                            programmatically.</description>
            			</item>
            		</list>
            	</div>
            	<para>Instead of letting the Telerik RadGrid control automatically
                generate the column fields, you can manually define the column fields by setting
                the <strong>AutoGenerateColumns</strong> property to <strong>false</strong> and
                then creating a custom Columns collection. In addition to bound column fields, you
                can also display a button column, a check box column, a button column, a hyperlink
                column, an image column, or a column based on your own custom-defined template
                etc.</para>
            </remarks>
            <value>
            	<strong>true</strong> to automatically create bound fields for each field in the
            data source; otherwise, <strong>false</strong>. The default is
            <strong>true</strong>.
            </value>
            <example>
                The following code example demonstrates how to use the AutoGenerateColumns property
                to automatically create bound columns in a Telerik RadGrid control for
                each field in the data source. 
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        AutoGenerateColumns="true" 
                        AllowSorting="true"&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AutoGenerateHierarchy">
            <summary>
            Gets or sets a value indicating whether detail tables will be automatically created from the
            dataset object to which the grid is bound.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.BackImageUrl">
            <summary>
            Gets or sets the URL to an image to display in the background of a
            Telerik RadGrid control.
            </summary>
            <value>
            The URL of an image to display in the background of the
            Telerik RadGrid control. The default is an empty string (""), which
            indicates that this property is not set.
            </value>
            <remarks>
            	<para>Use the <strong>BackImageUrl</strong> property to specify the URL to an image
                to display in the background of a Telerik RadGrid control.</para>
            	<para>If the specified image is smaller than the Telerik RadGrid
                control, the image is tiled to fill in the background. If the image is larger than
                the control, the image is cropped.</para>
            </remarks>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.GroupPanel">
            <summary>
                Gets group panel control instance - visible only if grouping is enabled in grid
                (<see cref="P:Telerik.Web.UI.RadGrid.GroupingEnabled"/>). Each <see cref="T:Telerik.Web.UI.GridTableView"/>'s
                Group-By-Expression is visualized in this panel.
            </summary>
            <seealso cref="T:Telerik.Web.UI.GridClientSettings"/>
            <remarks>
                If grouping is enabled grid allows grouping by column(s) by drag-and-drop of
                columns from it's detail tables in this panel For this purpose set
                <a href="Telerik.Web.UI~Telerik.Web.UI.GridClientSettings~AllowDragToGroup.html">AllowDragToGroup</a>
                property to <strong>true</strong>. You can modify panel's appearance using
                <see cref="P:Telerik.Web.UI.GridGroupPanel.PanelStyle"/> and
                <see cref="P:Telerik.Web.UI.GridGroupPanel.PanelItemsStyle"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ShowGroupPanel">
            <seealso cref="P:Telerik.Web.UI.RadGrid.GroupPanel"/>
            <summary>
            	<para>
                    Gets or sets a value indicating whether the <see cref="T:Telerik.Web.UI.GridGroupPanel"/>
                    would be shown in Telerik RadGrid.
                </para>
            </summary>
            <value>
            	<strong>true</strong>, when Telerik RadGrid will display the panel; otherwise
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.GroupingEnabled">
            <seealso cref="P:Telerik.Web.UI.RadGrid.GroupPanel">GroupPanel</seealso>
            <summary>Gets or sets a value indicating whether the grouping is enabled.</summary>
            <remarks>
                Most often this property is used in conjunction with
                <see cref="P:Telerik.Web.UI.RadGrid.ShowGroupPanel"/> property set to <strong>true</strong>. The
                easiest way to turn the grouping on is by using the grid's SmartTag option for
                enabling the grouping.
            </remarks>
            <seealso cref="!:grdBasicGrouping.html" cat="Telerik RadGrid Manual">Basic Grouping</seealso>
            <value>
            	<strong>true</strong>, when the automatic grouping is enabled; otherwise
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowAutomaticUpdates">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will perform
            automatic updates to the data source.
            </summary>
            <value>
            	<strong>true</strong>, when the automatic updates are allowed; otherwise
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
            <remarks>
            See <a href="grdAutomaticDataSourceOperations.html">Automatic Data Source
            Operations</a> for details.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowAutomaticInserts">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will perform
            automatic insert of records to the data source.
            </summary>
            <remarks>
            See <a href="grdAutomaticDataSourceOperations.html">Automatic Data Source
            Operations</a> for details.
            </remarks>
            <value>
            	<strong>true</strong>, when automatic insert into the database would be
            performed; otherwise <strong>false</strong>. The default is
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowAutomaticDeletes">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will
            automatically delete records from the specified data source.
            </summary>
            <remarks>
            See <a href="grdAutomaticDataSourceOperations.html">Automatic Data Source
            Operations</a> for details.
            </remarks>
            <value>
            	<strong>true</strong>, when automatic delete from the database would be
            performed; otherwise <strong>false</strong>. The default is
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.MasterTableView">
            <summary>
                The instance of <see cref="T:Telerik.Web.UI.GridTableView"/> that represents the main
                grid-table view in RadGrid.
            </summary>
            <remarks>
            	<para class="">
                    Telerik RadGrid introduces a new approach to hierarchical data
                    structures. The innovative in Telerik RadGrid is having a so called
                    <strong>MasterTableView</strong>. This is the topmost table of the hierarchical
                    structure. It is a <see cref="T:Telerik.Web.UI.GridTableView"/> with
                    <see cref="T:Telerik.Web.UI.GridTableViewCollection"/>. The collection holds the so called
                    DetailTables - tables related to the fields of the MasterTable. Each
                    DetailTable can have its own <strong>GridTableViewCollection</strong> with
                    other Detail Tables, thus forming the hierarchical structure.
                </para>
            	<div>
            		<list type="table">
            			<item>
            				<description><strong>Note:</strong> There is only one Master Table for
                            a single Telerik RadGrid. This is the topmost table. All
                            inner tables are referred as a Detail Tables regardless of whether they
                            have related (inner) tables or not.</description>
            			</item>
            		</list>
            	</div>
            </remarks>
            <value>
                A reference to the topmost <see cref="T:Telerik.Web.UI.GridTableView"/>, i.e the
                <strong>MasterTableView</strong>.
            </value>
            <seealso cref="!:grdRadGridMasterTableViewDifference.html" cat="Telerik RadGrid Manual">RadGrid and MasterTableView difference</seealso>
            <example>
            	<pre>
            &lt;radg:radgrid id="RadGrid1" runat="server"<br/>
            CssClass= "RadGrid" Width="100%" AutoGenerateColumns="False" PageSize="3" AllowSorting="True"<br/>  
            AllowMultiRowSelection= "False" AllowPaging="True" GridLines="None" AllowFilteringByColumn="true"&gt;<br/> 
            &lt;PagerStyle Mode="NumericPages" CssClass="Pager"&gt;&lt;/PagerStyle&gt;<br/>  
            &lt;HeaderStyle CssClass="Header"&gt;&lt;/HeaderStyle&gt;<br/>  
            &lt;ItemStyle CssClass="Row"&gt;&lt;/ItemStyle&gt;<br/>
            &lt;AlternatingItemStyle CssClass="AltRow"&gt;&lt;/AlternatingItemStyle&gt;<br/>  
            &lt;MasterTableView DataKeyNames="CustomerID" AllowMultiColumnSorting="True"&gt;<br/> 
            &lt;DetailTables&gt;<br/>     
            &lt;radG:GridTableView DataKeyNames="OrderID" DataMember="Orders"&gt;<br/>  
            &lt;ParentTableRelation&gt;<br/>   
            &lt;radG:GridRelationFields DetailKeyField="CustomerID" MasterKeyField="CustomerID" /&gt;<br/>  
            &lt;/ParentTableRelation&gt;<br/>                        &lt;DetailTables&gt;<br/>    
            &lt;radG:GridTableView DataKeyNames="OrderID" DataMember="OrderDetails"&gt;<br/>    
            &lt;ParentTableRelation&gt;<br/>        
            &lt;radG:GridRelationFields DetailKeyField="OrderID" MasterKeyField="OrderID" /&gt;<br/>    
            &lt;/ParentTableRelation&gt;<br/>              
            &lt;Columns&gt;<br/>                   
            &lt;radG:GridBoundColumn SortExpression="UnitPrice" HeaderText="Unit Price" HeaderButtonType="TextButton"<br/> 
            DataField= "UnitPrice"&gt;<br/>    
            &lt;/radG:GridBoundColumn&gt;<br/>          
            &lt;radG:GridBoundColumn SortExpression="Quantity" HeaderText="Quantity" HeaderButtonType="TextButton"<br/>     
            DataField= "Quantity"&gt;<br/>                                    &lt;/radG:GridBoundColumn&gt;<br/>    
            &lt;radG:GridBoundColumn SortExpression="Discount" HeaderText="Discount" HeaderButtonType="TextButton"<br/>     
            DataField= "Discount"&gt;<br/>                                    &lt;/radG:GridBoundColumn&gt;<br/>          
            &lt;/Columns&gt;<br/>                                &lt;SortExpressions&gt;<br/>                           
            &lt;radG:GridSortExpression FieldName="Quantity" SortOrder="Descending"&gt;&lt;/radG:GridSortExpression&gt;<br/>    
            &lt;/SortExpressions&gt;<br/>                                &lt;ItemStyle BackColor="#A7B986"&gt;&lt;/ItemStyle&gt;<br/>  
            &lt;HeaderStyle CssClass="Header1"&gt;&lt;/HeaderStyle&gt;<br/>     
            &lt;AlternatingItemStyle BackColor="#D9E8C4"&gt;&lt;/AlternatingItemStyle&gt;<br/>    
            &lt;/radG:GridTableView&gt;<br/>              
            &lt;/DetailTables&gt;<br/>      
            &lt;Columns&gt;<br/>               
            &lt;radG:GridBoundColumn SortExpression="OrderID" HeaderText="OrderID" HeaderButtonType="TextButton"<br/>   
            DataField= "OrderID"&gt;<br/>                            &lt;/radG:GridBoundColumn&gt;<br/>        
            &lt;radG:GridBoundColumn SortExpression="OrderDate" HeaderText="Date Ordered" HeaderButtonType="TextButton"<br/>    
            DataField= "OrderDate"&gt;<br/>                            &lt;/radG:GridBoundColumn&gt;<br/>       
            &lt;radG:GridBoundColumn SortExpression="EmployeeID" HeaderText="EmployeeID" HeaderButtonType="TextButton"<br/>  
            DataField= "EmployeeID"&gt;<br/>                            &lt;/radG:GridBoundColumn&gt;<br/>     
            &lt;/Columns&gt;<br/>                        &lt;SortExpressions&gt;<br/>          
            &lt;radG:GridSortExpression FieldName="OrderDate"&gt;&lt;/radG:GridSortExpression&gt;<br/>        
            &lt;/SortExpressions&gt;<br/>                        &lt;ItemStyle Height="19px" BackColor="#FCEDB0"&gt;&lt;/ItemStyle&gt;<br/> 
            &lt;HeaderStyle CssClass="Header2" ForeColor="#ffffff"&gt;&lt;/HeaderStyle&gt;<br/>       
            &lt;AlternatingItemStyle Height="19px" BackColor="#D5B96A"&gt;&lt;/AlternatingItemStyle&gt;<br/>  
            &lt;/radG:GridTableView&gt;<br/>                &lt;/DetailTables&gt;<br/>      
            &lt;Columns&gt;<br/>        
            &lt;radG:GridBoundColumn SortExpression="CustomerID" HeaderText="CustomerID" HeaderButtonType="TextButton"<br/>  
            DataField= "CustomerID"&gt;<br/>        
            &lt;/radG:GridBoundColumn&gt;<br/>    
            &lt;radG:GridBoundColumn SortExpression="ContactName" HeaderText="Contact Name" HeaderButtonType="TextButton"<br/>    
            DataField= "ContactName"&gt;<br/>   
            &lt;/radG:GridBoundColumn&gt;<br/>       
            &lt;radG:GridBoundColumn SortExpression="CompanyName" HeaderText="Company" HeaderButtonType="TextButton"<br/>  
            DataField= "CompanyName"&gt;<br/>       
            &lt;/radG:GridBoundColumn&gt;<br/>                &lt;/Columns&gt;<br/>      
            &lt;SortExpressions&gt;<br/>          
            &lt;radG:GridSortExpression FieldName="CompanyName"&gt;&lt;/radG:GridSortExpression&gt;<br/>    
            &lt;/SortExpressions&gt;<br/>            &lt;/MasterTableView&gt;<br/>   
            &lt;SelectedItemStyle ForeColor="White" BackColor="DarkBlue" CssClass=""&gt;&lt;/SelectedItemStyle&gt;<br/>
            &lt;/radg:radgrid&gt;
                </pre>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.CurrentPageIndex">
            <summary>Gets or sets an integer value representing the current page index.</summary>
            <remarks>
                Note that the Paging must be enabled (<see cref="P:Telerik.Web.UI.RadGrid.AllowPaging"/> must
                be true) in order to use this property.
            </remarks>
            <value>zero-based int representing the index of the current page.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EditItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the item selected for editing in a Telerik RadGrid
            control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the item being
            edited in a Telerik RadGrid control.
            </value>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
            <remarks>
            	<para>Use the EditItemStyle property to control the appearance of the item being
                edited in a Telerik RadGrid control. This property is read-only;
                however, you can set the properties of the GridTableItemStyle object it returns.
                The properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, EditItemStyle-ForeColor).</item>
            		<item>Nest a &lt;EditItemStyle&gt; element between the opening and closing tags
                    of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, EditItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the EditItemStyle property to
                define a custom style for the item being edited in a Telerik RadGrid
                control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin="" &gt;
                        &lt;EditItemStyle BackColor="red" /&gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridEditCommandColumn&gt;
                                &lt;/radG:GridEditCommandColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.FooterStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the footer item in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the footer
            item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the FooterItemStyle property to control the appearance of the footer item
                in a Telerik RadGrid control. This property is read-only; however, you
                can set the properties of the GridTableItemStyle object it returns. The properties
                can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, FooterItemStyle-ForeColor).</item>
            		<item>Nest a &lt;FooterItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, FooterItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the footer item in a Telerik RadGrid
                control.
                <code title="[New Example]">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin="" 
                        ShowFooter="true" &gt;
                        &lt;FooterStyle BackColor="red" /&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.HeaderStyle">
            <summary>Gets the style properties of the heading section in the RadGrid control.</summary>
            <value>
                A reference to the <see cref="T:Telerik.Web.UI.GridTableItemStyle"/> that represents the style
                of the header item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the HeaderItemStyle property to control the appearance of the header item
                in a Telerik RadGrid control. This property is read-only; however, you
                can set the properties of the GridTableItemStyle object it returns. The properties
                can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, HeaderItemStyle-ForeColor).</item>
            		<item>Nest a &lt;HeaderItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, HeaderItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <notes>
            The <strong>ShowHeader</strong> property must be set to true for this property to
            be visible.
            </notes>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the header item in a Telerik RadGrid
                control. 
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin="" &gt;
                        &lt;HeaderStyle BackColor="red" /&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.FilterItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the filter item in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the filter
            item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the FilterItemStyle property to control the appearance of the filter item
                in a Telerik RadGrid control. This property is read-only; however, you
                can set the properties of the GridTableItemStyle object it returns. The properties
                can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, FilterItemStyle-ForeColor).</item>
            		<item>Nest a &lt;FilterItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, FilterItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the filter item in a Telerik RadGrid
                control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin="" 
                        AllowFilteringByColumn="true"&gt;
                        &lt;FilterItemStyle BackColor="red" /&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                       ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.CommandItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the command item in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the command
            item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the CommandItemStyle property to control the appearance of the command
                item in a Telerik RadGrid control. This property is read-only; however,
                you can set the properties of the GridTableItemStyle object it returns. The
                properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, CommandItemStyle-ForeColor).</item>
            		<item>Nest a &lt;CommandItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, CommandItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the command item in a Telerik RadGrid
                control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin=""&gt;
                        &lt;CommandItemStyle BackColor="red" /&gt;
                        &lt;MasterTableView CommandItemDisplay="TopAndBottom"&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ActiveItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the active item in a Telerik RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the actibe
            item in a Telerik RadGrid control.
            </value>
            <remarks>
            	<para>Use the ActiveItemStyle property to control the appearance of the active item
                in a Telerik RadGrid control. This property is read-only; however, you
                can set the properties of the GridTableItemStyle object it returns. The properties
                can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example, ActiveItemStyle-ForeColor).</item>
            		<item>Nest a &lt;ActiveItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, ActiveItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
            <example>
            The following code example demonstrates how to use the SelectedItemStyle property
            to define a custom style for the active item in a Telerik RadGrid
            control.
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.Items">
            <summary>Gets a collection of all <strong>GridDataItems</strong>.</summary>
            <remarks>
            	<para>The RadGrid control automatically populates the Items collection by creating
                a GridDataItem object for each record in the data source and then adding each
                object to the collection. This property is commonly used to access a specific item
                in the control or to iterate though the entire collection of items.</para>
            	<para>
                    You cannot use this collection to get special Items like Header, Pager, Footer,
                    etc. Handle <see cref="E:Telerik.Web.UI.RadGrid.ItemCreated"/> event and use the event arguments to
                    get a reference to such items.
                </para>
            </remarks>
            <value>all grid data items as <see cref="T:Telerik.Web.UI.GridDataItemCollection"/></value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ItemStyle">
            <summary>
            Gets a reference to the GridTableItemStyle object that allows you to set the
            appearance of the data items in a RadGrid control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the data items
            in a Telerik RadGrid control.
            </value>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
            <example>
            	<code lang="VB" title="VB">
            &lt;%@ Page language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html  &gt;
              &lt;head id="Head1" runat="server"&gt;
                &lt;title&gt;GridView ItemStyle And AlternatingItemStyle Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                  &lt;h3&gt;GridView ItemStyle And AlternatingItemStyle Example&lt;/h3&gt;
             
                  &lt;radG:RadGrid id="CustomersGridView" 
                    datasourceid="CustomersSource" 
                    autogeneratecolumns="true" 
                    Skin=""
                    runat="server"&gt;
                            
                    &lt;itemstyle backcolor="LightCyan"  
                       forecolor="DarkBlue"
                       font-italic="true"/&gt;
                                
                    &lt;alternatingitemstyle backcolor="PaleTurquoise"  
                      forecolor="DarkBlue"
                      font-italic="true"/&gt;
                                        
                  &lt;/radG:RadGrid&gt;
                        
                  &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                  &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                  &lt;!-- expression To retrieve the connection String value   --&gt;
                  &lt;!-- from the Web.config file.                            --&gt;
                  &lt;asp:sqldatasource id="CustomersSource"
                    selectcommand="Select [CustomerID], [CompanyName], [Address], [City], [PostalCode], [Country] From [Customers]"
                    connectionstring="&lt;&lt;see cref="NorthWindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;" 
                    runat="server"/&gt;
                    
                &lt;/form&gt;
              &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <remarks>
            Use the ItemStyle property to control the appearance of the data items in a
            Telerik RadGrid control. When the AlternatingItemStyle property is also set, the data
            items are displayed alternating between the ItemStyle settings and the
            AlternatingItemStyle settings. This property is read-only; however, you can set the
            properties of the GridTableItemStyle object it returns.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.PageCount">
            <summary>
            	<para>Gets the number of pages required to display the records of the data source
                in a Telerik RadGrid control.</para>
            </summary>
            <remarks>
            When the paging feature is enabled (by setting the AllowPaging property to true),
            use the PageCount property to determine the total number of pages required to display
            the records in the data source. This value is calculated by dividing the total number
            of records in the data source by the number of records displayed in a page (as
            specified by the PageSize property) and rounding up.
            </remarks>
            <value>The number of pages in a Telerik RadGrid control.</value>
            <example>
                The following code example demonstrates how to use the PageCount property to
                determine the total number of pages displayed in the Telerik RadGrid
                control.
                <code lang="CS" title="C#">
            &lt;%@ Page Language="C#" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
                protected void RadGrid1_PreRender(object sender, EventArgs e)
                {
                    Label1.Text = RadGrid1.PageCount.ToString();
                }
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        AllowPaging="true" 
                        runat="server" OnPreRender="RadGrid1_PreRender"&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                    &lt;asp:Label ID="Label1" runat="server" Text="Label"&gt;&lt;/asp:Label&gt;&lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &gt; &lt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
                Protected Sub RadGrid1_PreRender(ByVal sender As Object, ByVal e As System.EventArgs)
                    Label1.Text = RadGrid1.PageCount.ToString()
                End Sub
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        AllowPaging="true" 
                        runat="server" OnPreRender="RadGrid1_PreRender" &gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                    &lt;asp:Label ID="Label1" runat="server" Text="Label"&gt;&lt;/asp:Label&gt;&lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.PagerStyle">
            <summary>
            Gets a reference to the <strong>GridPagerStyle</strong> object that allows you to
            set the appearance of the page item in a Telerik RadGrid control.
            </summary>
            <value>
            A <strong>GridPagerStyle</strong> object that contains the style properties of
            the paging section of the <strong>RadGrid</strong> control. The default value is an
            empty <strong>GridPagerStyle</strong> object.
            </value>
            <remarks>
            	<para>Use this property to provide a custom style for the paging section of the
                <strong>RadGrid</strong> control. Common style attributes that can be adjusted
                include forecolor, backcolor, font, and content alignment within the cell.
                Providing a different style enhances the appearance of the <strong>RadGrid</strong>
                control.</para>
            	<para>To specify a custom style for the paging section, place the
                <strong>&lt;PagerStyle&gt;</strong> tags between the opening and closing tags of
                the <strong>RadGrid</strong> control. You can then list the style attributes within
                the opening <strong>&lt;PagerStyle&gt;</strong> tag.</para>
            </remarks>
            <example>
                The following code example demonstrates how to use the <strong>PagerStyle</strong>
                property to specify a custom style for the page selection elements of the
                <strong>RadGrid</strong> control. 
                <code lang="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Import Namespace="System.Data" &lt;see cref="&gt; &lt;"/&gt;@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
             
            &lt;script runat="server"&gt;
             
                Function CreateDataSource() As ICollection
                    Dim dt As New DataTable()
                    Dim dr As DataRow
                
                    dt.Columns.Add(New DataColumn("IntegerValue", GetType(Int32)))
                    dt.Columns.Add(New DataColumn("StringValue", GetType(String)))
                    dt.Columns.Add(New DataColumn("DateTimeValue", GetType(String)))
                    dt.Columns.Add(New DataColumn("BoolValue", GetType(Boolean)))
                
                    Dim i As Integer
                    For i = 0 To 99
                        dr = dt.NewRow()
                    
                        dr(0) = i
                        dr(1) = "Item " &amp; i.ToString()
                        dr(2) = DateTime.Now.ToShortDateString()
                        If i Mod 2 &lt;&gt; 0 Then
                            dr(3) = True
                        Else
                            dr(3) = False
                        End If
                    
                        dt.Rows.Add(dr)
                    Next i
                
                    Dim dv As New DataView(dt)
                    Return dv
                End Function 'CreateDataSource
             
                Sub ShowStats()
                    lblEnabled.Text = "AllowPaging is " &amp; RadGrid1.AllowPaging
                    lblCurrentIndex.Text = "CurrentPageIndex is " &amp; RadGrid1.CurrentPageIndex
                    lblPageCount.Text = "PageCount is " &amp; RadGrid1.PageCount
                    lblPageSize.Text = "PageSize is " &amp; RadGrid1.PageSize
                End Sub 'ShowStats
             
             
                Protected Sub RadGrid1_NeedDataSource(ByVal source As Object, ByVal e As Telerik.Web.UI.GridNeedDataSourceEventArgs) Handles RadGrid1.NeedDataSource
                    RadGrid1.DataSource = CreateDataSource()
                    ShowStats()
                End Sub
             
                Protected Sub CheckBox1_CheckedChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles CheckBox1.CheckedChanged
                    If CheckBox1.Checked Then
                        RadGrid1.PagerStyle.Mode = GridPagerMode.NumericPages
                    Else
                        RadGrid1.PagerStyle.Mode = GridPagerMode.NextPrev
                    End If
                    
                    RadGrid1.Rebind()
                End Sub
            &lt;/script&gt;
             
            &lt;head id="Head1" runat="server"&gt;
                &lt;title&gt;RadGrid Paging Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;h3&gt;
                    RadGrid Paging Example&lt;/h3&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;radG:RadGrid ID="RadGrid1" runat="server" AllowPaging="True"&gt;
                        &lt;PagerStyle Mode="NumericPages" HorizontalAlign="Right"&gt;&lt;/PagerStyle&gt;
                        &lt;HeaderStyle BackColor="#aaaadd"&gt;&lt;/HeaderStyle&gt;
                        &lt;AlternatingItemStyle BackColor="#eeeeee"&gt;&lt;/AlternatingItemStyle&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;br /&gt;
                    &lt;asp:CheckBox ID="CheckBox1" runat="server" Text="Show numeric page navigation buttons"
                        AutoPostBack="true" /&gt;
                    &lt;br /&gt;
                    &lt;table style="background-color: #eeeeee; padding: 6"&gt;
                        &lt;tr&gt;
                            &lt;td style="display: inline"&gt;
                                &lt;asp:Label ID="lblEnabled" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblCurrentIndex" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblPageCount" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblPageSize" runat="server" /&gt;&lt;br /&gt;
                            &lt;/td&gt;
                        &lt;/tr&gt;
                    &lt;/table&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code lang="CS">
            &lt;%@ Page Language="C#" %&gt;
             
            &lt;%@ Import Namespace="System.Data" &lt;see cref="&gt; &lt;"/&gt;@ Register TagPrefix="telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
             
            &lt;script runat="server"&gt;
                ICollection CreateDataSource()
                {
                    DataTable dt = new DataTable();
                    DataRow dr;
                    dt.Columns.Add(new DataColumn("IntegerValue", typeof(Int32)));
                    dt.Columns.Add(new DataColumn("StringValue", typeof(string)));
                    dt.Columns.Add(new DataColumn("DateTimeValue", typeof(string)));
                    dt.Columns.Add(new DataColumn("BoolValue", typeof(bool)));
                    int i;
                    for (i = 0; (i &lt;= 99); i++)
                    {
                        dr = dt.NewRow();
                        dr[0] = i;
                        dr[1] = ("Item " + i.ToString());
                        dr[2] = DateTime.Now.ToShortDateString();
                        if (((i % 2)
                                    != 0))
                        {
                            dr[3] = true;
                        }
                        else
                        {
                            dr[3] = false;
                        }
                        dt.Rows.Add(dr);
                    }
                    DataView dv = new DataView(dt);
                    return dv;
                }
             
                // CreateDataSource
                void ShowStats()
                {
                    lblEnabled.Text = ("AllowPaging is " + RadGrid1.AllowPaging);
                    lblCurrentIndex.Text = ("CurrentPageIndex is " + RadGrid1.CurrentPageIndex);
                    lblPageCount.Text = ("PageCount is " + RadGrid1.PageCount);
                    lblPageSize.Text = ("PageSize is " + RadGrid1.PageSize);
                }
             
                // ShowStats
                protected void RadGrid1_NeedDataSource(object source, Telerik.Web.UI.GridNeedDataSourceEventArgs e)
                {
                    RadGrid1.DataSource = CreateDataSource();
                    ShowStats();
                }
             
                protected void CheckBox1_CheckedChanged(object sender, System.EventArgs e)
                {
                    if (CheckBox1.Checked)
                    {
                        RadGrid1.PagerStyle.Mode = GridPagerMode.NumericPages;
                    }
                    else
                    {
                        RadGrid1.PagerStyle.Mode = GridPagerMode.NextPrev;
                    }
                    RadGrid1.Rebind();
                }
            &lt;/script&gt;
             
            &lt;head id="Head1" runat="server"&gt;
                &lt;title&gt;RadGrid Paging Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;h3&gt;
                    RadGrid Paging Example&lt;/h3&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;radG:RadGrid ID="RadGrid1" runat="server" AllowPaging="True" OnNeedDataSource="RadGrid1_NeedDataSource"&gt;
                        &lt;PagerStyle Mode="NumericPages" HorizontalAlign="Right"&gt;&lt;/PagerStyle&gt;
                        &lt;HeaderStyle BackColor="#aaaadd"&gt;&lt;/HeaderStyle&gt;
                        &lt;AlternatingItemStyle BackColor="#eeeeee"&gt;&lt;/AlternatingItemStyle&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;br /&gt;
                    &lt;asp:CheckBox ID="CheckBox1" runat="server" Text="Show numeric page navigation buttons"
                        AutoPostBack="true" OnCheckedChanged="CheckBox1_CheckedChanged" /&gt;
                    &lt;br /&gt;
                    &lt;table style="background-color: #eeeeee; padding: 6"&gt;
                        &lt;tr&gt;
                            &lt;td style="display: inline"&gt;
                                &lt;asp:Label ID="lblEnabled" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblCurrentIndex" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblPageCount" runat="server" /&gt;&lt;br /&gt;
                                &lt;asp:Label ID="lblPageSize" runat="server" /&gt;&lt;br /&gt;
                            &lt;/td&gt;
                        &lt;/tr&gt;
                    &lt;/table&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.PageSize">
            <summary>
            Gets or sets an integer value indicating the number of Items that a single page
            in Telerik RadGrid will contain.
            </summary>
            <remarks>
                Note that the Paging must be enabled (<see cref="P:Telerik.Web.UI.RadGrid.AllowPaging"/> must
                be true) in order to use this property.
            </remarks>
            <value>
            integer, indicating the number of the Items that a single grid page would
            contain.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowMultiRowSelection">
            <summary>
            Gets or sets a value indicating whether you will be able to select multiple rows
            in Telerik RadGrid. By default this property is set to
            <strong>false</strong>.
            </summary>
            <value>
            	<strong>true</strong> if you can have multiple rows selected at once. Otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
            <remarks>
            	<strong>Note:</strong> You will not be able to select the Header, Footer or Pager
            rows.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowMultiRowEdit">
            <summary>
            Gets or sets a value indicating whether Telerik RadGrid will allow
            you to have multiple rows in edit mode. The default value is
            <strong>false</strong>.
            </summary>
            <value>
            	<strong>true</strong> if you can have more than one row in edit mode. Otherwise,
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.SelectedIndexes">
            <example>
                You can see an example usage of this property in the following online example: 
                <para>
            		<a href="http://www.telerik.com/r.a.d.controls/Grid/Examples/Hierarchy/ThreeLevel/DefaultCS.aspx">
                http://www.telerik.com/r.a.d.controls/Grid/Examples/Hierarchy/ThreeLevel/DefaultCS.aspx</a></para>
            	<code lang="CS" title="CS" description="Setting the selected index prior to binding Telerik RadGrid:&#xA;            If the index is in a detail table, parent items will be expanded automatically">
            private void Page_Load(object sender, EventArgs e)
                {
                   if (!IsPostBack)
                   {                
                      RadGrid1.SelectedIndexes.Add(1, 0, 1, 0, 1);
                      //Index of 1, 0, 1, 0, 1 means:
                      //1 - item with index 1 in the MasterTabelView
                      //0 - detail table with index 0
                      //1 - item with index 1 (the second item) in the first detail table
                      //0 - 0 the third-level detail table
                      //1 - the item with index 1 in the third-level table
                   }
                }
                </code>
            	<code lang="VB" title="VB" description="Setting the selected index prior to binding Telerik RadGrid:&#xA;            If the index Is In a detail table, parent items will be expanded automatically">
            Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
               If Not IsPostBack Then
                  RadGrid1.SelectedIndexes.Add(1, 0, 1, 0, 1)
                  'Index of 1, 0, 1, 0, 1 means:
                  '1 - item With index 1 In the MasterTabelView
                  '0 - detail table With index 0
                  '1 - item With index 1 (the second item) In the first detail table
                  '0 - 0 the third-level detail table
                  '1 - the item With index 1 In the third-level table   
               End If
            End Sub
                </code>
            </example>
            <summary>Gets a collection of indexes of the selected items.</summary>
            <value>
                returns <see cref="T:Telerik.Web.UI.GridIndexCollection"/> of the indexes of all selected
                Items.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EditIndexes">
            <summary>Gets a collection of the indexes of the Items that are in edit mode.</summary>
            <example>
            	<para>
                    The following example demonstrates how to hide "Add New" button in the
                    <strong>CommandItemTemplate</strong> when Telerik RadGrid is in
                    edit/insert mode. The easiest way to check if Telerik RadGrid is in
                    edit mode is to check whether the <see cref="T:Telerik.Web.UI.GridIndexCollection"/>
                    (<strong>EditIndexes</strong> gives a reference to this) is empty.
                </para>
            	<pre>
            &lt;CommandItemTemplate&gt;
                </pre>
            	<pre>
                &lt;asp:LinkButton ID="LinkButton1" Visible="&lt;%# (!(RadGrid1.MasterTableView.IsItemInserted || <font color="red">RadGrid1.EditIndexes.Count &gt;0</font> )) %&gt;"
                </pre>
            	<pre>
            runat="server" CommandName="InitInsert"&gt;Add New&lt;/asp:LinkButton&gt;
                </pre>
            	<pre>
            &lt;/CommandItemTemplate&gt;
                </pre>
            </example>
            <value>
                returns <see cref="T:Telerik.Web.UI.GridIndexCollection"/> of all data items that are in edit
                mode.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.SelectedItems">
            <summary>Gets a collection of the currently selected GridDataItems</summary>
            <value>Returns a <see cref="T:Telerik.Web.UI.GridItemCollection"/> of all selected data items.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.SelectedValue">
            <summary>Gets the data key value of the selected row in a RadGrid control.</summary>
            <value>The data key value of the selected row in a RadGrid control.</value>
            <example>
                The following code example demonstrates how to use the
                <strong>SelectedValue</strong> property to determine the data key value of the
                selected row in a <strong>RadGrid</strong> control. 
                <code lang="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
             
              Sub RadGrid1_SelectedIndexChanged(ByVal sender As Object, ByVal e As EventArgs)
                    
                ' Display the primary key value of the selected row.
                Label1.Text = "The primary key value of the selected row is " &amp; _
                  RadGrid1.SelectedValue.ToString() &amp; "."
             
              End Sub
             
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;RadGrid SelectedValue Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;h3&gt;
                        RadGrid SelectedValue Example&lt;/h3&gt;
                    &lt;asp:Label ID="Label1" ForeColor="Red" runat="server" /&gt;
                    &lt;radG:RadGrid ID="RadGrid1" DataSourceID="SqlDataSource1" 
                        OnSelectedIndexChanged="RadGrid1_SelectedIndexChanged"
                        runat="server"&gt;
                        &lt;MasterTableView DataKeyNames="CustomerID"&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridButtonColumn CommandName="Select" Text="Select" /&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;
                    &lt;asp:SqlDataSource ID="SqlDataSource1" SelectCommand="SELECT * FROM [Customers]"
                        runat="server" ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;" /&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code lang="CS" inline="False">
            	</code>
            	<code lang="CS">
            &lt;%@ Page Language="C#" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
            &lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;script runat="server"&gt;
            protected void RadGrid1_SelectedIndexChanged(object sender, EventArgs e)
            {
                // Display the primary key value of the selected row.
                Label1.Text = "The primary key value of the selected row is " +
                    RadGrid1.SelectedValue.ToString() + ".";
            }
            &lt;/script&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml"&gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;RadGrid SelectedValue Example&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;h3&gt;
                        RadGrid SelectedValue Example&lt;/h3&gt;
                    &lt;asp:Label ID="Label1" ForeColor="Red" runat="server" /&gt;
                    &lt;radG:RadGrid ID="RadGrid1" DataSourceID="SqlDataSource1" OnSelectedIndexChanged="RadGrid1_SelectedIndexChanged"
                        runat="server"&gt;
                        &lt;MasterTableView DataKeyNames="CustomerID"&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridButtonColumn CommandName="Select" Text="Select" /&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server And connects  --&gt;
                    &lt;!-- To the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression To retrieve the connection String value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;
                    &lt;asp:SqlDataSource ID="SqlDataSource1" SelectCommand="SELECT * FROM [Customers]"
                        runat="server" ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;" /&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EditItems">
            <remarks>
            	<para>The <strong>EditItems</strong> collection contains <strong>InPlace</strong>
                edit mode items. When you switch the edit type to <strong>EditForms,</strong> the
                <strong>EditItems</strong> collection holds the currently edited items but not
                their <strong>EditFormItems</strong> (which in this case hold the new values). See
                <a href="grdUpdatingInPlaceAndEditForms.html">this</a> help article for more
                details.</para>
            	<para>
                    You should not use this property to check whether there are items in edit mode.
                    The better approach is to use <see cref="P:Telerik.Web.UI.RadGrid.EditIndexes"/> property instead.
                </para>
            </remarks>
            <summary>
            Gets a collection of all <strong>GridItems</strong> in edit mode. See the Remarks
            for more info.
            </summary>
            <value><see cref="T:Telerik.Web.UI.GridItemCollection"/> of all items that are in edit mode.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.SelectedItemStyle">
            <summary>
                Gets a reference to the <see cref="T:Telerik.Web.UI.GridTableItemStyle"/> object that allows
                you to set the appearance of the selected item in a Telerik RadGrid
                control.
            </summary>
            <value>
            A reference to the GridTableItemStyle that represents the style of the selected
            item in a Telerik RadGrid control.
            </value>
            <requirements><para>Supported in: 3.0, 2.0, 1.1, 1.0 .NET Framework</para></requirements>
            <example>
                The following code example demonstrates how to use the SelectedItemStyle property
                to define a custom style for the selected item in a Telerik RadGrid
                control.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" %&gt;
             
            &lt;%@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid 
                        DataSourceID="SqlDataSource1" 
                        ID="RadGrid1" 
                        runat="server" 
                        Skin=""&gt;
                        &lt;SelectedItemStyle BackColor="red" /&gt;
                        &lt;MasterTableView&gt;
                            &lt;Columns&gt;
                                &lt;radG:GridButtonColumn 
                                    Text="Select" 
                                    UniqueName="Select" 
                                    CommandName="Select"&gt;
                                &lt;/radG:GridButtonColumn&gt;
                            &lt;/Columns&gt;
                        &lt;/MasterTableView&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server" 
                        ConnectionString="&lt;%$NorthwindConnectionString&gt;"
                        SelectCommand="SELECT TOP 5 [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                &lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <remarks>
            	<para>Use the SelectedItemStyle property to control the appearance of the selected
                item in a Telerik RadGrid control. This property is read-only; however,
                you can set the properties of the GridTableItemStyle object it returns. The
                properties can be set declaratively using one of the following methods:</para>
            	<list type="bullet">
            		<item>Place an attribute in the opening tag of the Telerik RadGrid
                    control in the form Property-Subproperty, where Subproperty is a property of
                    the GridTableItemStyle object (for example,
                    SelectedItemStyle-ForeColor).</item>
            		<item>Nest a &lt;SelectedItemStyle&gt; element between the opening and closing
                    tags of the Telerik RadGrid control.</item>
            	</list>
            	<para>The properties can also be set programmatically in the form
                Property.Subproperty (for example, SelectedItemStyle.ForeColor). Common settings
                usually include a custom background color, foreground color, and font
                properties.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ShowFooter">
            <summary>
            Gets or set a value indicating whether the footer item of the grid will be
            shown.
            </summary>
            <remarks>
            Setting this property will affect all grid tables, unless they specify otherwise
            explicitly.
            </remarks>
            <value>The default value of this property is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ShowStatusBar">
            <summary>
            Gets or set a value indicating whether the statusbar item of the grid will be
            shown.
            </summary>
            <remarks>
            	<para>
                    This property is meaningful when the grid is in AJAX mode, i.e. when
                    <see cref="P:Telerik.Web.UI.RadAjaxControl.EnableAJAX"/> is set to <strong>true</strong>.
                </para>
            	<para>See <a href="grdStatusBarItem.html">this</a> help topic for more
                details.</para>
            </remarks>
            <value>
            	<strong>true</strong> if the status bar item would be shown, otherwise
            <strong>false</strong>. The default value of this property is
            <strong>false</strong>.
            </value>
            <seealso cref="!:grdStatusBarItem.html" cat="Telerik RadGrid Manual">Status bar item</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.StatusBarSettings">
            <summary>
                Gets a <see cref="T:Telerik.Web.UI.GridStatusBarItemSettings"/> object that contains variable
                settings related to the status bar.
            </summary>
            <example>
            	<pre>
            &lt;radG:RadGrid ID="RadGrid1" runat="server" DataSourceID="SqlDataSource1" ShowStatusBar="true" EnableAjax="true"&gt;<br/>      &lt;StatusBarSettings LoadingText="Loading... Please wait!" ReadyText="Online" /&gt;              <br/> &lt;/radG:RadGrid&gt;
                </pre>
            </example>
            <value>returns a reference to <see cref="T:Telerik.Web.UI.GridStatusBarItemSettings"/> object.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ShowHeader">
            <summary>
            Gets or set a value indicating whether the header item of the grid will be
            shown.
            </summary>
            <value>This default value for this property is <strong>true.</strong></value>
            <remarks>
            Setting this property will affect all grid tables, unless they specify otherwise
            explicitly.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.VirtualItemCount">
            <summary>
            Gets or sets a value, indicating the total number of items in the data source
            when custom paging is used. Thus the grid "understands" that the data source contains
            the specified number of records and it should fetch merely part of them at a time to
            execute requested operation.
            </summary>
            <value>
            	<strong>int</strong>, representing the total number of items in the datasource.
            The default value is 0.
            </value>
            <remarks>
            	<para>If you set a value that is greater than the actual number of items, RadGrid
                will show all available items plus empty pages (or whatever other content you set)
                for the items that exceed the actual number.</para>
            	<para>For example you have a data source with 9'000 items and you set
                VirtualItemCount to 10'000. If your page size is 1000, the grid will render 10
                pages and the last page will be empty (or with NoRecordsTemplate if you're using
                such).</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.FilterMenu">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridFilterMenu"/> object. The filtering menu
                appears when the filter button on the <see cref="T:Telerik.Web.UI.GridFilteringItem"/> is clicked.
            </summary>
            <value>returns a reference to <see cref="T:Telerik.Web.UI.GridFilterMenu"/> object.</value>
            <remarks>
            	<para>This property is meaningful only when you have filtering enabled (by setting
                <strong>AllowFilteringByColumn</strong>="true").</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to customize the filtering
                menu:</para>
            	<para><font face="Courier New"><strong>[ASPX/ASCX]<br/></strong>&lt;head
                runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;title&gt;Filter menu change&lt;/title&gt;<br/>
                 &lt;style type=<font class="string" color="black">"text/css"</font>&gt;<br/>
                 .FilterMenuClass1 td<br/>
                 {<br/>
                 background-color: white;<br/>
                 color: green;<br/>
                 font-size: 10px;<br/>
                 }<br/>
                 .FilterMenuClass2 td<br/>
                 {<br/>
                 background-color: blue;<br/>
                 color: white;<br/>
                 font-size: 15px;<br/>
                 }<br/>
                 &lt;/style&gt;<br/>
                &lt;/head&gt;<br/>
                &lt;body&gt;<br/>
                 &lt;form id=<font class="string" color="black">"form1"</font>
                runat=<font class="string" color="black">"server"</font>&gt;<br/>
                 &lt;div&gt;<br/>
                 &lt;script type=<font class="string" color="black">"text/javascript"</font>&gt;<br/>
            			<font class="keyword" color="black">function</font> GridCreated()<br/>
                 {<br/>
                 window.setTimeout(SetFilterMenuClass(this), 500);<br/>
                 }<br/>
            			<font class="keyword" color="black">function</font>
                SetFilterMenuClass(gridObject)<br/>
                 {<br/>
                 gridObject.FilterMenu.SelectColumnBackColor = <font class="string" color="black">""</font>;<br/>
                 gridObject.FilterMenu.TextColumnBackColor = <font class="string" color="black">""</font>;<br/>
            			<br/>
                 }<br/>
                 &lt;/script&gt;<br/>
                 &lt;radG:RadGrid ID=<font class="string" color="black">"RadGrid1"</font>
                AllowFilteringByColumn=<font class="string" color="black">"true"</font>
                DataSourceID=</font><font color="black"><font face="Courier New"><font class="string">
                "AccessDataSource1"</font><br/>
                 AllowSorting= <font class="string">"True"</font>
                runat=<font class="string">"server"</font>&gt;<br/>
                 &lt;FilterMenu
                CssClass=<font class="string">"FilterMenuClass1"</font>&gt;&lt;/FilterMenu&gt;<br/>
                 &lt;ClientSettings&gt;<br/>
                 &lt;ClientEvents OnGridCreated=<font class="string">"GridCreated"</font>
                /&gt;<br/>
                 &lt;/ClientSettings&gt;<br/>
                 &lt;/radG:RadGrid&gt;<br/>
                 &lt;br /&gt;<br/>
                 &lt;asp:AccessDataSource ID=<font class="string">"AccessDataSource1"</font>
                DataFile=<font class="string">"~/Grid/Data/Access/Nwind.mdb"</font><br/>
                 SelectCommand= <font class="string">"SELECT TOP 10 CustomerID, CompanyName,
                ContactName, ContactTitle, Address, PostalCode FROM Customers"</font><br/>
                 runat= <font class="string">"server"</font>&gt;&lt;/asp:AccessDataSource&gt;<br/>
                 &lt;radG:RadGrid ID=<font class="string">"RadGrid2"</font>
                DataSourceID=<font class="string">"AccessDataSource1"</font>
                AllowSorting=<font class="string">"True"</font><br/>
                 AllowFilteringByColumn= <font class="string">"true"</font>
                Skin=<font class="string">"Windows"</font>
                runat=<font class="string">"server"</font>&gt;<br/>
                 &lt;ClientSettings&gt;<br/>
                 &lt;ClientEvents OnGridCreated=<font class="string">"GridCreated"</font>
                /&gt;<br/>
                 &lt;/ClientSettings&gt;<br/>
                 &lt;FilterMenu
                CssClass=<font class="string">"FilterMenuClass2"</font>&gt;&lt;/FilterMenu&gt;<br/>
                 &lt;/radG:RadGrid&gt;<br/>
                 &lt;/div&gt;<br/>
                 &lt;/form&gt;<br/>
                &lt;/body&gt;<br/>
                &lt;/html&gt;</font></font></para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.HeaderContextMenu">
            <summary>
            Represents a HeaderContextMenu
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.Columns">
            <summary>
                Gets a collection (<see cref="T:Telerik.Web.UI.GridColumnCollection"/>) of all columns in
                Telerik RadGrid.
            </summary>
            <remarks>
            This is one of the three columns collections in Telerik RadGrid. The
            other two are <strong>AutoGeneratedColumns</strong> and
            <strong>RenderColumns</strong>.
            </remarks>
            <value>returns a <see cref="T:Telerik.Web.UI.GridColumnCollection"/> of all grid columns.</value>
            <example>
            	<para><font face="Courier New">The example below demonstrates how to use the
                columns collection to define columns declaratively (in the ASPX)</font></para>
            	<pre>
            		<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">radG:RadGrid</span> ID="RadGrid1" DataSourceID="AccessDataSource1" AllowPaging="True" ShowFooter="True"<br/>runat="server" AutoGenerateColumns="False" AllowSorting="True" PageSize="3" Width="925px"<br/>GridLines="None" CellPadding="0" Skin="Default" AllowMultiRowSelection="true"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">MasterTableView</span> ShowFooter="True"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">RowIndicatorColumn</span> Visible="False" UniqueName="RowIndicator"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">HeaderStyle</span> Width="20px"<span style="COLOR: blue">&gt;</span><span style="COLOR: blue">&lt;/</span>
            		<span style="COLOR: maroon">HeaderStyle</span><span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">RowIndicatorColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">Columns</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridEditCommandColumn</span> FooterText="EditCommand footer" UniqueName="EditCommandColumn"<br/>HeaderText="Edit&amp;#160;Command Column"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridEditCommandColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridClientSelectColumn</span> UniqueName="CheckboxSelectColumn" HeaderText="CheckboxSelect column <span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">br</span>
            		<span style="COLOR: blue">/&gt;</span>" <span style="COLOR: blue">/&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridBoundColumn</span> FooterText="BoundColumn footer" UniqueName="CustomerID" SortExpression="CustomerID"<br/>HeaderText="Bound<span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">br/</span>
            		<span style="COLOR: blue">&gt;</span>Column" DataField="CustomerID"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridBoundColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridCheckBoxColumn</span> FooterText="CheckBoxColumn footer" UniqueName="Bool" HeaderText="CheckBox<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>Column"<br/>DataField="Bool"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridCheckBoxColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridDropDownColumn</span> FooterText="DropDownColumn footer" UniqueName="DropDownListColumn"<br/>ListTextField="ContactName" ListValueField="CustomerID" DataSourceID="AccessDataSource2"<br/>HeaderText="DropDown<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>Column" DataField="CustomerID"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridDropDownColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridButtonColumn</span> FooterText="PushButtonColumn<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>footer" DataTextFormatString="Select {0}"<br/>ButtonType="PushButton" UniqueName="column" HeaderText="PushButton<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>Column"<br/>CommandName="Select" DataTextField="CustomerID"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridButtonColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridButtonColumn</span> FooterText="LinkButtonColumn footer" DataTextFormatString="Remove selection"<br/>UniqueName="column1" HeaderText="LinkButton<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>Column" CommandName="Deselect"<br/>DataTextField="CustomerID"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridButtonColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridHyperLinkColumn</span> FooterText="HyperLinkColumn footer" DataTextFormatString="Search Google for '{0}'"<br/>DataNavigateUrlField="CompanyName" UniqueName="CompanyName" DataNavigateUrlFormatString="http://www.google.com/search?hl=en&amp;amp;q={0}&amp;amp;btnG=Google+Search"<br/>HeaderText="HyperLink<span style="COLOR: blue">&lt;</span>
            		<span style="COLOR: maroon">br/</span><span style="COLOR: blue">&gt;</span>Column" DataTextField="CompanyName"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridHyperLinkColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">radG:GridTemplateColumn</span> UniqueName="TemplateColumn" SortExpression="CompanyName"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">FooterTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">img</span> src="Img/image.gif" alt="" style="vertical-align: middle" <span style="COLOR: blue">/&gt;</span><br/>Template footer<br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">FooterTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">HeaderTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">table</span> id="Table1" cellspacing="0" cellpadding="0" width="300" border="1"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> colspan="2" align="center"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">b</span>
            		<span style="COLOR: blue">&gt;</span>Contact details<span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">b</span>
            		<span style="COLOR: blue">&gt;</span><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">td</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> style="width: 50%" align="center"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;asp:LinkButton CssClass="Button" Width="140" ID="btnContName" Text="Contact name"<br/>Tooltip="Sort by ContactName" CommandName='Sort' CommandArgument='ContactName' runat="server" /&gt;&lt;/td&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> style="width: 50%" align="center"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;asp:LinkButton CssClass="Button" Width="140" ID="btnContTitle" Text="Contact title"<br/>Tooltip="Sort by ContactTitle" CommandName='Sort' CommandArgument='ContactTitle'<br/>runat="server" /&gt;&lt;/td&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">table</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">HeaderTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">ItemTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">table</span> cellpadding="1" cellspacing="1" class="customTable"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> style="width: 50%"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span>%#<span style="COLOR: red">Eval("ContactName")</span> %<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">td</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> style="width: 50%"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span>%#<span style="COLOR: red">Eval("ContactTitle")</span> %<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">td</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> colspan="2" align="center"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">a</span> href='<span style="COLOR: blue">&lt;</span>%#<span style="COLOR: red">"http://www.google.com/search?hl=en&amp;amp;q=" + DataBinder.Eval(Container.DataItem, "ContactName") + "&amp;amp;btnG=Google+Search"</span>%<span style="COLOR: blue">&gt;</span>' <span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">em</span>
            		<span style="COLOR: blue">&gt;</span>Search Google for<br/><span style="COLOR: blue">&lt;</span>%#<span style="COLOR: red">Eval("ContactName")</span> %<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">em</span>
            		<span style="COLOR: blue">&gt;</span><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">a</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">td</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">td</span> colspan="2" align="center"<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">img</span> src="Img/image.gif" alt="" <span style="COLOR: blue">/&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">td</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">tr</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">table</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">ItemTemplate</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:GridTemplateColumn</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">Columns</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">MasterTableView</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">ClientSettings</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;</span><span style="COLOR: maroon">Selecting</span> AllowRowSelect="true" <span style="COLOR: blue">/&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">ClientSettings</span>
            		<span style="COLOR: blue">&gt;</span><br/><span style="COLOR: blue">&lt;/</span><span style="COLOR: maroon">radG:RadGrid</span>
            		<span style="COLOR: blue">&gt;</span>
            	</pre>
            	<code lang="CS" title="Create column in the code-behind" description="The following example demonstrates how to set up a grid in the code-behind and how to create a column and add it to the Columns collection.">
            this.RadGrid1 = new RadGrid();
             
            this.RadGrid1.NeedDataSource += new GridNeedDataSourceEventHandler(this.RadGrid1_NeedDataSource);
             
            this.RadGrid1.AutoGenerateColumns = false;
            this.RadGrid1.MasterTableView.DataMember = "Customers";
             
            GridBoundColumn boundColumn;
            boundColumn = new GridBoundColumn();
            boundColumn.DataField = "CustomerID";
            boundColumn.HeaderText = "CustomerID";
            this.RadGrid1.MasterTableView.Columns.Add(boundColumn);
             
            ....
            //Add to page controls collection
            this.PlaceHolder1.Controls.Add( RadGrid1 );
                </code>
            	<code lang="VB" title="Create column in the code-behind" description="The following example demonstrates how to set up a grid in the code-behind and how to create a column and add it to the Columns collection.">
            Me.RadGrid1 = New RadGrid
             
            AddHandler RadGrid1.NeedDataSource, AddressOf Me.RadGrid1_NeedDataSource
            AddHandler RadGrid1.DetailTableDataBind, AddressOf Me.RadGrid1_DetailTableDataBind
             
            Me.RadGrid1.AutoGenerateColumns = False
            Me.RadGrid1.MasterTableView.DataMember = "Customers"
             
            Dim boundColumn As GridBoundColumn
            boundColumn = New GridBoundColumn
            boundColumn.DataField = "CustomerID"
            boundColumn.HeaderText = "CustomerID"
            Me.RadGrid1.MasterTableView.Columns.Add(boundColumn)
             
             
            ....'Add to page controls collection
            Me.PlaceHolder1.Controls.Add(RadGrid1)
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.IsDetailDataBindingInProgress">
            <exclude/>
            <excludetoc/>
            <summary>Gets a value indicating whether a detail table is currently binding.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.DataSourceIsAssigned">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.DataSourceID">
            <summary>
            	<para>Gets or sets the ID of the control from which the Telerik RadGrid
                control retrieves its list of data items.</para>
            </summary>
            <value>
            The ID of a control that represents the data source from which the
            Telerik RadGrid control retrieves its data. The default is
            String.Empty.
            </value>
            <remarks>
            	<para>If the Telerik RadGrid control has already been initialized when
                you set the DataSourceID property.</para>
            	<para>This property cannot be set by themes or style sheet themes.</para>
            </remarks>
            <example>
                The following code example demonstrates how the DataSourceID property of a
                Telerik RadGrid control is used. The Telerik RadGrid
                control is associated to the SqlDataSource control by setting its DataSourceID
                property to "SqlDataSource1", the ID of the SqlDataSource control. When the
                DataSourceID property is set (instead of the DataSource property), the
                Telerik RadGrid control automatically binds to the data source control
                at run time.
                <code lang="VB" title="VB">
            &lt;%@ Page Language="VB" &lt;see cref="&gt; &lt;"/&gt;@ Register Assembly="Telerik.Web.UI" Namespace="Telerik.Web.UI" TagPrefix="telerik" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
             
             
            &lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;
            &lt;head runat="server"&gt;
                &lt;title&gt;Untitled Page&lt;/title&gt;
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                &lt;div&gt;
                    &lt;radG:RadGrid
                        DataSourceID="SqlDataSource1"
                        ID="RadGrid1" 
                        runat="server"&gt;
                    &lt;/radG:RadGrid&gt;
                    &lt;!-- This example uses Microsoft SQL Server and connects  --&gt;
                    &lt;!-- to the Northwind sample database. Use an ASP.NET     --&gt;
                    &lt;!-- expression to retrieve the connection string value   --&gt;
                    &lt;!-- from the Web.config file.                            --&gt;        
                    &lt;asp:SqlDataSource 
                        ID="SqlDataSource1" 
                        runat="server"
                        ConnectionString="&lt;&lt;see cref="NorthwindConnectionString"&gt;$ ConnectionStrings&lt;/see&gt;&gt;"
                        SelectCommand="SELECT [CustomerID], [ContactName], [CompanyName] FROM [Customers]"&gt;
                    &lt;/asp:SqlDataSource&gt;
                    &lt;asp:Label ID="Label1" runat="server" Text="Label"&gt;&lt;/asp:Label&gt;&lt;/div&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ViewStateSize">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.Skin">
            <summary>
            	<para>Gets or sets the name of the Skin that Telerik RadGrid will use.
                In case one needs custom skin (not embedded within the assembly) she has to refer
                the respective .css in the head tag as explained in docs here:
                RadControls for ASP.NET Ajax Fundamentals -> Controlling Visual Appearance -> Creating a custom skin</para>
            </summary>
            <remarks>
            	<para>There are three possible scenarios for using this property:</para>
            	<list type="bullet">
            		<item>Leave this property unset or set it to "Default" - the default skin,
                    common for the RadControls for ASP.NET Ajax suite will be used</item>
            		<item>Set the name of the embedded grid skin - the skin will be applied</item>
                    <item>Set the name of the custom grid skin along with the EnableEmbeddedSkins="false" 
            (see 'Creating a custom skin' Fundamentals article)</item>
            		<item>Set this property to "" - no skin will be applied.
                    Only the default grid images (for Expand/Collapse, Sort, Edit, etc) will be
                    used. Use this option if you have own appearance customizations for prevous
                    Telerik RadGrid versions.</item>
            	</list>
            </remarks>
            <value><para>The name of the skin as String.</para></value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.AllowFilteringByColumn">
            <summary>
            Gets or sets a value indicating whether the filtering of all tables in the
            hierarchy will be enabled, unless specified other by
            <strong>GridTableView.AllowFilteringByColumn.</strong>
            </summary>
            <value>
            	<strong>true</strong>, enables filtering for the whole grid. Otherwise,
            <strong>false</strong>. Default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EnableHeaderContextMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the header context menu should be 
                 enabled.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the header context menu feature is enabled; otherwise,
                     <strong>false</strong>. Default is <strong>false</strong>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EnableHeaderContextAggregatesMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the option to set columns aggregates should appear in 
             	header context menu.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the set columns aggregates option is enabled; otherwise,
                     <strong>false</strong>. Default is <strong>false</strong>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EnableHeaderContextFilterMenu">
            <summary>
             	<para>Gets or sets a value indicating whether the header context filter menu should be 
                 enabled.</para>
             </summary>
             <value>
             	<para>
             		<strong>true</strong> if the header context filter menu feature is enabled; otherwise,
                     <strong>false</strong>. Default is <strong>false</strong>.
                 </para>
             </value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.ImagesPath">
            <summary>Gets or sets default path for the grid images.</summary>
            <value>A string containing the path for the grid images. The default is string.Empty.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.LocalizationPath">
            <summary>
            Gets or sets a value indicating where RadGrid will look for its .resx localization file.
            By default this file should be in the App_GlobalResources folder. However, if you cannot put
            the resource file in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource file.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadGridResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the grid localization file from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadGrid.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputIncrementSettings.Step">
            <summary>
                <para>Gets or sets the value to increment or decrement the spin box when the up or down buttons are clicked.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputIncrementSettings.InterceptArrowKeys">
            <summary>
                <para>Gets or sets a value indicating whether the user can use the UP ARROW and DOWN ARROW keys to increment/decrement values.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputIncrementSettings.InterceptMouseWheel">
            <summary>
                <para>Gets or sets a value indicating whether the user can use the MOUSEWHEEL to increment/decrement values.</para>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ExpandDirection">
            <summary>This enumeration determines the direction in which child items will open.</summary>
            <remarks>
            	<para>When set to <strong>Auto</strong> the direction is determined by the
                following rules</para>
            	<list type="bullet">
            		<item>If the item is top level and the parent item flow is
                    <strong>Horizontal</strong> the direction will be <strong>Down</strong>.</item>
            		<item>If the item is top level and the parent item flow is
                    <strong>Vertical</strong> the direction will be <strong>Right</strong>.</item>
            		<item>If the item is subitem (a child of another menu item rather than the
                    <strong>RadMenu</strong> itself) the direction is
                    <strong>Right</strong>.</item>
            	</list>
            	<para class="xmldocbulletlist">Note:</para>
            	<para class="xmldocbulletlist">If there is not enough room for the child items to
                open the expand direction is inverted. For example <strong>Right</strong> becomes
                <strong>Left</strong>, <strong>Down</strong> becomes <strong>Up</strong> and vice
                versa.</para>
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.ExpandDirection.Auto">
            <summary>
                The direction is determined by parent's <see cref="T:Telerik.Web.UI.ItemFlow">ItemFlow</see> and
                level.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ExpandDirection.Up">
            <summary>Child items open above their parent.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ExpandDirection.Down">
            <summary>Child items open below their parent.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ExpandDirection.Left">
            <summary>Child items open from the left side of their parent.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ExpandDirection.Right">
            <summary>Child items open from the right side of their parent.</summary>
        </member>
        <member name="T:Telerik.Web.UI.ItemFlow">
            <summary>Represents the different ways menu items can flow.</summary>
            <remarks>
            The <strong>ItemFlow</strong> enumeration is used to specify the flow of submenu
            items.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.ItemFlow.Vertical">
            <summary>
            Items will flow one below the other
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ItemFlow.Horizontal">
            <summary>
            Items will flow one after another
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuEventArgs">
            <summary>
            Provides data for the events of the <see cref="T:Telerik.Web.UI.RadMenu"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuEventArgs.#ctor(Telerik.Web.UI.RadMenuItem)">
            <summary>
                Initializes a new instance of the
                <see cref="T:Telerik.Web.UI.RadMenuEventArgs">RadMenuEventArgs</see> class.
            </summary>
            <param name="item">
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which represents an item in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuEventArgs.Item">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control when the event is raised.
            </summary>
            <value>
                The referenced item in the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control when
                the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuEventHandler">
            <summary>
            Represents the method that handles the events provided by the <see cref="T:Telerik.Web.UI.RadMenu"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItem">
            <summary>Represents an item in the <see cref="T:Telerik.Web.UI.RadMenu"/> control.</summary>
            <remarks>
            	<para>
            		The <see cref="T:Telerik.Web.UI.RadMenu"/> control is made up of items. Items which are immediate children
            		of the menu are root items. Items which are children of root items are child items.
            	</para>
            	<para>
            		An item usually stores data in two properties, the <see cref="P:Telerik.Web.UI.RadMenuItem.Text"/> property and 
            		the <see cref="P:Telerik.Web.UI.RadMenuItem.Value"/> property. The value of the <see cref="P:Telerik.Web.UI.RadMenuItem.Text"/>property is displayed 
            		in the <see cref="T:Telerik.Web.UI.RadMenu"/> control, and the <see cref="P:Telerik.Web.UI.RadMenuItem.Value"/> 
            		property is used to store additional data.
            	</para>
            	<para>To create items, use one of the following methods:</para>
            	<list type="bullet">
            		<item>
            			Use declarative syntax to define items inline in your page or user control.
            		</item>
            		<item>
            			Use one of the constructors to dynamically create new instances of the
            			<see cref="T:Telerik.Web.UI.RadMenuItem"/> class. These items can then be added to the
            			<b>Items</b> collection of another item or menu.
            		</item>
            		<item>
            			Data bind the <see cref="T:Telerik.Web.UI.RadMenu"/> control to a data source.
            		</item>
            	</list>
            	<para>
                    When the user clicks an item, the <see cref="T:Telerik.Web.UI.RadMenu"/> control can navigate
                    to a linked Web page, post back to the server or select that item. If the
                    <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl"/> property of an item is set, the
                    <b>RadMenu</b> control navigates to the linked page. By default, a linked page
                    is displayed in the same window or frame. To display the linked content in a different 
            		window or frame, use the <see cref="P:Telerik.Web.UI.RadMenuItem.Target"/> property.
                </para>
            </remarks>
            <summary>Represents a single item in the RadMenu class.</summary>
            <remarks>
            	<para>
                    The <strong>RadMenu</strong> control is made up of a hierarchy of menu items
                    represented by <b>RadMenuItem</b> objects. Menu items at the top level (level 0)
                    that do not have a parent menu item are called root or top-level menu items. A
                    menu item that has a parent menu item is called a submenu item. All root menu
                    items are stored in the <see cref="P:Telerik.Web.UI.RadMenu.Items">Items</see> collection of the
                    menu. Submenu items are stored in a parent menu item's
                    <see cref="P:Telerik.Web.UI.RadMenuItem.Items">Items</see> collection. You can access a menu item's parent
                    menu item by using the <see cref="P:Telerik.Web.UI.RadMenuItem.Owner">Owner</see> property.
                </para>
            	<para>To create the menu items for a <b>RadMenu</b> control, use one of the
                following methods:</para>
            	<list type="bullet">
            		<item>Use declarative syntax to create static menu items.</item>
            		<item>Use a constructor to dynamically create new instances of the
                    <b>RadMenuItem</b> class. These <b>RadMenuItem</b> objects can then be added to the
                    <b>Items</b> collection of their owner.</item>
            		<item>Bind the <b>Menu</b> control to a data source.</item>
            	</list>
            	<para>
                    When the user clicks a menu item, the <b>Menu</b> control can either navigate
                    to a linked Web page or simply post back to the server. If the
                    <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see> property of a menu item is set, the
                    <b>RadMenu</b> control navigates to the linked page. By default, a linked page
                    is displayed in the same window or frame as the <strong>RadMenu</strong>
                    control. To display the linked content in a different window or frame, use the
                    <see cref="P:Telerik.Web.UI.RadMenuItem.Target">Target</see> property.
                </para>
            	<para>
                    Each menu item has a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> and a
                    <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property. The value of the <b>Text</b> property
                    is displayed in the <b>RadMenu</b> control, while the <b>Value</b> property is
                    used to store any additional data about the menu item.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.HighlightPath">
            <summary>
            Highlights the path from the item to the top of the menu.
            </summary>
            <remarks>
            The <c>HighlightPath</c> method applies the "rmFocused" CSS class to the item and
            his ancestor items. As a results the "path" from the top level to that specific item
            is highlighted.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.Remove">
            <summary>
            Removes the item from its container
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.Clone">
            <summary>Creates a copy of the current <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> object.</summary>
            <returns>A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which is a copy of the current one.</returns>
            <remarks>
            Use the <strong>Clone</strong> method to create a copy of the current item. All
            properties of the clone are set to the same values as the current ones. Child items are
            not cloned.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> controls. 
                <code lang="CS" title="[New Example]">
            RadMenuItem item = new RadMenuItem();
            item.Text = "News";
            item.NavigateUrl = "~/News.aspx";
             
            RadMenu1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadMenuItem()
            item.Text = "News"
            item.NavigateUrl = "~/News.aspx"
             
            RadMenu1.Items.Add(item)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class with the
                specified text data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class using the specified text.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> controls. 
                <code lang="CS" title="[New Example]">
            RadMenuItem item = new RadMenuItem("News");
             
            RadMenu1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadMenuItem("News")
             
            RadMenu1.Items.Add(item)
                </code>
            </example>
            <param name="text">
                The text of the item. The <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItem.#ctor(System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class with the
                specified text and URL to navigate to.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> class using the specified text and URL.
                </para>
            </remarks>
            <example>
                This example demonstrates how to add items to <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see>
                controls. 
                <code lang="CS" title="[New Example]">
            RadMenuItem item = new RadMenuItem("News", "~/News.aspx");
             
            RadMenu1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadMenuItem("News", "~/News.aspx")
             
            RadMenu1.Items.Add(item)
                </code>
            </example>
            <param name="text">
                The text of the item. The <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="navigateUrl">
                The url which the item will navigate to. The
                <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see> property is set to the value of this
                parameter.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Items">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> object that contains the child items of the current RadMenuItem.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> that contains the child items of the current RadMenuItem. By default
            	the collection is empty (the item has no children).
            </value>
            <remarks>
            	Use the <b>Items</b> property to access the child items of the RadMenuItem. You can also use the <b>Items</b> property to
            	manage the child items - you can add, remove or modify items.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a child item.
                <code lang="CS">
            		RadMenuItem item = RadMenu1.FindItemByText("Test");
            		item.Items[0].Text = "Example";
            		item.Items[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		Dim item As RadMenuItem = RadMenu1.FindItemByText("Test")
            		item.Items(0).Text = "Example"
            		item.Items(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Owner">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.IRadMenuItemContainer"/> object which contains the current menu item.
            </summary>
            <value>
                The object which contains the menu item. It might be an instance of the
                <see cref="T:Telerik.Web.UI.RadMenu"/> class or the <see cref="T:Telerik.Web.UI.RadMenuItem"/>
                class depending on the hierarchy level.
            </value>
            <remarks>
                The value is of the <see cref="T:Telerik.Web.UI.IRadMenuItemContainer"/> type which is
                implemented by the <see cref="T:Telerik.Web.UI.RadMenu"/> and the
                <see cref="T:Telerik.Web.UI.RadMenuItem"/> classes. Use the <b>Owner</b> property when
                recursively traversing items in the <b>RadMenu</b> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.DataItem">
            <summary>Gets or sets the data item represented by the item.</summary>
            <value>
                An object representing the data item to which the Item is bound to. The
                <strong>DataItem</strong> property will always return <strong>null</strong> when
                accessed outside of <see cref="E:Telerik.Web.UI.RadMenu.ItemDataBound">MenuItemDataBound</see>
                event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadMenu.ItemDataBound">MenuItemDataBound</see> event to perform
                additional mapping of fields from the data item to
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadMenuItem">
            		<strong>RadMenuItem</strong> properties. It assumes the user has subscribed to the
                    MenuItemDataBound:RadMenu.MenuItemDataBound
                    <see cref="E:Telerik.Web.UI.RadMenu.ItemDataBound">event.</see>
            	</see>
            	<code lang="CS">
            private void RadMenu1_MenuItemDataBound(object sender, Telerik.WebControls.ItemStripEventArgs e)
            {
                RadMenuItem item = e.Item;
                DataRowView dataRow = (DataRowView) e.Item.DataItem;
             
                item.ImageUrl = "image" + dataRow["ID"].ToString() + ".gif";
                item.NavigateUrl = dataRow["URL"].ToString();
            }
                </code>
            	<code lang="VB">
            Sub RadMenu1_MenuItemDataBound(ByVal sender As Object, ByVal e As ItemStripEventArgs) Handles RadMenu1.MenuItemDataBound
                Dim item As RadMenuItem = e.Item
                Dim dataRow As DataRowView = CType(e.Item.DataItem, DataRowView)
             
                item.ImageUrl = "image" + dataRow("ID").ToString() + ".gif"
                item.NavigateUrl = dataRow("URL").ToString()
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Text">
            <summary>Gets or sets the text caption for the menu item.</summary>
            <value>The text of the item. The default value is empty string.</value>
            <example>
                This example demonstrates how to set the text of the item using the
                <strong>Text</strong> property. 
                <para>
            		<para class="sourcecode">&lt;telerik:RadMenu ID="RadMenu1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadMenuItem <strong>Text="News"</strong> /&gt;<br/>
                    &lt;telerik:RadMenuItem <strong>Text="News"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadMenu&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>Text</strong> property to specify the text to display for the
            item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Value">
            <summary>Gets or sets the value associated with the menu item.</summary>
            <value>The value associated with the item. The default value is empty string.</value>
            <remarks>
            	<para>Use the <b>Value</b> property to specify or determine the value associated
                with the item.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ItemTemplate">
            <summary>Gets or sets the template for displaying the item.</summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying the item. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>
                    To specify common display for all menu items use the
                    <see cref="P:Telerik.Web.UI.RadMenu.ItemTemplate">ItemTemplate</see> property of the
                    <strong>RadMenu</strong> class.
                </para>
            </value>
            <example>
            	<para>The following template demonstrates how to add a Calendar control in certain
                menu item.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu runat="server" ID="RadMenu1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadMenuItem Text="Date"&gt;</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>&lt;Items&gt;</para>
            				<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            					<para>&lt;telerik:RadMenuItem Text="SelectDate"&gt;</para>
            					<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            						<para>&lt;ItemTemplate&gt;</para>
            						<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            							<para>&lt;asp:Calendar runat="server" ID="Calendar1"
                                        /&gt;</para>
            						</blockquote>
            						<para>&lt;/ItemTemplate&gt;</para>
            					</blockquote>
            					<para>&lt;/telerik:RadMenuItem&gt;</para>
            				</blockquote>
            				<para>&lt;/Items&gt;</para>
            			</blockquote>
            			<para>&lt;/telerik:RadMenuItem&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.GroupSettings">
            <summary>Specifies the settings for child item behavior.</summary>
            <value>
                An instance of the <see cref="T:Telerik.Web.UI.RadMenuItemGroupSettings">MenuItemGroupSettings</see>
                class.
            </value>
            <remarks>
            	<para>You can customize the following settings</para>
            	<list type="bullet">
            		<item>item flow</item>
            		<item>expand direction</item>
            		<item>horizontal offset from the parent item</item>
            		<item>vertical offset from the parent item</item>
            		<item>width</item>
            		<item>height</item>
            	</list>
            	<para>
                    For more information check
                    <see cref="T:Telerik.Web.UI.RadMenuItemGroupSettings">MenuItemGroupSettings</see>.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ExpandMode">
            <summary>
            Gets or sets the expand behavior of the menu item.
            
            When set to ExpandMode.WebService the RadMenuItem will populate its children from the web service specified by the RadMenu.WebService and RadMenu.WebServiceMethod properties.
            </summary>
            <value>
            On of the <see cref="T:Telerik.Web.UI.MenuItemExpandMode">MenuItemExpandMode</see> values. The default value is <c>ClientSide</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.EnableImageSprite">
            <summary>
            Gets or sets a value indicating whether the item image should have sprite support.
            </summary>
            <value>
            	<strong>True</strong> if the item should have sprite support; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">
            <summary>Gets or sets the URL to link to when the item is clicked.</summary>
            <value>
            The URL to link to when the item is clicked. The default value is empty
            string.
            </value>
            <example>
                The following example demonstrates how to use the <strong>NavigateUrl</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadMenuItem Text="News" <strong>NavigateUrl="~/News.aspx"</strong>
                    /&gt;<br/>
                    &lt;telerik:RadMenuItem Text="External URL"
                    <strong>NavigateUrl="http://www.example.com"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadMenu&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>NavigateUrl</strong> property to specify the URL to link to when
            the item is clicked. Use "~" (tilde) in front of an URL within the same ASP.NET
            application. When specifying external URL do not forget the protocol (e.g.
            "http://").
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.PostBack">
            <summary>
            Gets or sets a value indicating whether clicking on the item will
            postback.
            </summary>
            <value>
            	<strong>True</strong> if the menu item should postback; otherwise
                <strong>false</strong>. By default all the items will postback provided the user
                has subscribed to the <see cref="E:Telerik.Web.UI.RadMenu.ItemClick">ItemClick</see> event.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadMenu.ItemClick">ItemClick</see> all menu
                items will postback. To turn off that behavior you should set the
                <strong>PostBack</strong> property to <strong>false</strong>. This property cannot
                be set in design time.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Menu">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> instance which contains the item.</summary>
            <remarks>
                Use this property to obtain an instance to the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> object containing the item.
            </remarks>		
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.IsSeparator">
            <summary>
            Sets or gets whether the item is separator. It also represents a logical state of
            the item. Might be used in some applications for keyboard navigation to omit processing
            items that are marked as separators.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Selected">
            <summary>
            Gets or sets a value indicating whether the item is selected.
            </summary>
            <value>
            <c>True</c> if the item is selected; otherwise <c>false</c>. The default value is
            <c>false</c>.
            </value>
            <remarks>
            Only one item can be selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the menu item is
            disabled.
            </summary>
            <value>
            The CSS class applied when the menu item is disabled. The default value is
            <strong>"disabled"</strong>.
            </value>
            <remarks>
            By default the visual appearance of disabled menu items is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for the menu item when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ExpandedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the menu item is
            opened (its child items are visible).
            </summary>
            <value>
            The CSS class applied when the menu item is opened. The default value is
            <strong>"expanded"</strong>.
            </value>
            <remarks>
            By default the visual appearance of opened menu items is defined in the skin CSS
            file. You can use the <strong>ExpandedCssClass</strong> property to specify unique
            appearance for the menu item when it is opened.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.FocusedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the menu item is
            focused.
            </summary>
            <value>
            The CSS class applied when the menu item is focused. The default value is
            <strong>"focused"</strong>.
            </value>
            <remarks>
            By default the visual appearance of focused menu items is defined in the skin CSS
            file. You can use the <strong>FocusedCssClass</strong> property to specify unique
            appearance for the menu item when it is focused.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.SelectedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the item is
            selected.
            </summary>
            <remarks>
            By default the visual appearance of selected items is defined in the skin CSS
            file. You can use the <strong>SelectedCssClass</strong> property to specify unique
            appearance for a item when it is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ClickedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the menu item is
            clicked.
            </summary>
            <value>
            The CSS class applied when the menu item is clicked. The default value is
            <strong>"clicked"</strong>.
            </value>
            <example>
            By default the visual appearance of clicked menu items is defined in the skin CSS
            file. You can use the <strong>ClickedCssClass</strong> property to specify unique
            appearance for the menu item when it is clicked.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.OuterCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied on the outmost item element (&lt;LI&gt;).
            </summary>
            <value>
            	The CSS class applied on the wrapping element (&lt;LI&gt;). The default value is empty string.
            </value>
            <remarks>
            	You can use the <b>OuterCssClass</b> property to specify unique
            	appearance for the item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Target">
            <summary>
            Gets or sets the target window or frame to display the Web page content linked to
            when the menu item is clicked.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the Item is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="Itemle">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without
                            frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset
                            parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without
                            frames.</description>
            			</item>
            		</list>
            	</para>The default value is empty string.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to specify the frame or window that displays the
                    Web page linked to when the menu item is clicked. The Web page is specified by
                    setting the <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>If this property is not set, the Web page specified by the
                <strong>NavigateUrl</strong> property is loaded in the current window.</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to use the <strong>Target</strong>
                property</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadMenu runat="server" ID="RadMenu1"&gt;</para>
            	<para>&lt;Items&gt;</para>
            	<para>&lt;telerik:RadMenuItem <strong>Target="_blank"</strong>
                NavigateUrl="http://www.google.com" /&gt;</para>
            	<para>&lt;/Items&gt;</para>
            	<para>&lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.Level">
            <summary>
            Manages the item level of a particular Item instance. This property allows easy
            implementation/separation of the menu items in levels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify the image to display for
                the item using the <strong>ImageUrl</strong> property.</para>
            	<para>
            		<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadMenuItem <strong>ImageUrl="~/Img/inbox.gif"</strong> Text="Index"
                    /&gt;<br/>
                    &lt;telerik:RadMenuItem <strong>ImageUrl="~/Img/outbox.gif"</strong> Text="Outbox"
                    /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadMenu&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.HoveredImageUrl">
            <summary>
            Gets or sets the path to an image to display for the item when the user moves the
            mouse over the item.
            </summary>
            <value>
            The path to the image to display when the user moves the mouse over the item. The
            default value is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/inbox.gif"
                <strong>HoveredImageUrl="~/Img/inboxOver.gif"</strong> Text="Index" /&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/outbox.gif"
                <strong>HoveredImageUrl="~/Img/outboxOver.gif"</strong> Text="Outbox" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            Use the <strong>HoveredImageUrl</strong> property to specify the image that will be
            used when the user moves the mouse over the item. If the <strong>HoveredImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ClickedImageUrl">
            <summary>
            Gets or sets the path to an image to display for the item when the user clicks the
            item.
            </summary>
            <value>
            The path to the image to display when the user clicks the item. The default value
            is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/inbox.gif"
                <strong>ClickedImageUrl="~/Img/inboxClicked.gif"</strong> Text="Index" /&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/outbox.gif"
                <strong>ClickedImageUrl="~/Img/outboxClicked.gif"</strong> Text="Outbox"
                /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            Use the <strong>ClickedImageUrl</strong> property to specify the image that will be
            used when the user clicks the item. If the <strong>ClickedImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.DisabledImageUrl">
            <summary>Gets or sets the path to an image to display when the items is disabled.</summary>
            <value>
            The path to the image to display when the item is disabled. The default value is
            empty string.
            </value>
            <remarks>
            Use the <strong>DisabledImageUrl</strong> property to specify the image that will
            be used when the item is disabled. If the <strong>DisabledImageUrl</strong> property is
            set to empty string the image specified by the <strong>ImageUrl</strong> property will
            be used. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
            <example>
            	<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/inbox.gif"
                <strong>DisabledImageUrl="~/Img/inboxDisabled.gif"</strong> Text="Index"
                /&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/outbox.gif"
                <strong>DisabledImageUrl="~/Img/outboxDisabled.gif"</strong> Text="Outbox"
                /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.ExpandedImageUrl">
            <summary>Gets or sets the path to an image to display when the items is expanded.</summary>
            <value>
            The path to the image to display when the item is expanded. The default value is
            empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadMenu id="RadMenu1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/inbox.gif"
                <strong>ExpandedImageUrl="~/Img/inboxExpanded.gif"</strong> Text="Index"
                /&gt;<br/>
                &lt;telerik:RadMenuItem ImageUrl="~/Img/outbox.gif"
                <strong>ExpandedImageUrl="~/Img/outboxExpanded.gif"</strong> Text="Outbox"
                /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadMenu&gt;</para>
            </example>
            <remarks>
            Use the <strong>ExpandedImageUrl</strong> property to specify the image that will
            be used when the item is expanded. If the <strong>ExpandedImageUrl</strong> property is
            set to empty string the image specified by the <strong>ImageUrl</strong> property will
            be used. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItem.SelectedImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the item is selected.
            </summary>
            <remarks>
            If the <c>SelectedImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadMenuItem.ImageUrl">ImageUrl</see>
            property will be used when the node is selected.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control.
            </summary>
            <remarks>
            	<para>The <strong>RadMenuItemCollection</strong> class represents a collection of
                <strong>RadMenuItem</strong> objects. The <strong>RadMenuItem</strong> objects in turn represent 
                menu items within a <strong>RadMenu</strong> control.</para>
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadMenuItemCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadMenuItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of menu items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadMenuItemCollection.Add(Telerik.Web.UI.RadMenuItem)">Add</see> method to add menu items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadMenuItemCollection.Remove(Telerik.Web.UI.RadMenuItem)">Remove</see> method to remove menu items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.Add(Telerik.Web.UI.RadMenuItem)">
            <summary>
            	Appends the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object to the end of the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadMenuItem"/> to append to the end of the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add items in a
                <strong>RadMenu</strong> control.
            	<code lang="CS">
            		RadMenuItem newsItem = new RadMenuItem("News");
            		RadMenu1.Items.Add(newsItem);
                </code>
            	<code lang="VB">
            		Dim newsItem As RadMenuItem = New RadMenuItem("News")
            		RadMenu1.Items.Add(newsItem)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItemByText(System.String)">
            <summary>
                Searches the <strong>RadMenuItemCollection</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItemByValue(System.String)">
            <summary>
                Searches the <strong>RadMenuItemCollection</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadMenu</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> with a <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> whose <see cref="P:Telerik.Web.UI.RadMenuItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItemByAttribute(System.String,System.String)">
            <summary>
            Searches the items in the collection for a <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadMenuItem</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.FindItem(System.Predicate{Telerik.Web.UI.RadMenuItem})">
            <summary>
            Returns  the first <strong>RadMenuItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadMenu1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadMenuItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadMenu1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadMenuItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.Contains(Telerik.Web.UI.RadMenuItem)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadMenuItem"/> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.CopyTo(Telerik.Web.UI.RadMenuItem[],System.Int32)">
            <summary>
            Copies the contents of the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> into the 
            specified array of <see cref="T:Telerik.Web.UI.RadMenuItem"/> objects.
            </summary>
            <param name="array">The target array.</param>
            <param name="index">The index to start copying from.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadMenuItem})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadMenuItem"/> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple items in a single step. 
                <code lang="CS">
            		RadMenuItem[] items = new RadMenuItem[] { new RadMenuItem("First"), new RadMenuItem("Second"), new RadMenuItem("Third") };
            		RadMenu1.Items.AddRange(items);
                </code>
            	<code lang="VB">
                    Dim items() As RadMenuItem = {New RadMenuItem("First"), New RadMenuItem("Second"), New RadMenuItem("Third")}
                    RadMenu1.Items.AddRange(items)
                </code>
            </example>
            <param name="items">
                The array of <see cref="T:Telerik.Web.UI.RadMenuItem"/> to append to the end of the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.IndexOf(Telerik.Web.UI.RadMenuItem)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object in the collection.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadMenuItem"/> to locate.
            </param>
            <returns>
            	The zero-based index of item within the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>,
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.Insert(System.Int32,Telerik.Web.UI.RadMenuItem)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object in the current 
            <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/> at the specified index location.
            </summary>
            <param name="index">
            	The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadMenuItem"/>.
            </param>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadMenuItem"/> to insert.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.Remove(Telerik.Web.UI.RadMenuItem)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadMenuItem"/> object from the current
            	<see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadMenuItem"/> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the index to remove.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadMenuItem"/> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadMenuItem"/> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadMenuItem"/> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadMenuItemCollection"/>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemGroupSettings">
            <summary>Represents settings controlling child item behavior.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemGroupSettings.#ctor">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemGroupSettings.#ctor(System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemGroupSettings.#ctor(System.Web.UI.StateBag,Telerik.Web.UI.RadMenuItem)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.DefaultSettings">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.Flow">
            <summary>Gets or sets the flow of child items.</summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.ItemFlow">ItemFlow</see> enumeration values. The default
                value is <strong>Vertical</strong>.
            </value>
            <remarks>
            Use the <strong>Flow</strong> property to customize the flow of child menu items.
            By default <strong>RadMenu</strong> mimics the behavior of Windows and child items
            (apart from top level ones) flow vertically.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.ExpandDirection">
            <summary>Gets or sets the direction in which child items will open.</summary>
            <value>
                One of the <see cref="P:Telerik.Web.UI.RadMenuItemGroupSettings.ExpandDirection">ExpandDirection</see> enumeration values.
                The default value is <strong>Auto</strong>.
            </value>
            <remarks>
                Use the <strong>ExpandDirection</strong> property to specify different expand
                direction than the automatically determined one. See the
                <see cref="P:Telerik.Web.UI.RadMenuItemGroupSettings.ExpandDirection">ExpandDirection</see> description for more information.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.OffsetX">
            <summary>
            Gets or sets a value indicating the horizontal offset of child menu items
            considering their parent.
            </summary>
            <value>
            An integer specifying the horizontal offset of child menu items (measured in
            pixels). The default value is 0 (no offset).
            </value>
            <remarks>
            	<para>Use the <strong>OffsetX</strong> property to change the position where child
                items will appear.</para>
            	<para>
                    To customize the vertical offset use the <see cref="P:Telerik.Web.UI.RadMenuItemGroupSettings.OffsetY">OffsetY</see>
                    property.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.OffsetY">
            <summary>
            Gets or sets a value indicating the vertical offset of child menu items
            considering their parent.
            </summary>
            <value>
            An integer specifying the vertical offset of child menu items (measured in
            pixels). The default value is 0 (no offset).
            </value>
            <remarks>
            	<para>Use the <strong>OffsetY</strong> property to change the position where child
                items will appear.</para>
            	<para>
                    To customize the horizontal offset use the <see cref="P:Telerik.Web.UI.RadMenuItemGroupSettings.OffsetX">OffsetX</see>
                    property.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.Width">
            <summary>
            Gets or sets a value indicating the width of child menu items (the whole item
            group).
            </summary>
            <value>
            A <strong>Unit</strong> that represents the width of the child item group. The
            default value is <strong>Unit.Empty</strong>.
            </value>
            <remarks>
            If the total width of menu items exceeds the <strong>Width</strong> property
            scrolling will be applied.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.Height">
            <summary>
            Gets or sets a value indicating the height of child menu items (the whole item
            group).
            </summary>
            <value>
            A <strong>Unit</strong> that represents the height of the child item group. The
            default value is <strong>Unit.Empty</strong>.
            </value>
            <remarks>
            If the total height of menu items exceeds the <strong>Height</strong> property
            scrolling will be applied.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.RepeatColumns">
            <summary>
            Gets or sets the number of columns to display in this item group.
            </summary>
            <remarks>
            <para>Specifies the number of columns which are displayed for a given item group. For example, 
            if it set to 3, the child items are displayed in three columns.
            The default value is 1.</para>
            <para>Displaying more than 1 column automatically disables scrolling for this group.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemGroupSettings.RepeatDirection">
            <summary>
            Gets or sets whether the columns are repeated vertically or horizontally
            </summary>
            <remarks>
            <para>When this property is set to <see cref="F:Telerik.Web.UI.MenuRepeatDirection.Vertical">Vertical</see>, 
            items are displayed vertically in columns from top to bottom, 
            and then left to right, until all items are rendered.
            </para>
            <para>
            When this property is set to <see cref="F:Telerik.Web.UI.MenuRepeatDirection.Horizontal">Horizontal</see>,
            items are displayed horizontally in rows from left to right, 
            then top to bottom, until all items are rendered.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.AppointmentUpdateEventArgs.SchedulerInfo">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Update method.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the providers' Update method.
            </value>
            <remarks>
            You can replace this object with your own implementation of
            <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> in order
            to pass additional information to the provider.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerStrings">
            <summary>
            The localization strings to be used in RadScheduler.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerViewType">
            <summary>Specifies the view mode of a RadScheduler control.</summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerViewType.DayView">
            <summary>
            A view that spans a single day. All day-events are displayed in a separate row on
            top.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerViewType.WeekView">
            <summary>
            A view that spans seven days. Each day is displayed as in DayView mode and the
            current date is highlighted.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerViewType.MonthView">
            <summary>A view that spans a whole month. The current date is highlighted.</summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerViewType.TimelineView">
            <summary>
            The Timeline view spans an arbitrary time period. It is divided in slots with
            user selectable duration.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerViewType.MultiDayView">
            <summary>
            Similar to WeekView, but shows a fixed number of days and does not observe week boundaries.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.WebResourceSession">
            <summary>
            This class should be used in the HTTP Handler declaration for Telerik.Web.UI.WebResource if you need access to the Session object
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.HandlerRouter.PopulateHandlers">
            <summary>
            Populates the Handlers collection
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.HandlerRouter.HandlerUrlKey">
            <summary>
            Gets the query string's key name which value determines the handler to be called 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.HandlerRouter.Handlers">
            <summary>
            Gets the key/value collection of handlers which are currently available
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadScriptManager">
            <summary>
            ScriptManager derived class to add the ability to combine multiple
            smaller scripts into a larger one as a way to reduce the number
            of files the client must download
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptManager.EnableHandlerDetection">
            <summary>
            	Gets or sets a value indicating if RadScriptManager should check the Telerik.Web.UI.WebResource
            	handler existence in the application configuration file.
            </summary>
            <remarks>
            	When EnableHandlerDetection set to true, RadScriptManager automatically checks if the
            	HttpHandler it uses is registered to the application configuration file and throws
            	an exception if the HttpHandler registration missing. Set this property to false
            	if your scenario uses a file to output the combined scripts, or when running in Medium trust.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptManager.EnableScriptCombine">
            <summary>
            Specifies whether or not multiple script references should be combined into a single file
            </summary>
            <remarks>
            	When EnableScriptCombine set to true, the script references of the controls
            	on the page are combined to a single file, so that only one &lt;script&gt;
            	tag is output to the page HTML
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptManager.OutputCompression">
            <summary>
            	Specifies whether or not the combined output will be compressed.
            </summary>
            <remarks>
            	<para>In some cases the browsers do not recognize compressed streams (e.g. if IE 6 lacks
            	an update installed). In some cases the Telerik.Web.UI.WebResource handler
            	cannot determine if to compress the stream. Set this property
            	to <see cref="F:Telerik.Web.UI.OutputCompression.Disabled">Disabled</see>
            	if you encounter that problem.</para>
            	<para>The <strong>OutputCompression</strong> property works only when
            	<see cref="P:Telerik.Web.UI.RadScriptManager.EnableScriptCombine">EnableScriptCombine</see> is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadScriptManager.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler that combines and serves the scripts.
            </summary>
            <remarks>
            	<para>
            		The HTTPHandler should either be registered in the application configuration
            		file, or a file with the specified name should exist at the location, which
            		HttpHandlerUrl points to.
            	</para>
            	<para>
            		If a file is to serve the files, it should inherit the class Telerik.Web.UI.WebResource
            	</para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.Dictionaries.DictionaryImporter">
            <summary>
            Summary description for DictionarySorter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DictionaryImporter.Save(System.String)">
            <summary>
            Saves the dictionary to a file.
            </summary>
            <param name="outputFile">The output file name.</param>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DictionaryImporter.Load(System.String)">
            <summary>
            Load a word list from a file.
            </summary>
            <param name="inputFile">The import file name.</param>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DictionaryImporter.Load(System.IO.TextReader)">
            <summary>
            Load a word list from a StreamReader.
            </summary>
            <param name="input">The import reader.</param>
        </member>
        <member name="F:Telerik.Web.UI.Dictionaries.DoubleMetaphone.VOWELS">
            "Vowels" to test for
        </member>
        <member name="F:Telerik.Web.UI.Dictionaries.DoubleMetaphone.SILENT_START">
            Prefixes when present which are not pronounced
        </member>
        <member name="F:Telerik.Web.UI.Dictionaries.DoubleMetaphone.maxCodeLen">
            Maximum length of an encoding, default is 4
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Encode(System.String)">
             Encode a value with Double Metaphone
            
             @param value string to encode
             @return an encoded string
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Encode(System.String,System.Boolean)">
             Encode a value with Double Metaphone, optionally using the alternate
             encoding.
            
             @param value string to encode
             @param alternate use alternate encode
             @return an encoded string
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.IsDoubleMetaphoneEqual(System.String,System.String)">
            Check if the Double Metaphone values of two <code>string</code> values
            are equal.
            
            @param value1 The left-hand side of the encoded {@link string#equals(Object)}.
            @param value2 The right-hand side of the encoded {@link string#equals(Object)}.
            @return <code>true</code> if the encoded <code>string</code>s are equal;
                     <code>false</code> otherwise.
            @see #isDoubleMetaphoneEqual(string,string,bool)
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.IsDoubleMetaphoneEqual(System.String,System.String,System.Boolean)">
            Check if the Double Metaphone values of two <code>string</code> values
            are equal, optionally using the alternate value.
            
            @param value1 The left-hand side of the encoded {@link string#equals(Object)}.
            @param value2 The right-hand side of the encoded {@link string#equals(Object)}.
            @param alternate use the alternate value if <code>true</code>.
            @return <code>true</code> if the encoded <code>string</code>s are equal;
                     <code>false</code> otherwise.
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.GetMaxCodeLen">
            Returns the maxCodeLen.
            @return int
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.SetMaxCodeLen(System.Int32)">
            Sets the maxCodeLen.
            @param maxCodeLen The maxCodeLen to set
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleAEIOUY(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'A', 'E', 'I', 'O', 'U', and 'Y' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleC(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'C' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleCC(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'CC' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleCH(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'CH' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleD(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'D' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleG(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32,System.Boolean)">
            Handles 'G' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleGH(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'GH' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleH(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'H' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleJ(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32,System.Boolean)">
            Handles 'J' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleL(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'L' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleP(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'P' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleR(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32,System.Boolean)">
            Handles 'R' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleS(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32,System.Boolean)">
            Handles 'S' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleSC(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'SC' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleT(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'T' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleW(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'W' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleX(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32)">
            Handles 'X' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.HandleZ(System.String,Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult,System.Int32,System.Boolean)">
            Handles 'Z' cases
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.ConditionC0(System.String,System.Int32)">
            Complex condition 0 for 'C'
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.ConditionCH0(System.String,System.Int32)">
            Complex condition 0 for 'CH'
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.ConditionCH1(System.String,System.Int32)">
            Complex condition 1 for 'CH'
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.ConditionL0(System.String,System.Int32)">
            Complex condition 0 for 'L'
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.ConditionM0(System.String,System.Int32)">
            Complex condition 0 for 'M'
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.IsSlavoGermanic(System.String)">
            Determines whether or not a value is of slavo-germanic orgin. A value is
            of slavo-germanic origin if it contians any of 'W', 'K', 'CZ', or 'WITZ'.
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.IsVowel(System.Char)">
            Determines whether or not a character is a vowel or not
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.IsSilentStart(System.String)">
            Determines whether or not the value starts with a silent letter.  It will
            return <code>true</code> if the value starts with any of 'GN', 'KN',
            'PN', 'WR' or 'PS'.
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.CleanInput(System.String)">
            Cleans the input
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.CharAt(System.String,System.Int32)">
            Gets the character at index <code>index</code> if available, otherwise
            it returns <code>Character.MIN_VALUE</code> so that there is some sort
            of a default
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String)">
            Shortcut method with 1 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String,System.String)">
            Shortcut method with 2 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String,System.String,System.String)">
            Shortcut method with 3 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String,System.String,System.String,System.String)">
            Shortcut method with 4 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String,System.String,System.String,System.String,System.String)">
            Shortcut method with 5 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String,System.String,System.String,System.String,System.String,System.String)">
            Shortcut method with 6 criteria
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.DoubleMetaphone.Contains(System.String,System.Int32,System.Int32,System.String[])">
            		* Determines whether <code>value</code> contains any of the criteria 
            		starting
            		* at index <code>start</code> and matching up to length <code>length</code>
        </member>
        <member name="T:Telerik.Web.UI.Dictionaries.DoubleMetaphoneResult">
            Inner class for storing results, since there is the optional alternate
            encoding.
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.EditDistanceDictionary.InitArrays">
            <summary>
            	Initializes the length and offset arrays as well as the distance matrix.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.EditDistanceDictionary.GetSimilar(System.String)">
            <summary>
            	Finds possible suggestions for a misspelled word.
            </summary>
            <param name="word">the misspelled word string</param>
            <returns>array of suggestion replacement strings</returns>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.EditDistanceDictionary.CalculateEditDistance(System.String,System.String)">
            <summary>
            	Calculates Levenshtein distance for two given strings.
            </summary>
            <param name="first">String 1.</param>
            <param name="second">String 2.</param>
            <returns>Edit Distance.</returns>
        </member>
        <member name="T:Telerik.Web.UI.Dictionaries.ICustomDictionarySource">
            <summary>
            A custom interface that defines the access to the custom dictionary.  
            It can be used to replace the custom dictionary storage mechanism and store the words in a database or on a remote computer.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.ICustomDictionarySource.ReadWord">
            <summary>
            Reads a word from the storage.  It should return null if no more words are present.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.Dictionaries.ICustomDictionarySource.AddWord(System.String)">
            <summary>
            Adds a new custom word.
            </summary>
            <param name="word">the new word</param>
        </member>
        <member name="P:Telerik.Web.UI.Dictionaries.ICustomDictionarySource.DictionaryPath">
            <summary>
            The directory that contains the custom dictionary file.
            Necessary only for file based storage -- it is set to the physical directory corresponding to RadSpell's DictPath property setting.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dictionaries.ICustomDictionarySource.Language">
            <summary>
            The language for the custom dictionary.  It is usually a culture name like en-US or de-DE.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dictionaries.ICustomDictionarySource.CustomAppendix">
            <summary>
            A custom appendix string that can be used to distinguish different custom dictionaries.  It is passed the CustomAppendix of the RadSpell object.  This way one can create different dictionaries for John and Mary.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Dictionaries.SorterObjectArray">
            <summary>
            This is the .NET 1.x implementation.
            The .NET 2.0 one gets into an infinite loop when using the WordComparer.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Dictionaries.WordComparer">
            <summary>
            Summary description for WordComparer.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ISpellCheckProvider">
            <summary>
            ISpellCheckProvider interface -- defines the behavior that we need
            from a component to do spell checking.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TelerikSpellCheckProvider">
            <summary>
            Summary description for TelerikSpellCheckProvider.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SpellChecker">
            <summary>
            This class can be used to initiate a spell check request using the RadSpell dictionaries.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.#ctor(System.String)">
            <summary>
            Create a new RadSpellChecker object.  You need to pass a correct path to the folder that contains the dictionary files (*.TDF)
            </summary>
            <remarks>
            The method expects local paths. E.g. "C:\SomeFolder\RadControls\Spell\TDF".  Transform URL's to local paths with the <see cref="M:System.Web.HttpServerUtility.MapPath(System.String)"/> method.
            C#
            <code>
            SpellChecker checker = new SpellChecker(Server.MapPath("~/RadControls/Spell/TDF"));
            </code>
            VB.NET
            <code>
            </code>
            Dim checker As SpellChecker
            checker = New SpellChecker(Server.MapPath("~/RadControls/Spell/TDF"))
            </remarks>
            <param name="dictionaryPath"></param>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.Close">
            <summary>
            Cleans up any resources held by the SpellChecker object.  It is an alias of the Dispose method.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.CheckText">
            <summary>
            Performs the actual spellchecking.  It will be automatically called by the Errors property accessor.
            </summary>
            <returns><see cref="T:Telerik.Web.UI.SpellCheckErrors"/> -- a collection with all the errors found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.GetSuggestions(System.String)">
            <summary>
            Gets a list of suggestions from the dictionary for the specified word
            </summary>
            <param name="word">A string containing the word to be used.</param>
            <returns>A string array containing the spellcheck suggestions for the input word.</returns>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.AddToCustom(System.String)">
            <summary>
            Adds a new word to the custom dictionary.  It first checks if the word is already present in the current base or custom dictionaries.
            </summary>
            <param name="word">The new custom word.</param>
        </member>
        <member name="M:Telerik.Web.UI.SpellChecker.Dispose">
            <summary>
            Clean up used resources.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.Text">
             <summary>
             Sets the text to be spellchecked.  It can be plain text or HTML.
             </summary>
             <remarks>
             This property can be used to pass the text to the spellchecker engine programmatically.  The engine can deal with plaintext or any HTML-like format.  
             It ignores text inside angle brackets (&lt;&gt;) and transforms HTML entities to their character values.  E.g. &amp;amp; becomes &amp;
             C#:
             <code>
            using (SpellChecker checker = new SpellChecker(Server.MapPath("~/RadControls/Spell/TDF")))
            {
            	checker.Text = text;
            	return checker.Errors;
            }
             </code>
             VB.NET
             <code>
            Dim checker As SpellChecker
            Try
            	checker = New SpellChecker(Server.MapPath("~/RadControls/Spell/TDF"))
            	checker.Text = text
            	Return checker.Errors
            Finally
            	checker.Dispose()
            End Try 
             </code>
             </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.DictionaryLanguage">
            <summary>
            The language of the dictionary to be used for spellchecking.  It usually is the same as the corresponding TDF file (without the extension).
            </summary>
            <remarks>
            To spellcheck in German you have to have de-DE.tdf inside your dictionary folder, and set DictionaryLanguage to "de-DE"
            C#:
            <code>
            spellChecker.DictionaryLanguage = "de-DE";
            </code>
            VB.NET
            <code>
            spellChecker.DictionaryLanguage = "de-DE"
            </code>
            </remarks>
            <value>The default is <b>en-US</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.DictionaryPath">
            <summary>
            The folder path that contains the TDF files.
            </summary>
            <remarks>
            The method expects local paths. E.g. "C:\SomeFolder\RadControls\Spell\TDF".  Transform URL's to local paths with the <see cref="M:System.Web.HttpServerUtility.MapPath(System.String)"/> method.
            C#
            <code>
            SpellChecker checker = new SpellChecker(Server.MapPath("~/RadControls/Spell/TDF"));
            </code>
            VB.NET
            <code>
            </code>
            Dim checker As SpellChecker
            checker = New SpellChecker(Server.MapPath("~/RadControls/Spell/TDF"))
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CustomAppendix">
            <summary>
            The suffix that gets appended to the custom dictionary file name.  It is usually a user specific string that allows to distinguish dictionaries for different users.
            Default filenames are Language + CustomAppendix + ".txt".
            <value>The default is <b>-Custom</b></value>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.EditDistance">
            <summary>
            	Specifies the edit distance. If you increase the value, the checking speed decreases but more suggestions are presented.  It does not do anything for the phonetic spellchecking.
            </summary>
            <value>The default is <b>1</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CheckAllCaps">
            <summary>
            	Specifies whether or not to check words in CAPITALS (e.g. "UNESCO")
            </summary>
            <value>The default is <b>false</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CheckForRepeatWords">
            <summary>
            	Specifies whether or not to count repeating words as errors (e.g. "very very")
            </summary>
            <value>The default is <b>false</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CheckCapital">
            <summary>
            	Specifies whether or not to check words in Capitals (e.g. "Washington")
            </summary>
            <value>The default is <b>true</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CheckWordsWNumbers">
            <summary>
            	Specifies whether or not to check words containing numbers (e.g. "l8r")
            </summary>
            <value>The default is <b>false</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.WordIgnoreOptions">
            <summary>
            A set of rules that specify words that should be ignored during the spellcheck. Note that this property should be set before the <see cref="P:Telerik.Web.UI.SpellChecker.Text"/> property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.SpellCheckProviderTypeName">
            <summary>
            	Specifies the type name for the custom spell check provider
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.SpellCheckProvider">
            <summary>
            	Specifies whether RadSpell should use the internal spellchecking algorithm or try to use Microsoft Word. The possible values are defined in the <see cref="T:Telerik.Web.UI.SpellCheckProvider"/> enum.
            </summary>
            <value>The default is <b>PhoneticProvider</b></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.FragmentIgnoreOptions">
            <summary>
            Configures the spellchecker engine, so that it knows whether to skip URL's, email addresses, and filenames and not flag them as erros.
            <see cref="P:Telerik.Web.UI.SpellChecker.FragmentIgnoreOptions"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CustomDictionarySource">
            <summary>
            Manipulate the custom dictionary source.  The new value must implement ICustomDictionarySource.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.CustomDictionarySourceType">
            <summary>
            The fully qualified name of the type that will be used for the custom dictionary storage.  The type name must include the assembly, culture and public key token.
            A new instance will be created internally unless you set <see cref="P:Telerik.Web.UI.SpellChecker.CustomDictionarySource"/> CustomDictionarySource directly.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.Errors">
            <summary>
            The errors after the last spellcheck.  The getter method will call <see cref="M:Telerik.Web.UI.SpellChecker.CheckText"/> automatically if the text has not been checked yet.
            </summary>
            <value><see cref="T:Telerik.Web.UI.SpellCheckErrors"/></value>
        </member>
        <member name="P:Telerik.Web.UI.SpellChecker.TextWords">
            <summary>
            This property returns the list of words that was generated when the <see cref="P:Telerik.Web.UI.SpellChecker.Text"/> property is set.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckError">
            <summary>
            Contains the information about a spellcheck error.  The most important properties are the mistaken word and its offset in the source text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellCheckError.WordIndex">
            <summary>
            The index of the misspelled word
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellCheckError.OffsetInText">
            <summary>
            The offset in the source text.  It is useful for locating the original word and replacing it with one of the suggestions.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellCheckError.MistakenWord">
            <summary>
            The original word that the spellchecker has determined to be wrong.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SpellCheckError.Suggestions">
            <summary>
            Suggestions for replacing the mistaken word.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckErrors">
            <summary>
                <para>
                  A collection that stores <see cref="T:Telerik.Web.UI.SpellCheckError"/> objects.
               </para>
            </summary>
            <seealso cref="T:Telerik.Web.UI.SpellCheckErrors"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.#ctor">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.SpellCheckErrors"/>.
               </para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.#ctor(System.Boolean)">
            <summary>
                <para>
                  Initializes a new instance of <see cref="T:Telerik.Web.UI.SpellCheckErrors"/>.
               </para>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.Add(Telerik.Web.UI.SpellCheckError)">
            <summary>
               <para>Adds a <see cref="T:Telerik.Web.UI.SpellCheckError"/> with the specified value to the 
               <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.SpellCheckError"/> to add.</param>
            <returns>
               <para>The index at which the new element was inserted.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.AddRange(Telerik.Web.UI.SpellCheckErrors)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.AddRange(Telerik.Web.UI.SpellCheckError[])">
            <summary>
            <para>Copies the elements of an array to the end of the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/>.</para>
            </summary>
            <param name="value">
               An array of type <see cref="T:Telerik.Web.UI.SpellCheckError"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.Add(Telerik.Web.UI.SpellCheckError)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.AddRange(Telerik.Web.UI.SpellCheckErrors)">
            <summary>
                <para>
                  Adds the contents of another <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> to the end of the collection.
               </para>
            </summary>
            <param name="value">
               A <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> containing the objects to add to the collection.
            </param>
            <returns>
              <para>None.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.Add(Telerik.Web.UI.SpellCheckError)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.Contains(Telerik.Web.UI.SpellCheckError)">
            <summary>
            <para>Gets a value indicating whether the 
               <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> contains the specified <see cref="T:Telerik.Web.UI.SpellCheckError"/>.</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.SpellCheckError"/> to locate.</param>
            <returns>
            <para><see langword="true"/> if the <see cref="T:Telerik.Web.UI.SpellCheckError"/> is contained in the collection; 
              otherwise, <see langword="false"/>.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.IndexOf(Telerik.Web.UI.SpellCheckError)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.CopyTo(Telerik.Web.UI.SpellCheckError[],System.Int32)">
            <summary>
            <para>Copies the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> values to a one-dimensional <see cref="T:System.Array"/> instance at the 
               specified index.</para>
            </summary>
            <param name="array"><para>The one-dimensional <see cref="T:System.Array"/> that is the destination of the values copied from <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</para></param>
            <param name="index">The index in <paramref name="array"/> where copying begins.</param>
            <returns>
              <para>None.</para>
            </returns>
            <exception cref="T:System.ArgumentException"><para><paramref name="array"/> is multidimensional.</para> <para>-or-</para> <para>The number of elements in the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> is greater than the available space between <paramref name="index"/> and the end of <paramref name="array"/>.</para></exception>
            <exception cref="T:System.ArgumentNullException"><paramref name="array"/> is <see langword="null"/>. </exception>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is less than <paramref name="array"/>'s lowbound. </exception>
            <seealso cref="T:System.Array"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.IndexOf(Telerik.Web.UI.SpellCheckError)">
            <summary>
               <para>Returns the index of a <see cref="T:Telerik.Web.UI.SpellCheckError"/> in 
                  the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.SpellCheckError"/> to locate.</param>
            <returns>
            <para>The index of the <see cref="T:Telerik.Web.UI.SpellCheckError"/> of <paramref name="value"/> in the 
            <see cref="T:Telerik.Web.UI.SpellCheckErrors"/>, if found; otherwise, -1.</para>
            </returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.Contains(Telerik.Web.UI.SpellCheckError)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.Insert(System.Int32,Telerik.Web.UI.SpellCheckError)">
            <summary>
            <para>Inserts a <see cref="T:Telerik.Web.UI.SpellCheckError"/> into the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> at the specified index.</para>
            </summary>
            <param name="index">The zero-based index where <paramref name="value"/> should be inserted.</param>
            <param name=" value">The <see cref="T:Telerik.Web.UI.SpellCheckError"/> to insert.</param>
            <returns><para>None.</para></returns>
            <seealso cref="M:Telerik.Web.UI.SpellCheckErrors.Add(Telerik.Web.UI.SpellCheckError)"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.GetEnumerator">
            <summary>
               <para>Returns an enumerator that can iterate through 
                  the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</para>
            </summary>
            <returns><para>None.</para></returns>
            <seealso cref="T:System.Collections.IEnumerator"/>
        </member>
        <member name="M:Telerik.Web.UI.SpellCheckErrors.Remove(Telerik.Web.UI.SpellCheckError)">
            <summary>
               <para> Removes a specific <see cref="T:Telerik.Web.UI.SpellCheckError"/> from the 
               <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</para>
            </summary>
            <param name="value">The <see cref="T:Telerik.Web.UI.SpellCheckError"/> to remove from the <see cref="T:Telerik.Web.UI.SpellCheckErrors"/> .</param>
            <returns><para>None.</para></returns>
            <exception cref="T:System.ArgumentException"><paramref name="value"/> is not found in the Collection. </exception>
        </member>
        <member name="P:Telerik.Web.UI.SpellCheckErrors.Item(System.Int32)">
            <summary>
            <para>Represents the entry at the specified index of the <see cref="T:Telerik.Web.UI.SpellCheckError"/>.</para>
            </summary>
            <param name="index"><para>The zero-based index of the entry to locate in the collection.</para></param>
            <value>
               <para> The entry at the specified index of the collection.</para>
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException"><paramref name="index"/> is outside the valid range of indexes for the collection.</exception>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckProvider">
            <summary>
            The spellcheck provider enumeration.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SpellCheckProvider.TelerikProvider">
            <summary>
            The default provider.  The same as PhoneticProvider
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SpellCheckProvider.EditDistanceProvider">
            <summary>
            This provider uses the edit distance algorithm. It will work for non-western
            languages.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SpellCheckProvider.PhoneticProvider">
            <summary>
            This provider uses phonetic codes to provide "sounds like" word suggestions.  Really effective for English, and less so for other languages.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SpellCheckProvider.MicrosoftWordProvider">
            <summary>
            This provider automates Microsoft Word via its COM Interop interface.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.WordIgnoreOptions.UPPERCASE">
            <summary>
            Specifies whether or not to check words in CAPITALS (e.g. 'UNESCO')
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.WordIgnoreOptions.WordsWithCapitalLetters">
            <summary>
            Specifies whether or not to check words in Capitals (e.g. 'Washington')
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.WordIgnoreOptions.RepeatedWords">
            <summary>
            Specifies whether or not to count repeating words as errors (e.g. 'very very')
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.WordIgnoreOptions.WordsWithNumbers">
            <summary>
            Specifies whether or not to check words containing numbers (e.g. 'l8r')
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TagCloudDistribution">
            <summary>
            Specifies the possible values for the <strong>Distribution</strong> property of the RadTagCloud control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudDistribution.Linear">
            <summary>
            The font-size is <strong>linearly</strong> distributed among the different words based on their occurance.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudDistribution.Logarithmic">
            <summary>
            The font-size is <strong>logarithmically</strong> distributed among the different words based on their occurance.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TagCloudSorting">
            <summary>
            Specifies the possible values for the <strong>Sorting</strong> property of the RadTagCloud control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudSorting.NotSorted">
            <summary>
            The TagCloud items are left as they appear in the Items collection (DataSource).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudSorting.AlphabeticAsc">
            <summary>
            The TagCloud items are sorted alphabetically in ascending order.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudSorting.AlphabeticDsc">
            <summary>
            The TagCloud items are sorted alphabetically in descending order.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudSorting.WeightedAsc">
            <summary>
            The TagCloud items are sorted based on their Weight in ascending order.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TagCloudSorting.WeightedDsc">
            <summary>
            The TagCloud items are sorted based on their Weight in descending order.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListColumnEditor">
            <summary>
            Represents the base class of all column editors in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ITreeListColumnEditor">
            <summary>
            Represents the common interface of a column editor in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ITreeListColumnEditor.Initialize(Telerik.Web.UI.TreeListEditableItem,System.Web.UI.Control)">
            <summary>
            Initialize controls and add to the provided container control for the specified <see cref="T:Telerik.Web.UI.TreeListEditableItem"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ITreeListColumnEditor.SetValues(System.Collections.IEnumerable)">
            <summary>
            Set the specified edit values to the controls in this editor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ITreeListColumnEditor.GetValues">
            <summary>
            Get the collection of edited values from this editor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListColumnEditor.GetFirstValue">
            <summary>
            Get the first value from the values of the current <see cref="T:Telerik.Web.UI.TreeListColumnEditor"/>.
            This method returns the first item from <see cref="M:Telerik.Web.UI.ITreeListColumnEditor.GetValues"/>, if any.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListTextBoxColumnEditor">
            <summary>
            Represents a column editor that provides a TextBox control for data editing.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListColumn.GetSortExpression">
            <summary>
            By default returns the SortExpression of the column. If the SortExpression is not set explicitly, it would be calculated, based on the
            DataField of the column.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.FooterText">
            <summary>
            	<para>Use the <b>FooterText</b> property to specify your own or determine the current
            text for the footer section of the column.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.UniqueName">
            <summary>
            Each column in Telerik RadTreeList has an <strong>UniqueName</strong>
            property (string). This property is assigned automatically by the designer (or the
            first time you want to access the columns if they are built dynamically).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.HeaderStyle">
            <summary>
            Style of the cell in the header item of the RadTreeList, corresponding to the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.ItemStyle">
            <summary>
            Style of the cell in the item of the RadTreeList, corresponding to the column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.Visible">
            <summary>
            Gets or sets a value indicating if the column and all corresponding cells would be rendered.
            </summary>
            <value>
            This property returns a <strong><em>Boolean</em></strong> value, indicating
            whether the cells corresponding to the column, would be visible on the client, and
            whether they would be rendered on the client.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.Sortable">
            <summary>
            Should override if sorting will be disabled
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListColumn.SortExpression">
            <summary>
            The string representing a filed-name from the DataSource that should be used when grid sorts by this column. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCalculatedColumn.Aggregate">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>TreeListBoundColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCalculatedColumn.DataFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the expression.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which will form the expression.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCalculatedColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCalculatedColumn.DataType">
            <summary>
            	<para>Gets or sets (see the Remarks) the type of the data from the DataField as it
                was set in the DataSource.</para>
            </summary>
            <remarks>
            	<para>The DataType property supports the following base .NET Framework data
                types:</para>
            	<list type="bullet">
            		<item>Boolean</item>
            		<item>Byte</item>
            		<item>Char</item>
            		<item>DateTime</item>
            		<item>Decimal</item>
            		<item>Double</item>
            		<item>Int16</item>
            		<item>Int32</item>
            		<item>Int64</item>
            		<item>SByte</item>
            		<item>Single</item>
            		<item>String</item>
            		<item>TimeSpan</item>
            		<item>UInt16</item>
            		<item>UInt32</item>
            		<item>UInt64</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.DataType">
            <summary>
            	<para>Gets or sets (see the Remarks) the type of the data from the DataField as it
                was set in the DataSource.</para>
            </summary>
            <remarks>
            	<para>The DataType property supports the following base .NET Framework data
                types:</para>
            	<list type="bullet">
            		<item>Boolean</item>
            		<item>Byte</item>
            		<item>Char</item>
            		<item>DateTime</item>
            		<item>Decimal</item>
            		<item>Double</item>
            		<item>Int16</item>
            		<item>Int32</item>
            		<item>Int64</item>
            		<item>SByte</item>
            		<item>Single</item>
            		<item>String</item>
            		<item>TimeSpan</item>
            		<item>UInt16</item>
            		<item>UInt32</item>
            		<item>UInt64</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.DataImageUrlFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the url of the image which will be shown.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration
            of DataFields from the data source, which will form the url of the image which
            will be shown.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.DataImageUrlFormatString">
            <summary>
            Gets or sets a string, specifying the FormatString of the DataNavigateURL.
            Essentially, the DataNavigateUrlFormatString property sets the formatting for the url
            string of the image.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the FormatString of the
            DataNavigateURL.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.ImageUrl">
            <summary>
            Gets or sets a string, specifying the url, from which the image should be
            retrieved. This property will be honored only if the DataImageUrlFields are
            not set. If either DataImageUrlFields are set, they will override the
            ImageUrl property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the url, from which the image,
            should be loaded.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.AlternateText">
            <summary>
            Gets or sets a string, specifying the text which will be shown as alternate
            text to the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.ImageWidth">
            <summary>
            Gets or sets the width of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.ImageHeight">
            <summary>
            Gets or sets the height of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.DataAlternateTextField">
            <summary>
            Gets or sets a string, representing the DataField name from the data source,
            which will be used to supply the alternateText for the image in the column. This text can
            further be customized, by using the DataTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the DataField name from the data
            source, which will be used to supply the alternate text for the image in the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListImageColumn.DataAlternateTextFormatString">
            <summary>
            Gets or sets a string, specifying the format string, which will be used to format
            the alternate text of the image, rendered in the cells of the column.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the format string, which will be
            used to format the text of the hyperlink, rendered in the cells of the column.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.TreeListAggregateFunction">
            <summary>
                Enumeration representing the aggregate functions which can be applied to a
                TreeListGroupByField 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataColumn.DataType">
            <summary>
            	<para>Gets or sets (see the Remarks) the type of the data from the DataField as it
                was set in the DataSource.</para>
            </summary>
            <remarks>
            	<para>The DataType property supports the following base .NET Framework data
                types:</para>
            	<list type="bullet">
            		<item>Boolean</item>
            		<item>Byte</item>
            		<item>Char</item>
            		<item>DateTime</item>
            		<item>Decimal</item>
            		<item>Double</item>
            		<item>Int16</item>
            		<item>Int32</item>
            		<item>Int64</item>
            		<item>SByte</item>
            		<item>Single</item>
            		<item>String</item>
            		<item>TimeSpan</item>
            		<item>UInt16</item>
            		<item>UInt32</item>
            		<item>UInt64</item>
            	</list>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEditableColumn">
            <summary>
            Implements the base functionality of a RadTreeList editable column.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.CreateDefaultColumnEditor">
            <summary>
            Create and return a default column editor for the current RadTreeList editable column.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.GetColumnEditor(Telerik.Web.UI.TreeListEditableItem)">
            <summary>
            Gets the editor of this column from the specified <see cref="T:Telerik.Web.UI.TreeListEditableItem"/> instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.ShouldExtractValues(Telerik.Web.UI.TreeListEditableItem)">
            <summary>
            Gets or sets a value specifying whether RadTreeList should extract values from the specified 
            <see cref="T:Telerik.Web.UI.TreeListEditableItem"/> instance based on the item's editable state, 
            the current column's ReadOnly state and the value of ForceExtractValue property.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.TreeListEditableItem)">
            <summary>
            Extracts the values from the specified <see cref="T:Telerik.Web.UI.TreeListEditableItem"/> instance and
            fills the names/values pairs for each data-field edited by the column in the specified IDictionary instance.
            </summary>
            <param name="newValues">Dictionary to fill. This param should not be null (Nothing in VB.NET)</param>
            <param name="editableItem">The GridEditableItem to extract values from</param>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.TryGetColumnValueFromDataKeys(Telerik.Web.UI.TreeListDataItem,System.Object@)">
            <summary>
            Checks if the DataField of the current column is in the DataKeyNames or ParentDataKeyNames
            collection of <see cref="T:Telerik.Web.UI.RadTreeList"/> and tries to extract the data key value from
            the specified <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.GetColumnValueFromDataCell(System.Web.UI.WebControls.TableCell)">
            <summary>
            Retrieves the data value of this column from the specified TableCell of a <see cref="T:Telerik.Web.UI.TreeListDataItem"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableColumn.GetEditorValues(Telerik.Web.UI.TreeListEditableItem)">
            <summary>
            Extracts the editor values from the specified <see cref="T:Telerik.Web.UI.TreeListEditableItem"/> instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.ReadOnly">
            <summary>
            Gets or sets a value indicating whether the column is read-only. A read-only column
            will be shown in items in view mode, but will not appear in the edit form of edited items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.IsEditable">
            <summary>
            Gets a value indicating whether this column is currently editable. Use the column's 
            ReadOnly property if you want to change its editing capabilities.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.ForceExtractValue">
            <summary>
            Specifies how values for this column will be extracted when the column is read-only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.DefaultInsertValue">
            <summary>
            Gets or sets the default value for this column's editor when a new item is inserted in RadTreeList.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.EditFormHeaderTextFormat">
            <summary>
            Gets or sets the format of the <see cref="P:Telerik.Web.UI.TreeListColumn.HeaderText"/> that is set
            to the edit cell inside an auto-generated edit form.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableColumn.EditFormColumnIndex">
            <summary>
            Specifies the vertical column number where this column will appear when
            using EditForms editing mode and the form is auto-generated.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListBoundColumn.CreateDefaultColumnEditor">
            <summary>
            Create and return a default column editor for the current RadTreeList editable column.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListBoundColumn.DataFormatString">
            <summary>
            Gets or sets the string that specifies the display format for items in the
            column.
            </summary>
            <value>
            A <strong><em>string</em></strong> that specifies the display format for items in
            the column
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListBoundColumn.Aggregate">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>TreeListBoundColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListBoundColumn.EmptyDataText">
            <summary>
            Sets or gets default text when column is empty. Default value is
            "&amp;nbsp;"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListBoundColumn.HtmlEncode">
            <summary>
            Sets or gets whether cell content must be encoded. Default value is
            <em>false</em>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListBoundColumn.ConvertEmptyStringToNull">
            <summary>
            Convert the emty string to null when extracting values during data editing operations.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListButtonColumnType">
            <summary>Defines what button will be rendered in a TreeListButtonColumn</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListButtonColumnType.LinkButton">
            <summary>Renders a standard hyperlink button.</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListButtonColumnType.PushButton">
            <summary>Renders a standard button.</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListButtonColumnType.ImageButton">
            <summary>Renders an image that acts like a button.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListButtonColumn.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event along with the
            associated
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListButtonColumn.Text">
            <summary>Gets or sets a value indicating the text that will be shown for a button.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListButtonColumn.ImageUrl">
            <summary>
            Gets or sets a value indicating the URL for the image that will be used in a
            Image button. <see cref="P:Telerik.Web.UI.TreeListButtonColumn.ButtonType"/> should be set to
            <strong>ImageButton</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListButtonColumn.ButtonCssClass">
            <summary>
            Gets or sets the CssClass of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDateTimeColumn.EditDataFormatString">
            <summary>
            Gets or sets the data format that will be applied to the edit field 
            when a TreeListDataItem is edited in RadTreeList
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListForceExtractValues">
            <summary>
            Force RadTreeList to extract values from editable columns that are ReadOnly.
            See also the RadTreeList.ExtractValuesFromItem method.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListForceExtractValues.None">
            <summary>
            No values would be extracted from a ReadOnly column
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListForceExtractValues.InBrowseMode">
            <summary>
            Values will be extracted only when an item is NOT in edit mode
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListForceExtractValues.InEditMode">
            <summary>
            Values will be extracted only when an item is in edit mode
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListForceExtractValues.Always">
            <summary>
            Values will be extracted in all cases.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEditCommandColumn">
            <summary>
            Represents a column of buttons firing data-editing commands (Edit, InitInsert, PeformInsert, Update, Cancel).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.ShowAddButton">
            <summary>
            Gets or sets a value indicating whether the Add Record button will be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.ShowEditButton">
            <summary>
            Gets or sets a value indicating whether the Edit button will be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.UniqueName">
            <summary>
            Gets or sets a unique name for this column. The unique name can be used to
            reference particular columns, or cells within grid rows.
            </summary>
            <value>
            	<para>A <strong><em>string</em></strong>, representing the Unique name of the
                column.</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.CancelText">
            <summary>
            Gets or sets the text of the Cancel button in the edited items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.EditText">
            <summary>
            Gets or sets the text value of the Edit button in the column cells.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.UpdateText">
            <summary>
            Gets or sets the text of the Update button in the edited items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.AddRecordText">
            <summary>
            Gets or sets the text of the Add New Record button in data items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.InsertText">
            <summary>
            Gets or sets the text of the Insert button in the insert items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.AddRecordImageUrl">
            <summary>
            Gets or sets the URL of the image for the Add Record button when 
            <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> is set to ImageButton.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.InsertImageUrl">
            <summary>
            Gets or sets the URL of the image for the Insert button when 
            <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> is set to ImageButton.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.UpdateImageUrl">
            <summary>
            Gets or sets the URL of the image for the Update button when 
            <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> is set to ImageButton.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.EditImageUrl">
            <summary>
            Gets or sets the URL of the image for the Edit button when 
            <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> is set to ImageButton.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditCommandColumn.CancelImageUrl">
            <summary>
            Gets or sets the URL of the image for the Cancel button when 
            <see cref="P:Telerik.Web.UI.GridEditCommandColumn.ButtonType"/> is set to ImageButton.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.DataNavigateUrlFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the url of the windwow/frame that the hyperlink
            will target.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which will form the url of the windwow/frame that the
            hyperlink will target.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.DataNavigateUrlFormatString">
            <summary>
            Gets or sets a string, specifying the FormatString of the DataNavigateURL.
            Essentially, the DataNavigateUrlFormatString property sets the formatting for the url
            string of the target window or frame.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the FormatString of the
            DataNavigateURL.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.DataTextField">
            <summary>
            Gets or sets a string, representing the DataField name from the data source,
            which will be used to supply the text for the hyperlink in the column. This text can
            further be customized, by using the DataTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the DataField name from the data
            source, which will be used to supply the text for the hyperlink in the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.DataTextFormatString">
            <summary>
            Gets or sets a string, specifying the format string, which will be used to format
            the text of the hyperlink, rendered in the cells of the column.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the format string, which will be
            used to format the text of the hyperlink, rendered in the cells of the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.NavigateUrl">
            <summary>
            Gets or sets a string, specifying the url, to which to navigate, when a hyperlink
            within a column is pressed. This property will be honored only if the
            DataNavigateUrlFields are not set. If either
            DataNavigateUrlFields are set, they will override the
            NavigateUrl property.
            </summary>
            <value>
            A a <strong><em>string</em></strong>, specifying the url, to which to navigate,
            when a hyperlink within a column is pressed.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.Target">
            <summary>
            	<para>Sets or gets a string, specifying the window or frame at which to target
                content. The possible values are:</para>
            	<para>_blank - the target URL will open in a new window<br/>
                _self - the target URL will open in the same frame as it was clicked<br/>
                _parent - the target URL will open in the parent frameset<br/>
                _top - the target URL will open in the full body of the window</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the window or frame at which to
            target content.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHyperLinkColumn.Text">
            <summary>
            Gets or sets a string, specifying the text to be displayed by the hyperlinks in
            the column, when there is no DataTextField specified.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the text to be displayed by the
            hyperlinks in the column, when there is no DataTextField specified.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListTemplateColumn.Aggregate">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong>TreeListBoundColumn</strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListTemplateColumn.ConvertEmptyStringToNull">
            <summary>
            Convert the emty string to null when extracting values during data editing operations.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSelectColumn">
            <summary>
            Displays a <strong>Checkbox</strong> control for each item in the column. This
            allows you to select TreeList items automatically when you change the status of
            the checkbox to checked.
            </summary>
            <remarks>
            If you choose <strong>AllowMultiItemSelection = true</strong> for the TreeList, a
            checkbox will be displayed in the column header to toggle the checked/selected stated
            of the items simultaneously (according to the state of that checkbox in the
            header).<br/>
            	<br/>
            To enable this feature you need to turn on the client selection of the grid
            (<strong>ClientSettings -&gt; Selecting -&gt; AllowItemSelection = true</strong>).
            </remarks>
            <example>
            	<pre>
            &lt;telerik:TreeListSelectColumn UniqueName="SelectColumn" HeaderStyle-Width="40px" /&gt;
                </pre>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.ITreeListCommandEvent.ExecuteCommand(System.Object)">
            <summary>Override to fire the corresponding command.</summary>
        </member>
        <member name="P:Telerik.Web.UI.ITreeListCommandEvent.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListCommandEventArgsFactory">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListCreateColumnEditorEventArgs">
            <summary>
            Provides event data for the <see cref="E:Telerik.Web.UI.RadTreeList.CreateColumnEditor"/> event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCreateColumnEditorEventArgs.Column">
            <summary>
            Gets the column for which an editor is initialized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCreateColumnEditorEventArgs.DefaultEditor">
            <summary>
            Gets the default column-supplied editor instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListCreateColumnEditorEventArgs.CustomEditorInitializer">
            <summary>
            The delegate that initializes a new column editor instance.
            Set this to a function that returns a column editor every time it is called.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportingEventArgs.RawHtml">
            <summary>
            Gets or sets the rendered HTML code before it is converted to binary (PDF)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfStyle.IsDefault">
            <summary>
            Returns true if none of the properties have been set
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfStyle.LineHeight">
            <summary>
            Determines the line height
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.ExpandText">
            <summary>
            Represents the text that replaces the expand image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.CollapseText">
            <summary>
            Represents the text that replaces the collapse image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.ExpandImageUrl">
            <summary>
            Represents the path to the expand image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.ExpandImageWidth">
            <summary>
            Width of the expand image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.ExpandImageHeight">
            <summary>
            Height of the expand image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.CollapseImageUrl">
            <summary>
            Represents the path to the collapse image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.CollapseImageWidth">
            <summary>
            Width of the collapse image.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExpandCollapseCellStyle.CollapseImageHeight">
            <summary>
            Height of the collapse image.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ExportFormat">
            <summary>
            Determines the export format
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ExportFormat.Pdf">
            <summary>
            PDF format
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListExportMode">
            <summary>
            Determines the way RadTreeList will handle the controls when exporting
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListExportMode.DefaultContent">
            <summary>
            The rendered contents will be exported directly.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListExportMode.RemoveControls">
            <summary>
            All controls except the images will be removed.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListExportMode.ReplaceControls">
            <summary>
            All controls that cannot be replaced by simple text will be removed. The rest of them will be converted to plain text.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListExportMode.RemoveAll">
            <summary>
            All controls including images will be removed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListExportSettings.ExportMode">
            <summary>
            Determines the way RadTreeList will treat the controls in the exported file. Default value is ExportAll.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListExportSettings.IgnorePaging">
            <summary>
            If enabled, exports all items regardless of the current page size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListExportSettings.OpenInNewWindow">
            <summary>
            Determines the way the exported file will be sent to the browser. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListExportSettings.FileName">
            <summary>
            Sets or gets the name of the exported file
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.AllowActiveRowCycle">
            <summary>        
            This property set whether active row should be set to first/last item when current item is last/first 
            and down/up key is pressed (default is <strong>false</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.AllowSubmitOnEnter">
            <summary>        
            This property set whether the edit form will be submited when the ENTER key is pressed 
            (default is <strong>false</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.FocusKey">
            <summary>
            This property sets the key that is used to focus RadTreeList. It is always used with <strong>CTRL</strong> key combination.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.InitInsertKey">
            <summary>
            This property sets the key that is used to open insert edit form of RadTreeList. It is always used with <strong>CTRL</strong> key combination.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.ExpandChildItemsKey">
            <summary>        
            This property set the key that is used for expanding the active row's child items
            (default key is <strong>Right arrow</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListKeyboardNavigationSettings.CollapseChildItemsKey">
            <summary>        
            This property set the key that is used for collapsing the active row's child item
            (default key is <strong>Left arrow</strong>)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListDeleteContext">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListDeleteItemsEnumerable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEnumerableHelper">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEnumerableHelper.TreeListDataItemEvaluator.TypeDefaultValue(System.Object,System.String)">
            <summary>
            Builds default value for given property type.
            </summary>
            <param name="sourceItem">source item of the property</param>
            <param name="propertyName">property name</param>
            <returns>Returns value representing default value of given value type. If property type is not value returns null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEnumerableHelper.TreeListDataItemEvaluator.TypeDefaultValue(System.ComponentModel.PropertyDescriptor)">
            <summary>
            Builds default value for given property type.
            </summary>
            <param name="descriptor">PropertyDescriptor of already extracted property</param>
            <returns>Returns value representing default value of given value type. If property type is not value returns null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListItemDecorator.PrepareCells(System.Int32,Telerik.Web.UI.TreeListColumn[])">
            <summary>
            Adjust CSS classes, column span and visibility of column cells
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListFooterItemDecorator.PrepareCells(System.Int32,Telerik.Web.UI.TreeListColumn[])">
            <summary>
            Adjust CSS classes, column span and visibility of column cells
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListItem.PrepareItemStyle">
            <summary>Override this method to change the default logic for rendering the item</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListItem.FireCommandEvent(System.String,System.Object)">
            <summary>
            Use this method to simulate item command event that bubbles to 
            <see cref="T:Telerik.Web.UI.RadTreeList"/> and can be handled automatically or in a
            custom manner, handling <see cref="T:Telerik.Web.UI.RadTreeList"/>.ItemCommand event.
            </summary>
            <param name="commandName">command to bubble, for example 'Page'
            </param>
            <param name="commandArgument">command argument, for example 'Next'
            </param>
        </member>
        <member name="P:Telerik.Web.UI.TreeListFooterItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEditableItem">
            <summary>
            Represents the base call for all editable items in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableItem.ExtractValues(System.Collections.IDictionary)">
            <summary>
            Extracts values for each column, using <see cref="M:Telerik.Web.UI.TreeListEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.TreeListEditableItem)"/>
            </summary>
            <param name="newValues">This dictionary to fill, this parameter should not be null</param>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEditableItem.UpdateValues(System.Object)">
            <summary>
            Extracts values for each column, using <see cref="M:Telerik.Web.UI.GridEditableColumn.FillValues(System.Collections.IDictionary,Telerik.Web.UI.GridEditableItem)"/> and updates values in provided object;
            </summary>
            <param name="objectToUpdate">The object that should be updated</param>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableItem.DataItem">
            <summary>
            Gets or sets the original data source object that the current treelist item is bound to.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableItem.IsInEditMode">
            <summary>
            Gets a value indicating whether the current item is in edit mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableItem.Edit">
            <summary>
            Gets or sets a value indicating whether the current item should be edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableItem.SavedOldValues">
            <summary>
            Gets the old values of the current edited item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditableItem.CanExtractValues">
            <summary>
            Gets a value indicating whether the current item can extract data values.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.InsertChildItem">
            <summary>
            Inserts a new item as a child item of the current <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.InsertChildItem(System.Object)">
            <summary>
            Inserts a new item as a child item of the current <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance.
            The insert item will be databound to the specified object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.GetParentItemByHierarchyIndex(Telerik.Web.UI.TreeListHierarchyIndex)">
            <summary>
            Returns the parent item (if resolved) for the item with the given parent hierarchy index
            </summary>
            <param name="index">the parent hierarchical index of the child item</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.GetChildItems">
            <summary>
            Gets the resolved child items of the item
            </summary>
            <returns>List of <see cref="T:Telerik.Web.UI.TreeListDataItem"/></returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.GetChildItemsRecursive">
            <summary>
            Returns a flat list of all existing child items (recursively) of the current item.
            Items are listed as a result of depth-dirst search.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDataItem.HasKeys(System.Collections.IDictionary)">
            <summary>
            Gets or sets a value indicating whether the current item contains the specified keys.
            Used to identify a TreeListDataItem by its keys
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.Edit">
            <summary>
            Gets or sets a value indicating whether the current item should be edited.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.IsChildInserted">
            <summary>
            Gets or sets a value indicating whether a child item should be inserted into the current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.EditFormItem">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.TreeListEditFormItem"/> instance that is used to edit values from the
            current <see cref="T:Telerik.Web.UI.TreeListDataItem"/> when the current item is in edit mode 
            and <see cref="P:Telerik.Web.UI.RadTreeList.EditMode"/> is set to <see cref="F:Telerik.Web.UI.TreeListEditMode.EditForms"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.InsertItem">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.TreeListEditableItem"/> instance that is used to insert 
            a new data item as a child of the current <see cref="T:Telerik.Web.UI.TreeListDataItem"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.ParentItem">
            <summary>
            Returns the parent item (if resolved) of the current item. This property is readonly.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataItem.ChildItems">
            <summary>
            Returns a collection of the visible child items of the current item. This property is readonly.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListDataInsertItem">
            <summary>
            Represents an insert item when <see cref="P:Telerik.Web.UI.RadTreeList.EditMode"/> is set to <see cref="F:Telerik.Web.UI.TreeListEditMode.InPlace"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataInsertItem.ParentItem">
            <summary>
            Gets the parent <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance for which this edit form item is created.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataInsertItem.IsRoot">
            <summary>
            Gets a value indicating whether the current item is inserted at the root level.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDataInsertItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditFormItem.EditFormUserControlID">
            <summary>
            Gets the ID that is given to the UserControl edit form when the 
            EditFormType property is set to WebUserControl.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormItem.EditFormCell">
            <summary>
            Gets the cell in which the edit form will be instantiated during databinding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormItem.ParentItem">
            <summary>
            Gets the parent <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance for which this edit form item is created.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormInsertItem.IsRoot">
            <summary>
            Gets a value indicating whether the current item is inserted at the root level.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListHeaderItem.Item(System.String)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.PagerButtonType">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListPagerButtonBuilder">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.PrepareTextFormat(Telerik.Web.UI.PagerButtonType,System.String)">
            <summary>
            Formats the text depending on PagerButtonType. Text for LinkButton is wrapped with span tag.
            </summary>
            <param name="type">Value from PagerButtonType enum.</param>
            <param name="text">Text to be formatted.</param>
            <returns>Returns string representing content of button.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.EnsureEnableState(System.Web.UI.WebControls.WebControl,System.String)">
            <summary>
            Ensures button Enabled property. If button command argumetn is same as current page, button
            will be disabled.
            </summary>
            <param name="button">Button instance to be validated.</param>
            <param name="commandArgument">Command argument for the button.</param>
            <returns>Returns same button with Enabled property set.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateButtonField(Telerik.Web.UI.PagerButtonType,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Creates button control from one of the following type: LinkButton, PushButton, ImageButton
            or HyperLink if AllowSEOPaging is set to "true". Button Enabled state will be validated 
            depending on current page index.
            </summary>
            <param name="type">PagerButtonType enumerator</param>
            <param name="text">Text shown as content the button control</param>
            <param name="toolTip">Tooltip of the button</param>
            <param name="commandName">Command that button triggers</param>
            <param name="commandArgument">Command argument which will be passed along with CommandName</param>
            <param name="className">CssClass that will be applied on the button</param>
            <returns>Returns button control of type: LinkButton, PushButton, ImageButton
            or HyperLink if SEO paging.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateButtonFieldForCommand(Telerik.Web.UI.PagerButtonType,System.String,System.String,System.String,System.String)">
            <summary>
            Create button control for one of the following types: LinkButton, PushButton, ImageButton
            </summary>                
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreatePrevButton">
            <summary>
            Method for creating "Previous" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateNextButton">
            <summary>
            Method for creating "Next" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateFirstButton">
            <summary>
            Method for creating "First" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateLastButton">
            <summary>
            Method for creating "Last" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerButtonBuilder.CreateNumericButton(System.String,System.Int32)">
            <summary>
            Method for creating all numeric pager buttons.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListPagerItem.GetButtonForArgument(System.String)">
            <summary>
            Creates copy of button used for the pager in RadTreeList control.
            </summary>
            <param name="commandArgument">
            must be on of the following: 
                FirstPageCommandArgument,
                NextPageCommandArgument,
                PrevPageCommandArgument,
                LastPageCommandArgument
            </param>
            <example>
            GetButtonForArgument(RadTreeList.FirstPageCommandArgument)
            </example>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.UI.TreeListPagerMode">
            <summary>
            The mode of the pager defines what buttons will be displayed and how the pager
            will navigate through the pages.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.NextPrev">
            <summary>The treelist Pager will display only the Previous and Next link buttons.</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.NumericPages">
            <summary>The treelist Pager will display only the page numbers as link buttons.</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.NextPrevAndNumeric">
            <summary>
            The treelist Pager will display the Previous button, page numbers,
            the Next button, the PageSize dropdown and information about the items and pages count.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.NextPrevNumericAndAdvanced">
            <summary>
            The treelist Pager will display the Previous button, then the page numbers and then
            the Next button. On the next Pager row, the Pager will display text boxes for
            navigating to a specific page and setting the Page size (number of items per
            page).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.Advanced">
            <summary>
            The treelist Pager will display text boxes for navigating to a specific page and
            setting the Page size (number of items per page).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerMode.Slider">
            <summary>
            The grid Pager will display a slider for very fast and AJAX-based navigation
            through grid pages.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListPagerPosition">
            <summary>This enumeration defines the possible positions of the pager item</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerPosition.Bottom">
            <summary>
            The Pager item will be displayed on the bottom of the treelist. (Default
            value)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerPosition.Top">
            <summary>The Pager item will be displayed on the top of the treelist.</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListPagerPosition.TopAndBottom">
            <summary>
            The Pager item will be displayed both on the bottom and on the top of the
            treelist.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListPagerStyle">
            <summary>
             RadTreeList use instance of this class to set style of thir PagerItem-s when rendering
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListTableItemStyle">
            <summary>
            Summary description for TreeListTableItemStyle.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListTableItemStyle.IsDefault">
            <summary>
            Returns 'True' if none of the properties have been set
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.IsDefault">
            <value>Returns <strong>true</strong> if none of the properties have been set.</value>
            <summary>
            Gets a value indicating whether the default pager will be used, i.e. no
            customizations have been made.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.IsPagerOnBottom">
            <summary>
            Gets a value indicating whether the pager is displayed on the bottom of the
            treelist.
            </summary>
            <value>
            Returns <strong>true</strong> if the pager will be displayed on the bottom of the
            treelist. Otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.IsPagerOnTop">
            <summary>
            Gets a value indicating whether the pager is displayed on the top of the
            treelist.
            </summary>
            <value>
            Returns <strong>true</strong> if the pager will be displayed on the top of the
            treelist. Otherwise <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.Mode">
            <summary>
                Gets or sets the mode of Telerik RadTreeList Pager. The mode defines what the pager
                will contain. This property accepts as values only members of the <see cref="T:Telerik.Web.UI.TreeListPagerMode">RadTreeListPagerMode Enumeration</see>.
            </summary>
            <value>
            Returns the pager mode as one of the values of the RadTreeListPagerMode Enumeration.
            </value>        
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.FirstPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.NextPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'next' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.LastPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'last' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PrevPageToolTip">
            <summary>
            ToolTip that would appear if Mode is PrevNext for 'prev' page button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageButtonCount">
            <summary>
                Gets or sets the number of buttons that would be rendered if pager Mode is
                <see cref="F:Telerik.Web.UI.TreeListPagerMode.NumericPages"/>
            </summary>
            <value>
            returns the number of button that will be displayed. The default value is 10
            buttons.
            </value>
            <remarks>
            By default 10 buttons will be displayed. If the number of treelist pages is greater
            than 10, ellipsis will be displayed.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.Position">
            <summary>
                Gets or sets the Position of pager item(s).Accepts only values, members of the
                <see cref="T:Telerik.Web.UI.TreeListPagerPosition">RadTreeListPagerPosition Enumeration</see>.
            </summary>
            <value>
            Returns the Pager position as a value, member of the RadTreeListPagerPosition Enumeration.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.AlwaysVisible">
            <remarks>
            In order to display the TreeList pager regardless of the number of records returned
            and the page size, you should set this property to
            <strong>true</strong>. Its default value is <strong>false</strong>.
            </remarks>
            <summary>
            Gets or set a value indicating whether the Pager will be visible regardless of
            the number of items. (See the remarks)
            </summary>
            <value>
            	<strong>true</strong>, if pager will be displayed, regardless of the number of
            TreeList items, othewise <strong>false</strong>. By fefault it is
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageSliderIncreaseToolTip">
            <summary>
            ToolTip that would appear if Mode is Slider for 'Increase' button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageSliderDecreaseToolTip">
            <summary>
            ToolTip that would appear if Mode is Slider for 'Decrease' button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageSliderDragToolTip">
            <summary>
            ToolTip that would appear if Mode is Slider for 'Drag' button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageSliderPagerLabel">
            <summary>
            Text that will appear if Mode is Slider for current page.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.ChangePageSizeLabelText">
            <summary>
            Text that will appear before the dropdown for changing the page size.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.ChangePageSizeLinkButtonText">
            <summary>
            Text for the 'Change' button when Mode is Advanced.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.GoToPageLinkButtonText">
            <summary>
            Text for the 'Go' button when Mode is Advanced. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.GoToPageLabelText">
            <summary>
            Text that will appear before current page number when Mode is Advanced.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPagerStyle.PageOfLabelText">
            <summary>
            Text that will appear after the current page number and before count of all pages when Mode is Advanced.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListDetailTemplateItem.DataItem">
            <summary>
            Gets or sets the original data source object that the current treelist item is bound to.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.CreateDataSourceSelectArguments">
            <summary>
            Creates a default 
            <see cref="T:System.Web.UI.DataSourceSelectArguments"/> object used
            by the data-bound control if no arguments are specified.
            </summary>
            <returns>
            A <see cref="T:System.Web.UI.DataSourceSelectArguments"/>
            initialized to 
            <see cref="P:System.Web.UI.DataSourceSelectArguments.Empty"/>. 
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PopulateDataKeys(System.Object)">
            <exception cref="T:System.ArgumentException">There was a problem extracting
            DataKeyValues from the DataSource. Please ensure that DataKeyNames
            are specified correctly and all fields specified exist in the
            DataSource.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExtractDataKeyValue(System.Object,System.String)">
            <exception cref="T:System.ArgumentNullException">container is null.
                           
                               -or- 
                           propName is null or an empty string (""). 
                           </exception>
            <exception cref="T:System.Web.HttpException">
                               The object in container does not have the property specified by propName. 
                           </exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.SaveControlState">
            <summary>
            Saves any <see cref="T:Telerik.Web.UI.RadTreeList"/> control state changes that have
            occurred since the time the page was posted back to the server.
            </summary>
            <returns>
            Returns the <see cref="T:Telerik.Web.UI.RadTreeList"/>'s current state. If there is
            no state associated with the control, this method returns null.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.LoadControlState(System.Object)">
            <summary>
            Restores control-state information from a previous page request that
            was saved by the 
            <see cref="M:System.Web.UI.Control.SaveControlState"/> method.
            </summary>
            <param name="savedState">An <see cref="T:System.Object"/> that
            represents the control state to be restored. 
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnInit(System.EventArgs)">
            <summary>
            Handles the <see cref="E:System.Web.UI.Control.Init"/> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> object that contains the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnLoad(System.EventArgs)">
            <summary>
            Handles the <see cref="E:System.Web.UI.Control.Load"/> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"/> object that
            contains event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnNeedDataSource(Telerik.Web.UI.TreeListNeedDataSourceEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadTreeList.NeedDataSource"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnChildItemsDataBind(Telerik.Web.UI.TreeListChildItemsDataBindEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadTreeList.NeedDataSource"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.DataBind">
            <exception cref="T:System.InvalidOperationException">You should not call
            DataBind in <see cref="E:Telerik.Web.UI.RadTreeList.NeedDataSource"/> event handler. DataBind would take place
            automatically right after <see cref="E:Telerik.Web.UI.RadTreeList.NeedDataSource"/> handler finishes execution.
            </exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformUpdate(Telerik.Web.UI.TreeListEditableItem)">
            <summary>
                Perform asynchronous update operation, using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource"/> control API and the
                Rebind method. Please, make sure you have specified the correct
                <strong>DataKeyNames</strong> for the <see cref="T:Telerik.Web.UI.RadTreeList"/>. When the
                asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadTreeList"/> will fire
                <see cref="E:Telerik.Web.UI.RadTreeList.ItemUpdated"/> event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformUpdate(Telerik.Web.UI.TreeListEditableItem,System.Boolean)">
            <summary>
                Perform asynchronous update operation, using the <see cref="P:System.Web.UI.WebControls.BaseDataBoundControl.DataSource"/>
                control API. Please make sure you have specified the correct 
                <strong>DataKeyNames</strong> for the
                <see cref="T:Telerik.Web.UI.RadTreeList"/>. When the asynchronous operation calls
                back, <see cref="T:Telerik.Web.UI.RadTreeList"/> will fire
                <see cref="E:Telerik.Web.UI.RadTreeList.ItemUpdated"/> event. The boolean
                property defines if <see cref="T:Telerik.Web.UI.RadTreeList"/> will <see cref="M:Telerik.Web.UI.RadTreeList.Rebind"/> after
                the update.
            </summary> 
            <exception cref="T:System.ArgumentNullException"><c>editedItem</c> is 
            <c>null</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformInsert(Telerik.Web.UI.TreeListEditableItem)">
            <summary>
            Performs asynchronous insert operation, using the <see cref="T:System.Web.UI.DataSourceControl"/> API, then
            Rebinds. When the asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadTreeList"/> will fire
            <see cref="E:Telerik.Web.UI.RadTreeList.ItemInserted"/> event.
            </summary>
            <exception cref="T:System.InvalidOperationException">Insert item is available only when RadTreeList is in insert mode.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformInsert(Telerik.Web.UI.TreeListEditableItem,System.Boolean)">
            <summary>
            Performs asynchronous insert operation, using the <see cref="T:System.Web.UI.DataSourceControl"/> API, then
            Rebinds. When the asynchronous operation calls back, <see cref="T:Telerik.Web.UI.RadTreeList"/> will fire
            <see cref="E:Telerik.Web.UI.RadTreeList.ItemInserted"/> event.
            </summary>
            <exception cref="T:System.ArgumentNullException"><c>insertItem</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformDelete(Telerik.Web.UI.TreeListDataItem)">
            <summary>
            Perform asynchronous delete operation, using the 
            <see cref="T:System.Web.UI.DataSourceControl"/> API the Rebinds the grid. Please
            make sure you have specified the correct <strong>
            <see cref="P:Telerik.Web.UI.RadTreeList.DataKeyNames"/></strong> for the 
            <see cref="T:Telerik.Web.UI.RadTreeList"/>. When the asynchronous operation calls
            back, <see cref="T:Telerik.Web.UI.RadTreeList"/> will fire 
            <see cref="E:Telerik.Web.UI.RadTreeList.ItemDeleted"/> event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.PerformDelete(Telerik.Web.UI.TreeListDataItem,System.Boolean)">
            <summary>
            Perform delete operation, using the <see cref="T:System.Web.UI.DataSourceControl"/>
            API. Please make sure you have specified the correct 
            <see cref="P:Telerik.Web.UI.RadTreeList.DataKeyNames"/> for the <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExtractValuesFromItem(System.Collections.IDictionary,Telerik.Web.UI.TreeListEditableItem,System.Boolean)">
            <summary>
                The passed <see cref="T:System.Collections.IDictionary"/> object (like <see cref="T:System.Collections.Hashtable"/> for example) will be filled with the
                names/values of the corresponding <see cref="T:Telerik.Web.UI.TreeListEditableItem"/>'s bound values and data-key values if included. 
            </summary>
            <exception cref="T:System.ArgumentNullException"><c>dataItem</c> is <c>null</c>.</exception>
            <exception cref="T:System.ArgumentNullException"><c>newValues</c> is <c>null</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnItemDeleted(Telerik.Web.UI.TreeListDeletedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadTreeList.ItemDeleted"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnItemUpdated(Telerik.Web.UI.TreeListUpdatedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadTreeList.ItemUpdated"/> event. 
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnExporting(Telerik.Web.UI.TreeListExportingEventArgs)">
            <summary>
            Raises the TreeList <see cref="E:Telerik.Web.UI.RadTreeList.Exporting"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnPdfExporting(Telerik.Web.UI.TreeListPdfExportingEventArgs)">
            <summary>
            Raises the TreeList <see cref="E:Telerik.Web.UI.RadTreeList.PdfExporting"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnItemDrop(Telerik.Web.UI.TreeListItemDragDropEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.UI.RadTreeList.ItemDrop"/> event
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.InsertItem">
            <summary>
            Inserts a new root level item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.InsertItem(System.Object)">
            <summary>
            Inserts a new root level item. The insert form will be 
            databound to the specified data item object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.InsertChildItem(Telerik.Web.UI.TreeListDataItem)">
            <summary>
            Inserts a new item as a child item of the specified <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance.
            </summary>
            <param name="parentItem">
            The <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance for which a child item is to be inserted.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.InsertChildItem(Telerik.Web.UI.TreeListDataItem,System.Object)">
            <summary>
            Inserts a new item as a child item of the specified <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance.
            The insert item will be databound to the specified object.
            </summary>
            <param name="parentItem">
            The <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance for which a child item is to be inserted.
            </param>
            <param name="newDataItem">
            The object that will be passed as data context to the insert item.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ApplyRecursiveSelection(Telerik.Web.UI.TreeListDataItem,System.Boolean)">
            <summary>
            Recursively selects or deselects all child items of a RadTreeList item specified by its hierarchical index.
            Updates the selected state of all the parent items of the specified item to reflect the recursive selection.
            </summary>
            <param name="item">The RadTreeListDataItem instance</param>
            <param name="selected">The selected state of the item</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ApplyRecursiveSelection(Telerik.Web.UI.TreeListHierarchyIndex,System.Boolean)">
            <summary>
            Recursively selects or deselects all child items of a RadTreeList item specified by its hierarchical index.
            Updates the selected state of all the parent items of the specified item to reflect the recursive selection.
            </summary>
            <param name="hierarchyIndex">The hierarchical index of a RadTreeListDataItem</param>
            <param name="selected">The selected state of the item</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ApplyChildSelectionRecursive(Telerik.Web.UI.TreeListSourceItem,System.Boolean)">
            <summary>
            Select or deselect all child items in all levels
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ApplyParentSelectionRecursive(Telerik.Web.UI.TreeListSourceItem,System.Boolean)">
            <summary>
            Select or deselect parent items in all levels
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.SetItemSelectedIfExists(Telerik.Web.UI.TreeListHierarchyIndex,System.Boolean)">
            <summary>
            Sets the Selected property of a tree list item if the item exists. If not, only
            adds to or removes the item index from the SelectedIndexes collection
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.SelectAllItems">
            <summary>
            Selects all RadTreeList items
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.DeselectAllItems">
            <summary>
            Deselects all RadTreeList items
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.GetAllItemsSelected">
            <summary>
            Gets a value indicating whether all items are selected in RadTreeList. When recursive
            selection is enabled, returns true if all items in all levels are selected. If recursive
            selection is disabled, returns true if items in the current visible page are selected.
            Otherwise returns false.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExpandAllItems">
            <summary>
            Expands all items.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.CollapseAllItems">
            <summary>
            Collapses all items.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExportToPdf">
            <summary>
            Exports RadTreeList content to PDF format
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExpandToLevel(System.Int32)">
            <summary>
            Expands all RadTreeList items to the specified level.
            </summary>
            <param name="level">The nested level to expand to</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ExpandItemToLevel(Telerik.Web.UI.TreeListDataItem,System.Int32)">
            <summary>
            Expands the specified TreeListDataItem to the specified level.
            </summary>
            <param name="item">The TreeListDataItem to expand</param>
            <param name="level">The nested level to expand to</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.GetColumn(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.TreeListColumn"/> based on its <see cref="P:Telerik.Web.UI.TreeListColumn.UniqueName"/>.
            Throws ArgumentException if the specified column is not found.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.GetColumnSafe(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.TreeListColumn"/> based on its <see cref="P:Telerik.Web.UI.TreeListColumn.UniqueName"/>.
            Return null if the specified column is not found.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.GetItems(Telerik.Web.UI.TreeListItemType[])">
            <summary>
            Returns a collection of <see cref="T:Telerik.Web.UI.TreeListItem"/> objects based on their
                 <see cref="P:Telerik.Web.UI.TreeListItem.ItemType"/>.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.TreeListItem"/>s collection of objects based on their
                <see cref="P:Telerik.Web.UI.TreeListItem.ItemType"/>.
            </returns>
            <param name="includeItemTypes">
            The <see cref="P:Telerik.Web.UI.TreeListItem.ItemType"/>, which will be used as a criteria for
            the collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.ClearSelectedItems">
            <summary>
            Removes all selected items that belong to <see cref="T:Telerik.Web.UI.RadTreeList"/> instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnItemCommand(Telerik.Web.UI.TreeListCommandEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadTreeList.ItemCommand"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnAutoGeneratedColumnCreated(Telerik.Web.UI.TreeListAutoGeneratedColumnCreatedEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadTreeList.AutoGeneratedColumnCreated"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeList.OnCreateCustomColumn(Telerik.Web.UI.TreeListCreateCustomColumnEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadTreeList.CreateCustomColumn"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.CustomPageSize">
            <summary>
            Stores a custom PageSize value if such is set when page mode is NextPrevAndNumeric
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AutoGeneratedColumns">
            <summary>
                Get an array of automatically generated columns. This array is available when
                <see cref="P:Telerik.Web.UI.RadTreeList.AutoGenerateColumns"/> is set to true. 
            </summary>
            <value>An array of automatically generated columns.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.DetailTemplate">
            <summary>
            Gets or sets the ItemTemplate, which is rendered with each tree list item.        
            </summary>        
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.DataSourceIsAssigned">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ItemState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.NeedDataSource">
            <summary>
            Raised when the <see cref="T:Telerik.Web.UI.RadTreeList"/> is about to be bound and the data source must be assigned. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ChildItemsDataBind">
            <summary>
            Raised when the TreeList item is about to be bound. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowRecursiveDelete">
            <summary>
            Enables recursive delete.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ItemDeleted">
            <summary>
            Occurs when a delete operation is requested, after the 
            <see cref="T:Telerik.Web.UI.RadTreeList"/> control deletes the item.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ItemInserted">
            <summary>
            Occurs when an insert operation is requested, after the <see cref="T:Telerik.Web.UI.RadTreeList"/>
            control has inserted the item in the data source.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ItemUpdated">
            <summary>
            Occurs when the Update command is fired from any <see cref="T:Telerik.Web.UI.TreeListEditableItem"/>
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.Exporting">
            <summary>
            Triggered when the export output is about to be sent to the file.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.PdfExporting">
            <summary>
            Raised before the HTML code is parsed to PDF binary
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ItemDrop">
            <summary>
            Occurs when a RadTreeList item is dragged and dropped on another item or an HTML element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ClientDataKeyNames">
            <summary>
            Gets or sets an array of data-field names that will be used to
            populate the
            <see cref="P:Telerik.Web.UI.RadTreeList.ClientDataKeyValues"/> collection, when the 
            <see cref="T:Telerik.Web.UI.RadTreeList"/>control is databinding. This collection can later be accessed on the client,
            to get the key value(s).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.DataKeyNames">
            <summary>
            Gets or sets an array of data-field names that will be used to
            populate the
            <see cref="P:Telerik.Web.UI.RadTreeList.DataKeyValues"/> collection, when the 
            <see cref="T:Telerik.Web.UI.RadTreeList"/>control is databinding.
            </summary>        
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ParentDataKeyNames">
            <summary>
            Gets or sets an array of data-field names that will be used to
            populate the
            <see cref="P:Telerik.Web.UI.RadTreeList.ParentDataKeyValues"/> collection, when the 
            <see cref="T:Telerik.Web.UI.RadTreeList"/>control is databinding.
            </summary>        
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ClientSettings">
            <summary>
            Gets a reference to the 
            <see cref="T:Telerik.Web.UI.TreeListClientSettings"/> object that allows
            you to set the properties of the client-side behavior and
            appearance in a Telerik <see cref="T:Telerik.Web.UI.RadTreeList"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ExportSettings">
            <summary>
            Returns a reference to the <see cref="T:Telerik.Web.UI.TreeListExportSettings"/> object that contains export-specific settings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.CurrentPageIndex">
            <summary>
            Gets or sets a value indicating the index of the currently active page in case
            paging is enabled (<see cref="P:Telerik.Web.UI.RadTreeList.AllowPaging"/> is
            <strong>true</strong>).
            </summary>
            <value>The index of the currently active page in case paging is enabled.</value>
            <seealso cref="P:Telerik.Web.UI.RadTreeList.AllowPaging">AllowPaging Property</seealso>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.PageSize">
            <summary>
             Specify the maximum number of items that would appear in a page,
             when paging is enabled by <see cref="P:Telerik.Web.UI.RadTreeList.AllowPaging"/> property.
             Default value is 10.  
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"><c>value</c> is out of range.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowLoadOnDemand">
            <summary>
            Enables TreeListItem's child items to be loaded on demand.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.HideExpandCollapseButtonIfNoChildren">
            <summary>
            Enables TreeListItem's child items to be loaded on demand.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowPaging">
            <summary>
            Gets or sets a value indicating whether the automatic paging feature is
            enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.PageCount">
            <summary>
            Gets the number of pages required to display the records of the data
            source in a <see cref="T:Telerik.Web.UI.RadTreeList"/>control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.FooterItems">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.SelectedItems">
            <summary>Gets a collection of the currently selected
            RadTreeListDataItem</summary>
            <value>Returns a <see cref="T:Telerik.Web.UI.TreeListDataItemCollection"/> of all
            selected data items.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.EditItems">
            <summary>
            Gets a collection of currently edited <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instances.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.InsertItems">
            <summary>
            Gets a collection of currently inserted <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instances.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.IsItemInserted">
            <summary>
            Gets or sets a value indicating whether a root item is inserted in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            Setting this property to true will show the root insert item if not already shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowMultiItemSelection">
            <summary>
            Gets or sets a value indicating whether you will be able to select multiple items in Telerik RadTreeList. 
            By default this property is set to false. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowMultiItemEdit">
            <summary>
            Gets or sets a value indicating whether multiple items can be simultaneously edited in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            Default value is false.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.SortExpressions">
            <summary>
            Gets a collection of sort expressions for <see cref="T:Telerik.Web.UI.RadTreeList"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowMultiColumnSorting">
            <summary>
                Gets or sets the value indicating wheather more than one column can be sorted in a
                single <strong>RadTreeList</strong>. The order is the same as the sequence of
                expressions in <see cref="P:Telerik.Web.UI.RadTreeList.SortExpressions"/>.
            </summary>       
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowNaturalSort">
            <summary>
            Gets or sets the value indicated whether the no-sort state when changing sort
            order will be allowed.
            </summary>
            <value>
            	<strong>true</strong>, if the no-sort state when changing sort order will be
            allowed; otherwise, <strong>false</strong>. The default value is
            <strong>true</strong>.
            </value>     
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowSorting">
            <summary>
            	<para>Gets or sets a value indicating whether the sorting feature is enabled.</para>
            </summary>       
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AllowRecursiveSelection">
            <summary>
            Gets or sets a value indicating whether child items will be selected recursively when a RadTreeList item is selected.
            Setting this property to true automatically enables MultiItemSelection in RadTreeList. Default value is false.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.EditMode">
            <summary>
            Gets or sets the editing mode for RadTreeList.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.EditFormSettings">
            <summary>
            Contains various data editing related properties.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ValidationSettings">
            <summary>
            Contains validation settings for <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.AutoGenerateColumns">
            <summary>
            Enable/Disable auto genrated columns
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.Caption">
            <summary>
            	<para>Gets or sets a string that specifies a brief description of a
                <a href="Telerik.Web.UI~Telerik.Web.UI.RadTreeList.html">RadTreeList</a>.
                Related to Telerik RadTreeList accessibility compliance.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.Summary">
            <summary>Gets or sets the 'summary' attribute for the 
            <a href="Telerik.Web.UI~Telerik.Web.UI.RadTreeList.html">RadTreeList</a>.
            </summary>
            <remarks>
            This attribute provides a summary of the table's purpose and structure for user
            agents rendering to non-visual media such as speech and Braille. This property is a
            part of Telerik RadTreeList accessibility features.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadTreeList.Caption">Caption Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.LocalizationPath">
            <summary>
            Gets or sets a value indicating where RadTreeList will look for its .resx localization file.
            By default this file should be in the App_GlobalResources folder. However, if you cannot put
            the resource file in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource file.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadTreeListResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the grid localization file from any location in the web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.ShowFooter">
            <summary>
            Gets or set a value indicating whether the footer item of the TreeList will be
            shown.
            </summary>
            <remarks>
            Setting this property will affect all TreeList tables, unless they specify otherwise
            explicitly.
            </remarks>
            <value>The default value of this property is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.PagerTemplate">
            <summary>
            Gets or sets the custom content for the pager item in a RadTreeList control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.NoRecordsTemplate">
            <summary>
            Template that will be displayed if there are no records in the DataSource assigned
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.EnableNoRecordsTemplate">
            <summary>
                Gets or sets a value indicating whether <strong>RadTreeList</strong> will show
                NoRecordsTemplate if there is no items to display.
            </summary>
            <value>
            	<strong>true</strong> if NoRecordsTemplate usage is enabled;
                otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.NoRecordsText">
            <summary>
                Gets or sets the text that will be displayed in there is no
                NoRecordsTemplate defined and no records in the
                <strong>RadTreeList</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeList.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.ItemCommand">
            <summary>
            Raised when a button in a <see cref="T:Telerik.Web.UI.RadTreeList"/> control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.PageIndexChanged">
            <summary>Fires when a paging action has been performed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.PageSizeChanged">
            <summary>Fires when <see cref="P:Telerik.Web.UI.RadTreeList.PageSize"/> has been changed.</summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.AutoGeneratedColumnCreated">
            <summary>
            Raised when a auto generated column is created. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeList.CreateCustomColumn">
            <summary>
            Raised when a custom column is recreated on postback.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditMode.InPlace">
            <summary>
            RadTreeList will display the column editors inline.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditMode.EditForms">
            <summary>
            RadTreeList will display the grid column editors in auto-generated 
            edit form below the edited item.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditMode.PopUp">
            <summary>
            RadTreeList will display a floating, movable popup window for editing.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnTreeListCreating">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when the RadTreeList client component is initializing
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnTreeListCreated">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when the RadTreeList client component is fully initialized
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnTreeListDestroying">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when the RadTreeList client component is about to be disposed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemCreated">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when each of the RadTreeListDataItem client components is created.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemSelecting">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a RadTreeListDataItem is about to be selected on the client. This event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemSelected">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a RadTreeListDataItem is selected on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDeselecting">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a RadTreeListDataItem is about to be deselected on the client. This event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDeselected">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a RadTreeListDataItem is deselected on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemClick">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a data row is clicked in RadTreeList.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnScroll">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a RadTreeList is scrolled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDblClick">
            <summary>
            Gets or sets the name of a client-side function that will be fired
            when a data row is double-clicked in RadTreeList.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDragStarted">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadTreeList"/> item is about to be dragged.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDragging">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadTreeList"/> item is dragged.
            </summary>
            [DefaultValue("")]
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDropping">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadTreeList"/> item 
            is about to be dropped after dragging. This event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemDropped">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadTreeList"/> item
            is dropped after dragging. This event cannot be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientEvents.OnItemContextMenu">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadTreeList"/> item
            is right clicked to show its context menu.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListItemDragDropEventArgs">
            <summary>
            Contains event data in an <see cref="E:Telerik.Web.UI.RadTreeList.ItemDrop"/> event.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.DraggedItems">
            <summary>
            Gets the collection of dragged items
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.DestinationDataItem">
            <summary>
            Gets the destination <see cref="T:Telerik.Web.UI.TreeListDataItem"/> instance. Can be null.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.DestinationHeaderItem">
            <summary>
            Gets the destination <see cref="T:Telerik.Web.UI.TreeListHeaderItem"/> instance. Can be null.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.HtmlElement">
            <summary>
            Gets the client-side ID attribute of the HTML element that is the drop target.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.UpdatedParentKeyValues">
            <summary>
            Gets the collection of parent data key values that will be assigned to the dragged items 
            when automatic item reordering is enabled. To change the parent-child relations between
            the dragged items and the destination item, each item in the DraggedItems collection 
            will have its parent data key values updated with values in this collection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.Canceled">
            <summary>
            Gets or sets a value indicating whether the event should be canceled. Canceling
            an <see cref="E:Telerik.Web.UI.RadTreeList.ItemDrop"/> event will prevent automatic item reordering when binding
            to data source controls through DataSourceID.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListItemDragDropEventArgs.ExpandTargetItem">
            <summary>
            Gets or sets a value indicating whether the target <see cref="T:Telerik.Web.UI.TreeListDataItem"/> should
            be expanded after an automatic reorder operation. Meaningful when automatic reordering
            is enabled in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.EditColumn">
            <summary>
            Set properties of the update-cancel buttons column that appears in an edit form
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.ColumnsCount">
            <summary>
            Number of vertical columns to split all edit fields on the form when it is autogenerated.
            Each TreeListEditableColumn has a <see cref="P:Telerik.Web.UI.TreeListEditableColumn.EditFormColumnIndex"/> 
            to choose the column where the editor would appear.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.CaptionDataField">
            <summary>
            Gets or sets the DataField from <see cref="T:Telerik.Web.UI.RadTreeList"/>'s data source that will
            be used with the <see cref="P:Telerik.Web.UI.TreeListEditFormSettings.CaptionFormatString"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.CaptionFormatString">
            <summary>
            Gets or sets the format of the caption text that will be shown on top of  edit form 
            items in <see cref="T:Telerik.Web.UI.RadTreeList"/>. If this property is empty, no caption will be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.InsertCaption">
            <summary>
            Gets or sets the caption text that will be shown on top of insert forms in
            <see cref="T:Telerik.Web.UI.RadTreeList"/>. If this property is empty, no caption will be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.EditFormType">
            <summary>
            Specifies the type of the edit form.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.UserControlPath">
            <summary>
            Specifies the path to the <see cref="T:System.Web.UI.UserControl"/> that will be instantiated
            as the edit form in <see cref="T:Telerik.Web.UI.RadTreeList"/>, if RadTreeList.EditFormType is
            set to TreeListEditFormType.WebUserControl. The path should be in the same 
            format as provided to the Page.LoadControl method.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormTemplate">
            <summary>
            Specifies the template that will be instantiated as the edit form in <see cref="T:Telerik.Web.UI.RadTreeList"/>,
            if RadTreeList.EditFormType is set to TreeListEditFormType.Template.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormStyle">
            <summary>
            Style of the edit form container in <see cref="T:Telerik.Web.UI.TreeListEditFormItem"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormMainTableStyle">
            <summary>
            Style of the edit form's main table.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormTableStyle">
            <summary>
            Style of the edit form's table element in <see cref="T:Telerik.Web.UI.TreeListEditFormItem"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormCaptionStyle">
            <summary>
            Style of the edit form table row that shows the caption.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormTableItemStyle">
            <summary>
            Style of the edit form table rows.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormTableAlternatingItemStyle">
            <summary>
            Style of the alternating rows in the edit form table.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.FormTableButtonRowStyle">
            <summary>
            Style of the edit form table's footer row, where the Update/Insert/Cancel buttons appear.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListEditFormSettings.PopUpSettings">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.TreeListPopUpSettings"/> class providing properties
                related to PopUp EditForm.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEditFormType">
            <summary>
            Enumerates the supported edit form types in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditFormType.AutoGenerated">
            <summary>
            Form is auto-generated based on the editable columns.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditFormType.WebUserControl">
            <summary>
            The edit form is a WebUserControl specified by <see cref="P:Telerik.Web.UI.TreeListEditFormSettings.UserControlPath"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListEditFormType.Template">
            <summary>
            The edit form is instantiated from a template specified by <see cref="P:Telerik.Web.UI.TreeListEditFormSettings.FormTemplate"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPopUpSettings.Height">
            <summary>
            Gets or sets a value specifying the grid height in pixels (px).
            </summary>
            <value>the default value is 300px</value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPopUpSettings.Width">
            <summary>
            Gets or sets a value specifying the grid height in pixels (px).
            </summary>
            <value>the default value is 400px</value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPopUpSettings.CloseButtonToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the
            close button of the popup edit form.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPopUpSettings.ShowCaptionInEditForm">
            <summary>
            Gets or sets a value indicating whether the caption text is shown in the edit form.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPdfExportSettings.GetPaperKindDimensions(System.Drawing.Printing.PaperKind)">
            <summary>
            Returns the paper dimensions by given PaperKind value
            </summary>
            <param name="paperKind">PaperKind value</param>
            <remarks>
            PaperFormat.xml resource is based on the PaperKind enumeration. 
            <see href="http://msdn.microsoft.com/en-us/library/system.drawing.printing.paperkind.aspx" />
            <see href="http://www.edsebooks.com/paper/env.html" />
            </remarks>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPdfExportSettings.GetPaperWidth(System.Drawing.Printing.PaperKind)">
            <summary>
            Returns Unit object representing the page width
            </summary>
            <param name="paperKind">PdfPagerSize value</param>
            <returns>Page width.</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListPdfExportSettings.GetPaperHeight(System.Drawing.Printing.PaperKind)">
            <summary>
            Returns Unit object representing the page height
            </summary>
            <param name="paperKind">PdfPagerSize value</param>
            <returns>Page height.</returns>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.RotatePaper">
            <summary>
            This will swap the values of the PageWidth and PageHeight properties.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PaperSize">
            <summary>
            PDF paper size. Can be overriden by setting PageWidth and PageHeight explicitly.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.DefaultFontFamily">
            <summary>
            Determines the default font
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageTopMargin">
            <summary>
            Top page margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageBottomMargin">
            <summary>
            Bottom page margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageLeftMargin">
            <summary>
            Left page margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageRightMargin">
            <summary>
            Right page margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageHeaderMargin">
            <summary>
            Page header margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageFooterMargin">
            <summary>
            Page footer margin size
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageTitle">
            <summary>
            Page title contents will be displayed in the page header
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.UserPassword">
            <summary>
            Setting a value for this property will enable password protection
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.FontType">
            <summary>
            Determines whether to embed, link or subset the fonts, used in the PDF document
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageWidth">
            <summary>
            Determines the page width of the exported PDF file. Will override the PaperSize property, if used
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.PageHeight">
            <summary>
            Determines the page height of the exported PDF file. Will override the PaperSize property, if used
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.AllowAdd">
            <summary>
            Allow adding new content to the PDF file
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.AllowCopy">
            <summary>
            Allow copying PDF content to the clipboard
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.AllowPrinting">
            <summary>
            Allow printing the contents of the PDF document
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.AllowModify">
            <summary>
            Allow modifying the PDF contents
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Creator">
            <summary>
            Document creator
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Producer">
            <summary>
            Document producer
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Author">
            <summary>
            Document author
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Title">
            <summary>
            Document title
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Subject">
            <summary>
            Document subject
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListPdfExportSettings.Keywords">
            <summary>
            PDF document keywords
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListScrolling">
            <summary>
            Contains properties related to customizing the settings for scrolling operation
            in Telerik RadTreeList.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListScrolling.AllowScroll">
            <summary>
            Gets or sets a value indicating whether scrolling will be enabled in
            Telerik RadTreeList.
            </summary>
            <value>true, if scrolling is enabled, otherwise false (the default value).</value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListScrolling.ScrollHeight">
            <summary>
            Gets or sets a value specifying the RadTreeList height in pixels (px) beyond which the
            scrolling will be enabled.
            </summary>
            <value>the default value is 300px</value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListScrolling.SaveScrollPosition">
            <summary>
            Gets or sets a value indicating whether Telerik RadTreeList will keep the
            scroll position during postbacks.
            </summary>
            <remarks>
                This property is meaningful only when used in conjunction with
                <see cref="P:Telerik.Web.UI.TreeListScrolling.AllowScroll"/> set to <strong>true</strong>.
            </remarks>
            <value>
            	<strong>true</strong> (the default value), if Telerik RadTreeList keeps
            the scroll position on postback, otherwise <strong>false</strong> .
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListScrolling.UseStaticHeaders">
            <summary>
            Gets or sets a value indicating whether RadTreeList column headers will scroll as the
            rest of the RadTreeList items or will remain static (MS Excel ® style).
            </summary>
            <value>
            	<strong>true</strong> if headers remain static on scroll, otherwise
            <strong>false</strong> (the default value).
            </value>
            <remarks>
                This property is meaningful only when used in conjunction with
                <see cref="P:Telerik.Web.UI.TreeListScrolling.AllowScroll"/> set to <strong>true</strong>.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSelecting">
            <summary>
            Provides properties related to setting the client-side selection in
            Telerik RadTreeList.
            </summary>
            <remarks>
                You can get a reference to this class using
                <see cref="P:Telerik.Web.UI.TreeListClientSettings.Selecting"/> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSelecting.AllowItemSelection">
            <summary>
            Gets or sets a value indicating whether you will be able to select a treelist row on
            the client by clicking on it with the mouse.
            </summary>
            <value>
            true, if you will be able to select a row on the client, otherwise false (the
            default value).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSelecting.AllowToggleSelection">
            <summary>
            Gets or sets a value indicating whether clicking an item in RadTreeList will
            toggle the item's selected state.
            </summary>
            <value>
            true, if you will be able to select a row on the client, otherwise false (the
            default value).
            </value>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSortOrder">
            <summary>Enumeration representing the order of sorting data in RadTreeList</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListSortOrder.None">
            <summary>do not sort the treeList data</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListSortOrder.Ascending">
            <summary>sorts treeList data in ascending order</summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeListSortOrder.Descending">
            <summary>sorts treeList data in descending order</summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSortExpression">
            <summary>
            Class that is used to define sort field and sort order for RadTreeList
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.Equals(System.Object)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.GetHashCode">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.SetSortOrder(System.String)">
            <summary>
            	<para>Sets the sort order.</para>
            	<para>The SortOrder paremeter should be either "Ascending", "Descending" or "None".</para>
            </summary>
            <exception cref="T:System.ArgumentException"><c>ArgumentException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.SortOrderAsString(Telerik.Web.UI.TreeListSortOrder)">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.SortOrderAsString">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.SortOrderFromString(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.TreeListSortOrder"/> enumeration based on the string input. Takes either "ASC"
            or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpression.Parse(System.String)">
            <summary>
            Parses a string representation of the sort order and returns RadTreeListSortExpression.        
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpression.FieldName">
            <summary>Gets or sets the name of the field to which sorting is applied.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpression.SortOrder">
            <summary>Sets or gets the current sorting order.</summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSortExpressionCollection">
            <summary>
            A collection of <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> objects. Depending on the value of
            <see cref="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowMultiColumnSorting"/> it holds single
            or multiple sort expressions. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.#ctor(System.Collections.ArrayList)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.CopyTo(System.Array,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the
            <strong>RadTreeListSortExpressionCollection</strong>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.Add(System.Object)">
            <summary>Adds a <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> to the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.Clear">
            <summary>Clears the RadTreeListSortExpressionCollection of all items.</summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.CopyTo(Telerik.Web.UI.TreeListSortExpressionCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.GetExpression(System.String)">
            <summary>
            Find a SortExpression in the collection if it contains any with sort field = expression
            </summary>
            <param name="expression">sort field</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.AddSortExpression(Telerik.Web.UI.TreeListSortExpression)">
            <summary>
            If <see cref="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowMultiColumnSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="sortExpression"></param>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.AddSortExpression(System.String)">
            <summary>
            If <see cref="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowMultiColumnSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="expression">String containing sort field and optionaly sort order (ASC or DESC)</param>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.AddAt(System.Int32,Telerik.Web.UI.TreeListSortExpression)">
            <summary>
                Adds a <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> to the collection at the specified
                index.
            </summary>
            <remarks>
                As a convenience feature, adding at an index greater than zero will set the
                <see cref="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowMultiColumnSorting"/> to <strong>true</strong>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.RemoveSortExpression(Telerik.Web.UI.TreeListSortExpression)">
            <summary>Removes the specified <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> from the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.ContainsSortExpression(Telerik.Web.UI.TreeListSortExpression)">
            <summary>
                Returns true or false depending on whether the specified sorting expression exists
                in the collection. Takes a <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.ContainsExpression(System.String)">
            <summary>
            Returns true or false depending on whether the specified sorting expression
            exists in the collection. Takes a string parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.ChangeSortOrder(System.String)">
            <summary>
            Adds the sort field (expression parameter) if the collection does not alreqady contain the field. Else the sort order of the field will be inverted. The default change order is
            Asc -&gt; Desc -&gt; No Sort. The No-Sort state can be controlled using <see cref="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowNaturalSort"/> property
            </summary>
            <param name="expression"></param>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.GetSortString">
            <summary>
            Get a comma separated list of sort fields and sort-order, in the same format used by
            DataView.Sort string expression. Returns null (Nothing) if there are no sort expressions in the collection
            </summary>
            <returns>Comma separated list of sort fields and optionaly sort-order, null if there are no sort expressions in the collection</returns>
        </member>
        <member name="M:Telerik.Web.UI.TreeListSortExpressionCollection.IndexOf(Telerik.Web.UI.TreeListSortExpression)">
            <summary>
            Searches for the specified
            <see cref="T:Telerik.Web.UI.TreeListSortExpression"/> and
            returns the zero-based index of the first occurrence within the entire
            <b><see cref="T:Telerik.Web.UI.TreeListSortExpressionCollection"/></b>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowMultiColumnSorting">
            <summary>
            If false, the collection can contain only one sort expression at a time.
            Trying to add a new one in this case will delete the existing expression
            or will change the sort order if its FiledName is the same.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.Item(System.Int32)">
            <summary>This is the default indexer of the collection - takes an integer value.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.AllowNaturalSort">
            <summary>
            Allow the no-sort state when changing sort order.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.Count">
            <summary>Returns the number of items in the RadTreeListSortExpressionCollection.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.IsSynchronized">
            <summary>
            Gets a value indicating whether access to the RadTreeListSortExpressionCollection is
            synchronized (thread safe).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortExpressionCollection.SyncRoot">
            <summary>
            	<a onclick="javascript:Track('ctl00_LibFrame_ctl07|ctl00_LibFrame_ctl14',this);" href="http://msdn2.microsoft.com/en-us/library/system.collections.arraylist.syncroot.aspx">
            	</a>
            	<table>
            		<tr>
            			<td>Gets an object that can be used to synchronize access to the
                        RadTreeListSortExpressionCollection.</td>
            		</tr>
            	</table>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.Selecting">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.TreeListSelecting"/> class providing properties
                related to client-side selection features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.ClientEvents">
            <summary>Gets a reference to <see cref="T:Telerik.Web.UI.TreeListClientEvents"/> class.</summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.AllowPostBackOnItemClick">
            <summary>
            Gets or sets a value indicating whether <see cref="T:Telerik.Web.UI.RadTreeList"/> should postback on row click.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.Scrolling">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.TreeListScrolling"/>, which holds various
                properties for setting the Telerik RadTreeList scrolling features.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.AllowItemsDragDrop">
            <summary>
            Gets or sets a value indicating whether the <see cref="T:Telerik.Web.UI.RadTreeList"/> items can be dragged and dropped
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.AllowKeyboardNavigation">
            <summary>
            Gets or sets a value indicating whether the keyboard navigation will be enabled
            in Telerik RadTreeList.
            </summary>
            <value>
            true, if keyboard navigation is enabled, otherwise false (the default
            value).
            </value>
            <remarks>
            	<ul class="noindent">
            		<li><strong>Arrowkey Navigation</strong> - allows end-users to navigate around
                    the menu structure using the arrow keys.</li>
            		<li>select TreeList items pressing the [SPACE] key</li>
            		<li>edit rows hitting the [ENTER] key</li>
            	</ul>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TreeListClientSettings.KeyboardNavigationSettings">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.TreeListKeyboardNavigationSettings"/> class, holding properties
                related to TreeList keyboard navigation.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEnumerable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEnumerableBase">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListEnumerableBase.SetSortExpressions(Telerik.Web.UI.TreeListSortExpressionCollection)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="T:Telerik.Web.UI.TreeListNullEnumerable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSourceItem">
            <exclude/>
            <excludetoc/>    
        </member>
        <member name="T:Telerik.Web.UI.TreeListItemState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListSiblingState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListDataColumns">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListDisplayIndexGenerator">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.TreeListDisplayIndexGenerator.GetLevelIndex(System.Int32)">
            <summary>
            Returns last created LevelIndex for given NestedLevel
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.TreeListDisplayIndexGenerator.GenerateIndex(System.Int32)">
            <summary>
            Generates unqiue LevelIndex for current NestedLevel.
            </summary>        
        </member>
        <member name="T:Telerik.Web.UI.TreeListGroupingContext">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.TreeListEnumerableFromViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortingSettings.SortToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and there is no sorting applied.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortingSettings.SortedAscToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and the column is sorted ascending.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListSortingSettings.SortedDescToolTip">
            <summary>
            Gets or sets the tooltip that will be displayed when you hover the sorting button
            and the column is sorted descending.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeListValidationSettings">
            <summary>
            Contains validation settings for <see cref="T:Telerik.Web.UI.RadTreeList"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListValidationSettings.EnableValidation">
            <summary>
            Gets or sets a value indicating whether validation is enabled for <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListValidationSettings.ValidationGroup">
            <summary>
            Gets or sets the ValidationGroup of the buttons in <see cref="T:Telerik.Web.UI.RadTreeList"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeListValidationSettings.CommandsToValidate">
            <summary>
            Gets or sets the set of command names that will be validated.
            By default, the "PerformInsert" and "Update" commands are validated.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IRadTreeNodeContainer">
            <summary>
                Defines properties that node containers (<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see>,
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>) should implement.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadTreeNodeContainer.Owner">
            <summary>Gets the parent <see cref="T:Telerik.Web.UI.IRadTreeNodeContainer">IRadTreeNodeContainer</see>.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadTreeNodeContainer.Nodes">
            <summary>Gets the collection of child items.</summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadTreeNodeCollection">RadTreeNodeCollection</see> that represents the child
                items.
            </value>
            <remarks>
            Use this property to retrieve the child items. You can also use it to
            programmatically add or remove items.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeView">
            <summary>A hierarchical control used to display a tree of nodes in a web page.</summary>
            <remarks>
            	<para>
                    The <b>RadTreeView</b> control is used to display a list of nodes in a Web Forms
                    page. The <b>RadTreeView</b> control supports the following features:
                </para>
            	<list type="bullet">
            		<item>
            			Danodeinding that allows the control to be populated from various
            			datasources.
            		</item>
            		<item>
            			Programmatic access to the <strong>RadTreeView</strong> object model
            			which allows dynamic creation of treeviews, populating with nodes and customizing the behavior 
            			by various properties.
            		</item>
            		<item>
            			Customizable appearance through built-in or user-defined skins.
            		</item>
            	</list>
            	<h3>nodes</h3>
            	<para>
                    The <strong>RadTreeView</strong> control is made up of tree of nodes represented
                    by <see cref="T:Telerik.Web.UI.RadTreeNode"/> objects. Nodes at the top level (level 0) are
                    called root nodes. An node that has a parent node is called a child node. All root
                    nodes are stored in the <see cref="P:Telerik.Web.UI.RadTreeView.Nodes"/> property of the RadTreeView control. Child nodes are
                    stored in the <see cref="P:Telerik.Web.UI.RadTreeNode.Nodes"/> property of their parent <see cref="T:Telerik.Web.UI.RadTreeNode"/>.
                </para>
            	<para>
                    Each node has a <see cref="P:Telerik.Web.UI.RadTreeNode.Text"/> and a <see cref="P:Telerik.Web.UI.RadTreeNode.Value"/> property. 
            		The value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Text"/> property is displayed in the <b>RadTreeView</b> control, 
            		while the <see cref="P:Telerik.Web.UI.RadTreeNode.Value"/> property is used to store any additional data about the node, 
            		such as data passed to the postback event associated with the node. When clicked, a node can
                    navigate to another Web page indicated by the <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl"/> property.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.#ctor">
             <summary>
            		Initializes a new instance of the RadTreeView class.
             </summary>
             <remarks>
            		Use this constructor to create and initialize a new instance of the RadTreeView
            		control.
             </remarks>
             <example>
                 The following example demonstrates how to programmatically create a RadTreeView
                 control. 
                 <code lang="CS">
            			void Page_Load(object sender, EventArgs e)
            			{
            				RadTreeView RadTreeView1 = new RadTreeView();
            				RadTreeView1.ID = "RadTreeView1";
             
            				if (!Page.IsPostBack)
            				{
            					//RadTreeView persist its nodes in ViewState (if EnableViewState is true). 
            					//Hence nodes should be created only on initial load.
             
            					RadTreeNode sportNode = new RadTreeNode("Sport");
            					RadTreeView1.Nodes.Add(sportNode);
            			     
            					RadTreeNode newsNode = new RadTreeNode("News");
            					RadTreeView1.Nodes.Add(newsNode);
            				}
             
            				PlaceHolder1.Controls.Add(RadTreeView1);
            			}
                 </code>
             	<code lang="VB">
            			Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            				Dim RadTreeView1 As RadTreeView = New RadTreeView()
            				RadTreeView1.ID = "RadTreeView1"
            				
            				If Not Page.IsPostBack Then
            					'RadTreeView persist its nodes in ViewState (if EnableViewState is true).				
             				'Hence nodes should be created only on initial load.
             
            					Dim sportNode As RadTreeNode = New RadTreeNode("Sport")
            					RadTreeView1.Nodes.Add(sportNode)
            
            					Dim newsNode As RadTreeNode = New RadTreeNode("News")
            					RadTreeView1.Nodes.Add(newsNode)
            				End If
             
            				PlaceHolder1.Controls.Add(RadTreeView1)
            			 End Sub
                 </code>
             </example>
        </member>
        <member name="F:Telerik.Web.UI.RadTreeView._loadingStatusTemplate">
            <summary>
            	Gets or sets the template displayed when child nodes are being loaded.
            </summary>
            <example>
            	The following example demonstrates how to use the LoadingStatusTemplate to display an image.
            	<para>
            	&lt;telerik:RadTreeView runat="server" ID="RadTreeView1"&gt;
            		&lt;LoadingStatusTemplate&gt;
            			&lt;asp:Image runat="server" ID="Image1" ImageUrl="~/Img/loading.gif" /&gt;
            		&lt;/LoadingStatusTemplate&gt;
            	&lt;/telerik:RadTreeView&gt;	
            	</para>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.GetAllNodes">
            <summary>
            Gets a linear list of all nodes in the <strong>RadTreeView</strong> control.
            </summary>
            <returns>An <see cref="T:System.Collections.Generic.IList`1">IList&lt;RadTreeNode&gt;</see> containing all nodes (from all hierarchy levels).</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByText(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>Text</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByText(System.String,System.Boolean)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
            <returns>A <c>RadTreeNode</c> whose <c>Text</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByValue(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property
            equal to the specified value.
            </summary>
            <param name="value">The value to search for</param>  
            <returns>A <c>RadTreeNode</c> whose <c>Value</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByValue(System.String,System.Boolean)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property
            equal to the specified value.
            </summary>
            <param name="value">The value to search for</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
            <returns>A <c>RadTreeNode</c> whose <c>Value</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByUrl(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> property
            equal to the specified URL.
            </summary>
            <param name="url">The URL to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>NavigateUrl</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>
            The ResolveUrl method is used to resolve NavigateUrl property before comparing it to the specified URL.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNode(System.Predicate{Telerik.Web.UI.RadTreeNode})">
            <summary>
            Returns  the first <strong>RadTreeNode</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindNode</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadTreeView1.FindNode(NodeWithEqualsTextAndValue);
            }
            private static bool NodeWithEqualsTextAndValue(RadTreeNode node)
            {
                if (node.Text == node.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadTreeView1.FindNode(NodeWithEqualsTextAndValue)
            End Sub
            Private Shared Function NodeWithEqualsTextAndValue(ByVal node As RadTreeNode) As Boolean
                If node.Text = node.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.LoadXmlString(System.String)">
            <summary>
            Loads the control from an XML string. Identical to LoadXml.
            </summary>
            <param name="xml">The XML string to populate from.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.LoadContentFile(System.String)">
            <summary>
            Populates the control from the specified XML file.
            </summary>
            <param name="fileName">The name of the XML file.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.FindNodeByAttribute(System.String,System.String)">
            <summary>
            Searches all nodes for a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadTreeNode</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.UnselectAllNodes">
            <summary>
            This method unselects all nodes of the current RadTreeView instance. Useful when you need to clear node selection after postback.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.UncheckAllNodes">
            <summary>
            This method unchecks all nodes of the current RadTreeView instance. Useful when you need to uncheck all nodes after postback.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.CheckAllNodes">
            <summary>
            Checks all nodes of the current RadTreeView object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.ExpandAllNodes">
            <summary>
            Expands all nodes in the tree.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeView.CollapseAllNodes">
            <summary>
            Collapses all nodes in the tree.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.ClientChanges">
             <summary>
            		Gets a list of all client-side changes (adding a node, removing a node, changing a node's property) which have occurred.
             </summary>
             <value>
            		A list of <see cref="T:Telerik.Web.UI.ClientOperation`1"/> objects which represent all client-side changes the user has performed. 
            		By default the ClientChanges property returns empty list. Client-changes are recorded if and only if the client-side
            		methods trackChanges()/commitChanges() have been invoked.
             </value>
             <remarks>
            		You can use the ClientChanges property to respond to client-side modifications such as
            		<list type="bullet">
            			<item>adding a new item</item>
            			<item>removing existing item</item>
            			<item>clearing the children of an item or the control itself</item>
            			<item>changing a property of the item</item>
            		</list>
            		The ClientChanges property is available in the first postback (ajax) request after the client-side modifications
            		have taken place. After this moment the property will return empty list.
             </remarks>
             <example>
            		The following example demonstrates how to use the ClientChanges property
            		<code lang="CS">
            		foreach (ClientOperation&lt;RadTreeNode&gt; operation in RadTreeView1.ClientChanges)
            		{
            			RadTreeNode node = operation.Item;
            
            			switch (operation.Type)
            			{
            				case ClientOperationType.Insert:
            					//A node has been inserted - operation.Item contains the inserted node
            				break;
            				case ClientOperationType.Remove:
            					//A node has been inserted - operation.Item contains the removed node. 
                             //Keep in mind the node has been removed from the treeview.
            				break;
            				case ClientOperationType.Update:
            					UpdateClientOperation&lt;RadTreeNode&gt; update = operation as UpdateClientOperation&lt;RadTreeNode&gt;
            					//The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            				break;
            				case ClientOperationType.Clear:
            					//All children of have been removed - operation.Item contains the parent node whose children have been removed. If operation.Item is null then the root nodes have been removed.
            				break;
            			}
            		}
            		</code>
            		<code lang="VB">
            			For Each operation As ClientOperation(Of RadTreeNode) In RadTreeView1.ClientChanges
            				Dim node As RadTreeNode = operation.Item
            				Select Case operation.Type
            					Case ClientOperationType.Insert
            						'A node has been inserted - operation.Item contains the inserted node
            					Exit Select
            					Case ClientOperationType.Remove
            						'A node has been inserted - operation.Item contains the removed node. 
            						'Keep in mind the node has been removed from the treeview.
            					Exit Select
            					Case ClientOperationType.Update
            						Dim update As UpdateClientOperation(Of RadTreeNode) = TryCast(operation, UpdateClientOperation(Of RadTreeNode))
            						'The "UpdateOperation" provides an additional property "PropertyName". This is the property whose value was changed from the client side.
            					Exit Select
            					Case ClientOperationType.Clear
            						'All children of have been removed - operation.Item contains the parent node whose children have been removed. If operation.Item is Nothing then the root nodes have been removed.
            					Exist Select
            				End Select
            			Next
            		</code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.CheckedNodes">
            <summary>
            Gets a collection of RadTreeNode objects that represent the nodes in the control
            that display a selected check box.
            </summary>
            <returns>An IList&lt;RadTreeNode&gt; containing the checked nodes.</returns>
            <remarks>
            	<para>
                    When check boxes are displayed in the RadTreeView control (by setting the
                    <see cref="P:Telerik.Web.UI.RadTreeView.CheckBoxes">CheckBoxes</see> property to true), use the CheckedNodes
                    property to determine which nodes display a selected check box. This collection
                    is commonly used to iterate through all the nodes that have a selected check
                    box in the tree.
                </para>
            	<para>
                The CheckedNodes collection is populated using a depth-first traversal of the tree
                structure: each parent node is processed down to its child nodes before the next
                parent node is populated.</para>
            </remarks>
            <example>
            	<code lang="VB" title="[New Example]">
            Protected Sub ShowCheckedNodes(ByVal sender As Object, ByVal e As System.EventArgs)
                Dim message As String = String.Empty
                Dim node As RadTreeNode
                For Each node In RadTree1.CheckedNodes
                    message += node.FullPath
                Next node
                nodes.Text = message
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            protected void ShowCheckedNodes(object sender, System.EventArgs e)
            {
                string message = string.Empty;
                foreach (RadTreeNode node in RadTree1.CheckedNodes)
                {
                    message += node.FullPath + "&lt;br/&gt;";
                }
                nodes.Text = message;        
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.SelectedValue">
            <summary>
            Gets the <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> of the selected node.
            </summary>
            <returns>
            The <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> of the selected node. If there is no selected node returns empty string.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.SelectedNodes">
            <summary>
            Gets a collection of RadTreeNode objects that represent the nodes in the control
            that are currently selected.
            </summary>
            <returns>An IList&lt;RadTreeNode&gt; containing the selected nodes.</returns>
            <remarks>
            	<para>This collection is commonly used to iterate through all the nodes that have
                been selected in the tree.</para>
            	<para>The SelectedNodes collection is populated using a
                depth-first traversal of the tree structure: each parent node is processed down to
                its child nodes before the next parent node is populated.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.SelectedNode">
            <summary>
            Gets a RadTreeNode object that represents the selected node in the RadTreeView
            control.
            </summary>
            <remarks>
            	<para>When a node is in selection mode, the user can select a node by clicking on
                the text in the node. Use the SelectedNode property to determine which node is
                selected in the TreeView control.</para>
            	<para>
                A node cannot be selected when the TreeView control displays hyperlinks. When
                hyperlinks are displayed, the SelectedNode property always returns a null reference
                (Nothing in Visual Basic).</para>
            	<para>
                    When the user selects a different node in the RadTreeView control by clicking
                    the text in the new node, the <see cref="E:Telerik.Web.UI.RadTreeView.NodeClick">NodeClick</see> event is
                    raised, by default. If you set the
                    <see cref="P:Telerik.Web.UI.RadTreeView.MultipleSelect">MultipleSelect</see> property of the treeview to
                    true, end-users can select multiple nodes by holding the Ctrl / Shift keys
                    while selecting.
                </para>
            </remarks>
            <example>
            	<code lang="VB" title="[New Example]">
            &lt;radT:RadTreeView
                ID="RadTree1"
                runat="server"
                OnNodeClick="NodeClick"
            /&gt;
             
            Protected Sub NodeClick(ByVal sender As Object, ByVal NodeEventArgs As RadTreeNodeEventArgs)
                info.Text = String.Empty
                Dim NodeClicked As RadTreeNode = NodeEventArgs.NodeClicked
                info.Text = NodeClicked.Text
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            &lt;radT:RadTreeView
                ID="RadTree1"
                runat="server"
                OnNodeClick="NodeClick"
            /&gt;
             
            protected void NodeClick(object sender, RadTreeNodeEventArgs NodeEventArgs)
            {
                info.Text = string.Empty;
                RadTreeNode NodeClicked = NodeEventArgs.NodeClicked;
                info.Text = NodeClicked.Text;
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.IsEmpty">
            <summary>Gets a value indicating whether the RadTreeView control has no nodes.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.NodeTemplate">
            <summary>Gets or sets the template for displaying all node in the current RadTreeView.</summary>
            <value>
            	<para>
            	An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            	(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            	</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.LoadingMessage">
            <summary>
            Gets or sets the loading message that is displayed when child nodes are retrieved
            on AJAX calls.
            </summary>
            <remarks>
            This property can be used for localization purposes (e.g. "Loading..." in
            different languages).
            </remarks>
            <example>
            	<code lang="VB" title="[New Example]">
            Protected Sub LoadingMessagePositionChanged(ByVal sender As Object, ByVal e As System.EventArgs)
                Select Case LoadingMessagePos.SelectedItem.Value
                    Case "Before"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BeforeNodeText
                        RadTree1.LoadingMessage = "(loading ..)"
                    Case "After"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.AfterNodeText
                        RadTree1.LoadingMessage = "(loading ...)"
                    Case "Below"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BelowNodeText
                        RadTree1.LoadingMessage = "(loading ...)"
                    Case "None"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.None
                End Select
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            protected void LoadingMessagePositionChanged(object sender, System.EventArgs e) 
            {
                switch (LoadingMessagePos.SelectedItem.Value)
                {
                    case "Before" : 
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BeforeNodeText; 
                        RadTree1.LoadingMessage = "(loading ..)";
                        break;
                    case "After" :    
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.AfterNodeText;
                        RadTree1.LoadingMessage = "(loading ...)";
                        break;
                    case "Below" :    
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BelowNodeText; 
                        RadTree1.LoadingMessage = "(loading ...)";
                        break;
                    case "None" :                        
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.None; 
                        break;
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.Nodes">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> object that contains the root nodes of the current RadTreeView control.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> that contains the root nodes of the current RadTreeView control. By default
            	the collection is empty (RadTreeView has no children).
            </value>
            <remarks>
            	Use the <b>nodes</b> property to access the root nodes of the RadTreeView control. You can also use the <b>nodes</b> property to
            	manage the root nodes - you can add, remove or modify nodes.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a root node.
                <code lang="CS">
            		RadTreeView1.Nodes[0].Text = "Example";
            		RadTreeView1.Nodes[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadTreeView1.Nodes(0).Text = "Example"
            		RadTreeView1.Nodes(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.LoadingStatusPosition">
            <summary>
            Gets or sets the position of the loading message when child nodes are retrieved
            on AJAX calls.
            </summary>
            <example>
            	<code lang="VB" title="[New Example]">
            Protected Sub LoadingMessagePositionChanged(ByVal sender As Object, ByVal e As System.EventArgs)
                Select Case LoadingMessagePos.SelectedItem.Value
                    Case "Before"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BeforeNodeText
                        RadTree1.LoadingMessage = "(loading ..)"
                    Case "After"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.AfterNodeText
                        RadTree1.LoadingMessage = "(loading ...)"
                    Case "Below"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BelowNodeText
                        RadTree1.LoadingMessage = "(loading ...)"
                    Case "None"
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.None
                End Select
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            protected void LoadingMessagePositionChanged(object sender, System.EventArgs e) 
            {
                switch (LoadingMessagePos.SelectedItem.Value)
                {
                    case "Before" : 
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BeforeNodeText; 
            			RadTree1.LoadingMessage = "(loading ...)";
                        break;
                    case "After" :    
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.AfterNodeText;
            			RadTree1.LoadingMessage = "(loading ...)";
            			break;
                    case "Below" :    
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.BelowNodeText; 
            			RadTree1.LoadingMessage = "(loading ...)";
                        break;
                    case "None" :                        
                        RadTree1.LoadingStatusPosition = TreeViewLoadingStatusPosition.None; 
                        break;
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.AllowNodeEditing">
            <summary>
            Gets a value indicating whether the text of the tree nodes are edinodele in the
            browser.
            </summary>
            <remarks>
            	<para>End-users can edit the text of tree-nodes by pressing F2 when the node is
                selected or by clicking on a node that is already selected (slow double
                click).</para>
            	<para>
                    You can disable / enable node editing for specific tree nodes by setting the
                    <see cref="P:Telerik.Web.UI.RadTreeNode.AllowEdit">AllowEdit</see> property of the specific
                    RadTreeNode.
                </para>
            	<para>
            		<br/>
                    After node editing, RadTreeView fires the <see cref="E:Telerik.Web.UI.RadTreeView.NodeEdit">NodeEdit</see>
                    event and you can change the text of the node - the RadTreeNode instance is
                    contained in the NodeEdited property of the event arguments and the new text is
                    in the NewText property of the event arguments.
                </para>
            </remarks>
            <example>
            	<code lang="VB" title="[New Example]">
            &lt;radT:RadTreeView
                ID="RadTree1"
                Runat="server"
                AllowNodeEditing="True"
                OnNodeEdit="HandleNodeEdit"
            /&gt;
             
            Protected Sub HandleNodeEdit(ByVal sender As Object, ByVal NodeEvents As RadTreeNodeEventArgs)
                Dim nodeEdited As RadTreeNode = NodeEvents.NodeEdited
                Dim newText As String = NodeEvents.NewText
             
                nodeEdited.Text = newText
            End Sub
                </code>
            	<code lang="CS" title="[New Example]">
            &lt;radT:RadTreeView
                ID="RadTree1"
                Runat="server"
                AllowNodeEditing="True"
                OnNodeEdit="HandleNodeEdit"
            /&gt;
             
            protected void HandleNodeEdit(object sender, RadTreeNodeEventArgs NodeEvents)
            {            
                RadTreeNode nodeEdited = NodeEvents.NodeEdited;
                string newText = NodeEvents.NewText;
             
                nodeEdited.Text = newText;
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.ShowLineImages">
            <summary>
            Gets a value indicating whether the dotted lines indenting the nodes should be
            displayed or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.SingleExpandPath">
            <summary>
            Gets a value indicating whether only the current branch of the treeview is
            expanded.
            </summary>
            <remarks>
            The property closes all nodes that are not parents of the last expanded node.
            This property is only effective on the client browser - in postback modes you need to
            handle the logic yourself.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.CheckBoxes">
            <summary>
            When set to true displays a checkbox next to each treenode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.CheckChildNodes">
            <summary>
            Gets or sets a value indicating whether checking (unchecking) a node will check (uncheck) its child nodes.
            </summary>
            <value><c>true</c> if child nodes will be checked (checked) when the user checks (unchecks) their parent node; 
            otherwise, <c>false</c>. The default value is <c>false</c>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.TriStateCheckBoxes">
            <summary>
            Gets or sets a value indicating whether RadTreeView should display tri-state checkboxes.
            </summary>
            <value>
            	<c>true</c> if tri-state checkboxes should be displayed; otherwise, <c>false</c>. The default value is
            	<c>false</c>.
            </value>
            <remarks>
            	Enabling three state checkbox support requires the <see cref="P:Telerik.Web.UI.RadTreeView.CheckBoxes"/> property to be set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.MultipleSelect">
            <summary>
            When set to true the treeview allows multiple node selection (by holding down ctrl key while selecting nodes)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.EnableDragAndDrop">
            <summary>
            When set to true enables drag-and-drop functionality
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.EnableDragAndDropBetweenNodes">
            <summary>
            When set to true enables drag-and-drop visual clue (underline) between nodes while draggin
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.ContextMenus">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> objects
            	that represent the context menus of a <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </summary>
            <value>A <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">RadTreeViewContextMenuCollection</see> that
            	contains all the context menus of the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </value>
            <remarks>
            	<para>By default, if the <strong>ContextMenus</strong> collection contains <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>s,
            	the first one is displayed on the right-click of each <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>. To disable a context menu for a
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>, set its <see cref="P:Telerik.Web.UI.RadTreeNode.EnableContextMenu">EnableContextMenu</see>
            	property to false. To specify a different context menu for a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>, use its
            	<see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID">ContextMenuID</see> property.
            </para>
            </remarks>
            <example>The following code example demonstrates how to populate the <see cref="P:Telerik.Web.UI.RadTreeView.ContextMenus">ContextMenus</see>
            collection declaratively.
            <code lang="html">
            	&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            	&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            	
            	&lt;html&gt;
            	&lt;body&gt;
            	&lt;form id="form1" runat="server"&gt;
            	&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            	&lt;br /&gt;
            	&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server"&gt;
            		&lt;ContextMenus&gt;
            			&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            				&lt;nodes&gt;
            					&lt;Telerik:RadTreeNode Text="Menu1Item1"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;Telerik:RadTreeNode Text="Menu1Item2"&gt;&lt;/Telerik:RadTreeNode&gt;
            				&lt;/nodes&gt;
            			&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            				&lt;nodes&gt;
            					&lt;Telerik:RadTreeNode Text="Menu2Item1"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;Telerik:RadTreeNode Text="Menu2Item2"&gt;&lt;/Telerik:RadTreeNode&gt;
            				&lt;/nodes&gt;
            			&lt;/Telerik:RadTreeViewContextMenu&gt;
            		&lt;/ContextMenus&gt;
            		&lt;Nodes&gt;
            			&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/Telerik:RadTreeNode&gt;
            			&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/Telerik:RadTreeNode&gt;
            		&lt;/Nodes&gt;
            	&lt;/Telerik:RadTreeView&gt;
            	
            	&lt;/form&gt;
            	&lt;/body&gt;
            	&lt;/html&gt;
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate nodes when
            	<see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode">ExpandMode</see> set to
            	<see cref="F:Telerik.Web.UI.TreeNodeExpandMode.WebService">TreeNodeExpandMode.WebService</see>.
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadTreeView.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating nodes.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate nodes on demand.
            		You must specify both
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		You can use the <see cref="P:Telerik.Web.UI.RadTreeView.LoadingStatusTemplate">LoadingStatusTemplate</see>
            		property to create a loading template.
            	</para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public RadTreeNodeData[] WebServiceMethodName(RadTreeNodeData item, object context)
            			{
            				// We cannot use a dictionary as a parameter, because it is only supported by script services.
            				// The context object should be cast to a dictionary at runtime.
            				IDictionary&lt;string, object&gt; contextDictionary = (IDictionary&lt;string, object&gt;) context;
            				
            				//...
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.PersistLoadOnDemandNodes">
            <summary>
            When set to true, the nodes populated through Load On Demand are persisted on the server.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.ExpandAnimation">
            <summary>Gets the settings for the animation played when a node opens.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                expand animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>ExpandAnimation</strong> property to customize the expand
                    animation of <strong>RadTreeView</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> and
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see>.
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>.<br/>
                    To customize the collapse animation you can use the
                    <see cref="P:Telerik.Web.UI.RadTreeView.CollapseAnimation">CollapseAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the <strong>ExpandAnimation</strong>
                of RadTreeView. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadTreeView ID="RadTreeView1" runat="server"&gt;</para>
            		<para><strong>&lt;ExpandAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="News" &gt;</para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            		<para>&lt;/telerik:RadTreeViewNode&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Sport" &gt;</para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            		<para>&lt;/telerik:RadTreeViewNode&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadTreeView&gt;</para>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadTreeView1.ExpandAnimation.Type = AnimationType.Linear;
                RadTreeView1.ExpandAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadTreeView1.ExpandAnimation.Type = AnimationType.Linear
                RadTreeView1.ExpandAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.CollapseAnimation">
            <summary>Gets the settings for the animation played when a node closes.</summary>
            <value>
                An <see cref="T:Telerik.Web.UI.AnimationSettings">AnnimationSettings</see> that represents the
                collapse animation.
            </value>
            <remarks>
            	<para>
                    Use the <strong>CollapseAnimation</strong> property to customize the expand
                    animation of <strong>RadTreeView</strong>. You can specify the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> and
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Duration">Duration</see>.
            		<br/>
                    To disable expand animation effects you should set the
                    <see cref="P:Telerik.Web.UI.AnimationSettings.Type">Type</see> to
                    <strong>AnimationType.None</strong>. To customize the expand animation you can
                    use the <see cref="P:Telerik.Web.UI.RadTreeView.ExpandAnimation">ExpandAnimation</see> property.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to set the
                <strong>CollapseAnimation</strong> of RadTreeView. 
                <para>
            		<para><strong>ASPX:</strong></para>
            	</para>
            	<para>
            		<para>&lt;telerik:RadTreeView ID="RadTreeView1" runat="server"&gt;</para>
            		<para><strong>&lt;CollapseAnimation Type="OutQuint" Duration="300"
                    /&gt;</strong></para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="News" &gt;</para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="CNN" NavigateUrl="http://www.cnn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Google News" NavigateUrl="http://news.google.com"
                    /&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            		<para>&lt;/telerik:RadTreeViewNode&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Sport" &gt;</para>
            		<para>&lt;Nodes&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="ESPN" NavigateUrl="http://www.espn.com"
                    /&gt;</para>
            		<para>&lt;telerik:RadTreeViewNode Text="Eurosport" NavigateUrl="http://www.eurosport.com"
                    /&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            		<para>&lt;/telerik:RadTreeViewNode&gt;</para>
            		<para>&lt;/Nodes&gt;</para>
            	</para>
            	<para>
            		<para>&lt;/telerik:RadTreeView&gt;</para>
            		<code lang="CS">
            		</code>
            		<code lang="VB">
            		</code>
            	</para>
            	<code lang="CS">
            void Page_Load(object sender, EventArgs e)
            {
                RadTreeView1.CollapseAnimation.Type = AnimationType.Linear;
                RadTreeView1.CollapseAnimation.Duration = 300;
            }
                </code>
            	<code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
                RadTreeView1.CollapseAnimation.Type = AnimationType.Linear
                RadTreeView1.CollapseAnimation.Duration = 300
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.DataBindings">
            <summary>
            	Gets a collection of <see cref="T:Telerik.Web.UI.RadTreeNodeBindingCollection"/> objects that define the relationship 
            	between a data item and the tree node it is binding to. 
            </summary>
            <returns>
            	A <see cref="T:Telerik.Web.UI.RadTreeNodeBindingCollection"/> that represents the relationship between a data item and the tree node it is binding to.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.MaxDataBindDepth">
            <summary>
            	Gets or sets the maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </summary>
            <value>
            	The maximum number of levels to bind to the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control. The default is -1, which binds all the levels in the data source to the control.
            </value>
            <remarks>
            	When binding the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control to a data source, use the MaxDanodeindDepth 
            	property to limit the number of levels to bind to the control. For example, setting this property to 2 binds only 
            	the root nodes and their immediate children. All remaining records in the data source are ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when a tree node is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when a tree node is clicked.
            	The default value is an empty string (""), which causes the page to post back to itself.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeAnimationEnd">
            <summary>
            Gets or sets the name of the JavaScript function called when a node's expand/collapse animation finishes
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeEditStart">
            <summary>
            Gets or sets the name of the JavaScript function called when a node starts being edited
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeDataBound">
            <summary>
            Gets or sets the name of the JavaScript function called when a node is databound during load on demand
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientLoad">
            <summary>
            Gets or sets the name of the JavaScript function called when the control is fully
            initialized on the client side.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeClicking">
            <summary>
            The name of the JavaScript function that will be called upon click on a treenode. The function must accept a single parameter which is the instance of the node clicked.
            For example if you define OnClientClick="ProcessClientClick", you must define a javascript function defined in the following way (example):<br/><br/>
            function ProcessClientClick(node)
            {
            	alert("You clicked on: " + node.Text);
            }
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeClicked">
            <summary>
            The name of the JavaScript function that will be called after click on a treenode. Used for AJAX/callback hooks.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientMouseOver">
            <summary>
            The name of the JavaScript function that will be called when the user highlights a treenode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientDoubleClick">
            <summary>
            The name of the JavaScript function that will be called when the user double clicks on a node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientMouseOut">
            <summary>
            The name of the JavaScript function that will be called when the mouse hovers away from the TreeView.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeEditing">
            <summary>
            The name of the JavaScript function that will be called before the user edits a node 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeEdited">
            <summary>
            The name of the JavaScript function that will be called after the user edits a node 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeExpanding">
            <summary>
            The name of the JavaScript function that will be called before a node is expanded. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeExpanded">
            <summary>
            The name of the JavaScript function that will be called after a node is expanded. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeCollapsing">
            <summary>
            The name of the JavaScript function that will be called before a node is collapsed. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeCollapsed">
            <summary>
            The name of the JavaScript function that will be called after a node is collapsed. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeDropping">
            <summary>
            The name of the JavaScript function that will be called when the user drops a node onto another node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeDropped">
            <summary>
            The name of the JavaScript function that will be called after the user drops a node onto another node.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeChecking">
            <summary>
            The name of the JavaScript function that will be called when the user checks (checkbox) a treenode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeChecked">
            <summary>
            The name of the JavaScript function that will be called after the user checks (checkbox) a treenode.
            </summary>	
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeDragStart">
            <summary>
            The name of the JavaScript function that will be called when the user starts dragging a node.
            </summary>	
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodeDragging">
            <summary>
            The name of the JavaScript function that will be called when the user moves the mouse while dragging a node.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientContextMenuItemClicking">
            <summary>
            The name of the JavaScript function that will be called when the user clicks on a context menu item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientContextMenuItemClicked">
            <summary>
            The name of the JavaScript function that will be called after the user clicks on a context menu item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientContextMenuShowing">
            <summary>
            The name of the JavaScript function that will be called when a context menu is to be displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientContextMenuShown">
            <summary>
            The name of the JavaScript function that will be called after context menu is displayed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodePopulating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the children of a tree node are about to be populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientNodePopulatingHandler(sender, eventArgs)<br/>
                {<br/>
            		var node = eventArgs.get_node();<br/>
            		var context = eventArgs.get_context();<br/>
            		context["CategoryID"] = node.get_value();<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadTreeView ID="RadTreeView1"<br/>
                runat="server"<br/>
            		<strong>OnClientNodePopulating="onClientNodePopulatingHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadTreeView&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientNodePopulating</strong> client-side event
                handler is called when the children of a tree node are about to be populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<node><strong>sender</strong>, the menu client object;</node>
            		<node><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<node><strong>get_node()</strong>, the instance of the node.</node>
            				<node><strong>get_context()</strong>, an user object that will be passed to the web service.</node>
            				<node><strong>set_cancel()</strong>, used to cancel the event.</node>
            			</list>
            		</node>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodePopulated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the children of a tree node were just populated (for example from web service).
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientNodePopulatedHandler(sender, eventArgs)<br/>
                {<br/>
            		var node = eventArgs.get_node();<br/>
            		alert("Loading finished for " + node.get_text());<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadTreeView ID="RadTreeView1"<br/>
                runat="server"<br/>
            		<strong>OnClientNodePopulated="onClientNodePopulatedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadTreeView&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientNodePopulated</strong> client-side event
                handler is called when the children of a tree node were just populated.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with one property:
            			<list type="bullet">
            				<item><strong>get_node()</strong>, the instance of the tree node.</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientNodePopulationFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the children of a tree node has failed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <example>
            	<para>&lt;script type="text/javascript"&gt;<br/>
                function onClientNodePopulationFailedHandler(sender, eventArgs)<br/>
                {<br/>
            		var node = eventArgs.get_node();<br/>
            		var errorMessage = eventArgs.get_errorMessage();<br/>
            		<br/>
            		alert("Error: " + errorMessage);<br/>
            		eventArgs.set_cancel(true);<br/>
                }<br/>
                &lt;/script&gt;</para>
            	<para>&lt;telerik:RadTreeView ID="RadTreeView1"<br/>
                runat="server"<br/>
            		<strong>OnClientNodePopulationFailed="onClientNodePopulationFailedHandler"</strong>&gt;<br/>
                ....<br/>
                &lt;/telerik:RadTreeView&gt;</para>
            </example>
            <remarks>
            	<para>If specified, the <strong>OnClientNodePopulationFailed</strong> client-side event
                handler is called when the operation to populate the children of a tree node has failed.
            	Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the menu client object;</item>
            		<item><strong>eventArgs</strong> with three properties:
            			<list type="bullet">
            				<item><strong>get_node()</strong>, the instance of the tree node.</item>
            				<item><strong>set_cancel()</strong>, set to true to suppress the default action (alert message).</item>
            			</list>
            		</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeView.OnClientKeyPressing">
            <summary>
            The name of the JavaScript function that will be called when a key is pressed.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeClick">
            <summary>
                Occurs on the server when a node in the <see cref="T:Telerik.Web.UI.RadTreeView"/>
                control is clicked.
            </summary>
            <example>
            	The following example demonstrates how to use the <b>NodeClick</b> event to determine the clicked node.
            	<code lang="CS">
            		protected void RadTreeView1_NodeClick(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            		{
            			Response.Write("Clicked node is " + e.Node.Text);
            		}
            	</code>
            	<code lang="VB">
            		Sub RadTreeView1_NodeClick(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeClick
            			Response.Write("Clicked node is " &amp; e.Node.Text)
            		End Sub		
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeDataBound">
            <summary>Occurs when a node is data bound.</summary>
            <remarks>
            	<para>
                    The <strong>NodeDataBound</strong> event is raised for each node upon
                    danodeinding. You can retrieve the node being bound using the event arguments.
                    The <strong>DataItem</strong> associated with the node can be retrieved using
                    the <see cref="P:Telerik.Web.UI.RadTreeNode.DataItem"/> property.
                </para>
            	<para>The <strong>NodeDataBound</strong> event is often used in scenarios when you
                want to perform additional mapping of fields from the DataItem to their respective
                properties in the <see cref="T:Telerik.Web.UI.RadTreeNode"/> class.
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadTreeNode"/> properties using the <strong>NodeDataBound</strong> event.
            	<code lang="CS">
            		protected void RadTreeView1_NodeDataBound(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            		{
            			e.Node.ImageUrl = "image" + (string)DataBinder.Eval(e.Node.DataItem, "ID") + ".gif";
            			e.Node.NavigateUrl = (string)DataBinder.Eval(e.Node.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadTreeView1_NodeDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeDataBound
            			e.Node.ImageUrl = "image" &amp; DataBinder.Eval(e.Node.DataItem, "ID") &amp; ".gif"
            			e.Node.NavigateUrl = CStr(DataBinder.Eval(e.Node.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.TemplateNeeded">
            <summary>Occurs before template is being applied to the node.</summary>
            <remarks>
            	The TemplateNeeded event is raised before a template is been applied on the node, 
            	both during round-trips (postbacks) and at the time data is bound to the control. The TemplateNeeded event is not raised for nodes
            	which are defined inline in the page or user control.
            	<para>The TemplateNeeded event is commonly used for dynamic templating.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>TemplateNeeded</strong> event
                to apply templates with respect to the <strong>Value</strong> property of the nodes. 
                <code lang="CS">
            		 protected void RadTreeView1_TemplateNeeded(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            		 {
            		    string value = e.Node.Value;
                        if (value != null)
                        {
                           // if the value is an even number
                           if ((Int32.Parse(value) % 2) == 0)
                           {
                              var textBoxTemplate = new TextBoxTemplate();
                              e.Node.NodeTemplate = textBoxTemplate;        
                           }
                        }
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadTreeView1_Template(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.TemplateNeeded
                         Dim value As String = e.Node.Value
                         If value IsNot Nothing Then
                             ' if the value is an even number
                             If ((Int32.Parse(value) Mod 2) = 0) Then
                                 Dim textBoxTemplate As TextBoxTemplate = New TextBoxTemplate()
                                 e.Node.NodeTemplate = textBoxTemplate
                             End If
                         End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeCreated">
            <summary>Occurs when a node is created.</summary>
            <remarks>
            	The NodeCreated event is raised when an node in the <see cref="T:Telerik.Web.UI.RadTreeView"/> control is created, 
            	both during round-trips and at the time data is bound to the control. The NodeCreated event is not raised for nodes
            	which are defined inline in the page or user control.
            	<para>The NodeCreated event is commonly used to initialize node properties.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>NodeCreated</strong> event
                to set the <strong>ToolTip</strong> property of each node. 
                <code lang="CS">
            		 protected void RadTreeView1_NodeCreated(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            		 {
            		     e.Node.ToolTip = e.Node.Text;
            		 }
                </code>
            	<code lang="VB">
            		 Sub RadTreeView1_NodeCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeCreated
            		     e.Node.ToolTip = e.Node.Text
            		 End Sub
                </code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeExpand">
            <summary>
            	Occurs when a node is expanded.
            </summary>
            <remarks>
            	<para>
            		The <b>NodeExpand</b> event will be raised for nodes whose <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode"/> property is set to 
            		<c>ServerSide</c> or <c>ServerSideCallback</c>.
            	</para>
            	<para>
            		The <b>NodeExpand</b> event is commonly used to populate nodes on demand.
            	</para>
            </remarks>
            <example>
            	The following example demonstrates how to use the <b>NodeExpand</b> event to populate nodes on demand.
            	<code lang="CS">
            	protected void RadTreeView1_NodeExpanded(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            	{
            		RadTreeNode nodeCreatedOnDemand = new RadTreeNode("Node created on demand");
            		e.Node.Nodes.Add(nodeCreatedOnDemand);
            	}
            	</code>
            	<code lang="VB">
            	Sub RadTreeView1_NodeExpanded(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs) Handles RadTreeView1.NodeExpanded
            		Dim nodeCreatedOnDemand As RadTreeNode = New RadTreeNode("Node created on demand")
            		e.Node.Nodes.Add(nodeCreatedOnDemand)
            	End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeCollapse">
            <summary>
            	Occurs when a node is collapsed.
            </summary>
            <remarks>
            	The <b>NodeCollapse</b> event is raised only for nodes whose <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode"/> property
            	is set to <c>ServerSide</c>.
            </remarks>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeCheck">
            <summary>
            	Occurs when a node is checked.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeDrop">
            <summary>
            	Occurs when a node (or nodes) is dragged and dropped.
            </summary>
            <remarks>
            	The <b>NodeDrop</b> event is commonly used to move nodes from one location into other.
            </remarks>
            <example>
            	The following example demonstrates how to move the dragged nodes in the destination node.
            	<code lang="CS">
            	protected void RadTreeView1_NodeDrop(object sender, RadTreeNodeDragDropEventArgs e)
            	{
            		foreach (RadTreeNode sourceNode in e.DraggedNodes)
            		{
            			if (!sourceNode.IsAncestorOf(e.DestDragNode))
            			{
            				sourceNode.Remove();
            				e.DestDragNode.Nodes.Add(sourceNode);
            			}
            		}
            	}
            	</code>
            	<code lang="VB">
            	Protected Sub RadTreeView1_NodeDrop(ByVal sender As Object, ByVal e As RadTreeNodeDragDropEventArgs) Handles RadTreeView1.NodeDrop
            		For Each sourceNode As RadTreeNode In e.DraggedNodes
            			If Not sourceNode.IsAncestorOf(e.DestDragNode) Then
            				sourceNode.Remove()
            				e.DestDragNode.Nodes.Add(sourceNode)
            			End If
            		Next
            	End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.NodeEdit">
            <summary>
            	Occurs when a node's text is edited.
            </summary>
            <remarks>
            	The <b>NodeEdit</b> event is commonly used to update the <see cref="P:Telerik.Web.UI.RadTreeNode.Text"/> property after editing.
            </remarks>
            <example>
            	The following example demonstrates how to update the <see cref="P:Telerik.Web.UI.RadTreeNode.Text"/> property after editing
            	<code lang="CS">
            	protected void RadTreeView1_NodeEdit(object sender, RadTreeNodeEditEventArgs e)
            	{
            		RadTreeNode nodeEdited = e.Node;
            		string newText = e.Text;
            		nodeEdited.Text = newText;
            	}
            	</code>
            	<code lang="VB">
            	Protected Sub HandleNodeEdit(ByVal sender As Object, ByVal e As RadTreeNodeEditEventArgs) Handles RadTreeView1.NodeEdit
            		Dim nodeEdited As RadTreeNode = e.Node
            		Dim newText As String = e.Text
            		nodeEdited.Text = newText
            	End Sub
            	</code>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">
            <summary>
                Occurs on the server when a item in the	<see cref="T:Telerik.Web.UI.RadTreeViewContextMenu"/> is clicked.
            </summary>
            <remarks>
            		The context menu will also postback if you navigate to a menu item
                    using the [menu item] key and then press [enter] on the menu item that is focused. The
                    instance of the clicked menu item is passed to the <strong>ContextMenuItemClick</strong> event
                    handler - you can obtain a reference to it using the eventArgs.Item property.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNode">
            <summary>Represents a node in the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.</summary>
            <remarks>
            	<para>
            		The <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control is made up of nodes. Nodes which are immediate children
            		of the treeview are root nodes. Nodes which are children of root nodes are child nodes.
            	</para>
            	<para>
            		A node usually stores data in two properties, the <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property and 
            		the <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property. The value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property is displayed 
            		in the <b>RadTreeView</b> control, and the <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property is used to store additional data.
            	</para>
            	<para>To create tree nodes, use one of the following methods:</para>
            	<list type="bullet">
            		<item>
            			Use declarative syntax to define nodes inline in your page or user control.
            		</item>
            		<item>
            			Use one of the constructors to dynamically create new instances of the
            			<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class. These nodes can then be added to the
            			<b>Nodes</b> collection of another node or treeview.
            		</item>
            		<item>
            			Data bind the <b>RadTreeView</b> control to a data source.
            		</item>
            	</list>
            	<para>
                    When the user clicks a tree node, the <b>RadTreeView</b> control can navigate
                    to a linked Web page, post back to the server or select that node. If the
                    <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> property of a node is set, the
                    <b>RadTreeView</b> control navigates to the linked page. By default, a linked page
                    is displayed in the same window or frame. To display the linked content in a different 
            		window or frame, use the <see cref="P:Telerik.Web.UI.RadTreeNode.Target">Target</see> property.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add node to
                <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> controls. 
                <code lang="CS">
            		RadTreeNode node = new RadTreeNode();
            		node.Text = "News";
            		node.NavigateUrl = "~/News.aspx";
             
            		RadTreeView1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadTreeNode()
            		node.Text = "News"
            		node.NavigateUrl = "~/News.aspx"
             
            		RadTreeView1.Nodes.Add(node)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.#ctor(System.String)">
            <summary>
            	Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class with the
            	specified text data.
            </summary>
            <remarks>
            	Use this constructor to create and initialize a new instance of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class using the specified text.
            </remarks>
            <example>
                The following example demonstrates how to add nodes to
                <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> controls. 
                <code lang="CS">
            		RadTreeNode node = new RadTreeNode("News");
             
            		RadTreeView1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadTreeNode("News")
             
            		RadTreeView1.Nodes.Add(node)
                </code>
            </example>
            <param name="text">
                The text of the node. The <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.#ctor(System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class with the
                specified text and value.
            </summary>
            <remarks>
            	Use this constructor to create and initialize a new instance of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class using the specified text and value.
            </remarks>
            <example>
                This example demonstrates how to add nodes to <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see>
                controls. 
                <code lang="CS">
            		RadTreeNode node = new RadTreeNode("News", "NewsValue");
             
            		RadTreeView1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadTreeNode("News", "NewsValue")
             
            		RadTreeView1.Nodes.Add(node)
                </code>
            </example>
            <param name="text">
                The text of the node. The <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="value">
                The value of the node. The <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property is set to the value of this
                parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.#ctor(System.String,System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class with the
                specified text, value and URL.
            </summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> class using the specified text, value and URL.
            </remarks>
            <example>
                This example demonstrates how to add nodes to <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see>
                controls. 
                <code lang="CS">
            		RadTreeNode node = new RadTreeNode("News", "NewsValue", "~/News.aspx");
             
            		RadTreeView1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadTreeNode("News", "NewsValue", "~/News.aspx")
             
            		RadTreeView1.Nodes.Add(node)
                </code>
            </example>
            <param name="text">
                The text of the node. The <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="value">
                The value of the node. The <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property is set to the value of this
                parameter.
            </param>
            <param name="navigateUrl">
                The url which the node will navigate to. The
                <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> property is set to the value of this
                parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.GetFullPath(System.String)">
            <summary>
            Returns the full path (location) of the node delimited by the specified character.
            </summary>
            <param name="delimiter">The character to use as a delimiter</param>
            <returns>Returns the full path of the node delimited by the specified character.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.CollapseChildNodes">
            <summary>
            Collapses recursively all child nodes of the node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.CollapseParentNodes">
            <summary>
            Expands all parent nodes of the node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.InsertBefore(Telerik.Web.UI.RadTreeNode)">
            <summary>
            Inserts a node before the current node.
            </summary>
            <param name="node">The node to be inserted.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.InsertAfter(Telerik.Web.UI.RadTreeNode)">
            <summary>
            Inserts a node after the current node.
            </summary>
            <param name="node">The node to be inserted.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.IsAncestorOf(Telerik.Web.UI.RadTreeNode)">
            <summary>
            Checks if the current node is ancestor of another node.
            </summary>
            <param name="node">The node to check for.</param>
            <returns>
            <c>True</c> if the current node is ancestor of the other node; otherwise <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.IsDescendantOf(Telerik.Web.UI.RadTreeNode)">
            <summary>
            Checks if the current node is descendant of another node node.
            </summary>
            <param name="node">The node to check for.</param>
            <returns>
            <c>True</c> if the current node is descendant of the other node; otherwise <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.Toggle">
            <summary>
            Toggles Expand/Collapse state of the node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.ExpandChildNodes">
            <summary>
            Expands  all child nodes of the node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.ExpandParentNodes">
            <summary>
            Expands  all parent nodes of the node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.Remove">
            <summary>
            Removes the node from the Nodes collection of its parent
            </summary>
            <example>
            The following example demonstrates how to remove a node.
                <code lang="CS">
            		RadTreeNode node = RadTreeView1.Nodes[0];
            		node.Remove();
                </code>
            	<code lang="VB">
            		Dim node As RadTreeNode = RadTreeView1.Nodes(0)
            		node.Remove()
                </code>		
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.Clone">
            <summary>
            	Creates a copy of the current <see cref="T:Telerik.Web.UI.RadTreeNode"/> object.</summary>
            <returns>
            	A <see cref="T:Telerik.Web.UI.RadTreeNode"/> which is a copy of the current one.</returns>
            <remarks>
            	Use the <strong>Clone</strong> method to create a copy of the current node. All
            	properties of the clone are set to the same values as the current ones. Child nodes are
            	copied as well.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.CheckChildNodes">
            <summary>
            Checks all child nodes of the current node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.UncheckChildNodes">
            <summary>
            Unchecks all child nodes of the current node.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNode.GetAllNodes">
            <summary>
            Gets a linear list of all nodes in the <strong>RadTreeNode</strong>.
            </summary>
            <returns>An <see cref="T:System.Collections.Generic.IList`1">IList&lt;RadTreeNode&gt;</see> containing all nodes (from all hierarchy levels).</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.CssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied by default to the node.
            </summary>
            <remarks>
            By default the visual appearance of hovered nodes is defined in the skin CSS
            file. You can use the <strong>CssClass</strong> property to specify unique
            appearance for the node.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ToolTip">
            <summary>
            Gets or sets the tooltip shown for the node when the user hovers it with the mouse
            </summary>
            <value>
            A string representing the tooltip. The default value is empty string.
            </value>
            <remarks>
            	The ToolTip property is also used as the alt attribute of the node image (in case <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl"/> is set)
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Enabled">
            <summary>
            	Gets or sets a value indicating whether the node is enabled.
            </summary>
            <value>
            	<c>true</c> if the node is enabled; otherwise <c>false</c>. The default value is <c>true</c>.
            </value>
            <remarks>
            	Disabled nodes cannot be clicked, or expanded.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Nodes">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> object that contains the child nodes of the current RadTreeNode.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> that contains the child nodes of the current RadTreeNode. By default
            	the collection is empty (the node has no children).
            </value>
            <remarks>
            	Use the <b>Nodes</b> property to access the child nodes of the RadTreeNode. You can also use the <b>Nodes</b> property to
            	manage the child nodes - you can add, remove or modify nodes.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a child node.
                <code lang="CS">
            		RadTreeNode node = RadTreeView1.FindNodeByText("Test");
            		node.Nodes[0].Text = "Example";
            		node.Nodes[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		Dim node As RadTreeNode = RadTreeView1.FindNodeByText("Test")
            		node.Nodes(0).Text = "Example"
            		node.Nodes(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.DataItem">
            <summary>Gets the data item that is bound to the node</summary>
            <value>
            	An Object that represents the data item that is bound to the node. The default value is null (Nothing in Visual Basic), 
            	which indicates that the node is not bound to any data item. The return value will always be null unless accessed within
            	a <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound">NodeDataBound</see> event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound">NodeDataBound</see> event to perform additional
                mapping of fields from the data item to <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> properties. It assumes the user has subscribed to the
                <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound">NodeDataBound</see> event. 
                <code lang="CS">
            		private void RadTreeView1_NodeDataBound(object sender, Telerik.Web.UI.RadTreeNodeEventArgs e)
            		{
            			e.Node.ImageUrl = "image" + (string)DataBinder.Eval(e.Node.DataItem, "ID") + ".gif";
            			e.Node.NavigateUrl = (string)DataBinder.Eval(e.Node.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadTreeView1_NodeDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTreeNodeEventArgs ) Handles RadTreeView1.NodeDataBound
            			e.Node.ImageUrl = "image" &amp; DataBinder.Eval(e.Node.DataItem, "ID") &amp; ".gif"
            			e.Node.NavigateUrl = CStr(DataBinder.Eval(e.Node.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Text">
            <summary>
            	Gets or sets the text displayed for the current node.
            </summary>
            <value>
            	The text displayed for the node in the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control. The default is empty string.
            </value>
            <remarks>
            	Use the <b>Text</b> property to specify or determine the text that is displayed for the node
            	in the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Value">
            <summary>
            	Gets or sets custom (user-defined) data associated with the current node.
            </summary>
            <value>
            	A string representing the user-defined data. The default value is emptry string.
            </value>
            <remarks>
            	Use the <b>Value</b> property to associate custom data with a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> object. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">
            <summary>
            	Gets or sets the URL to navigate to when the current node is clicked.
            </summary>
            <value>
            	The URL to navigate to when the node is clicked. The default value is empty string which means that
            	clicking the current node will not navigate.
            </value>
            <remarks>
            	<para>
            		Setting the <b>NavigateUrl</b> property will disable node selection and as a result the 
            		<see cref="E:Telerik.Web.UI.RadTreeView.NodeClick">NodeClick</see> event won't be raised for the current node.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Target">
            <summary>
            	Gets or sets the target window or frame in which to display the Web page content associated with the current node.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the node is
                clicked. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without frames.</description>
            			</item>
            		</list>
            	</para>
            	The default value is empty string which means the linked resource will be loaded in the current window.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to target window or frame in which to display the 
            		Web page content associated with the current node. The Web page is specified by
                    the <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>
            		If this property is not set, the Web page specified by the
            		<see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> property is loaded in the current window.
            	</para>
            	<para>
            		The <b>Target</b> property is taken into consideration only when the <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">NavigateUrl</see> 
            		property is set.
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <b>Target</b> property 
                <para>
            		<para class="sourcecode">
            		&lt;telerik:RadTreeView id="RadTreeView1" runat="server"&gt;<br/>
                    &lt;Nodes&gt;<br/>
                    &lt;telerik:RadTreeNode Text="News" NavigateUrl="~/News.aspx"
                    <strong>Target="_self"</strong> /&gt;<br/>
                    &lt;telerik:RadTreeNode Text="External URL" NavigateUrl="http://www.example.com"
                    <strong>Target="_blank"</strong> /&gt;<br/>
                    &lt;/Nodes&gt;<br/>
                    &lt;/telerik:RadTreeView&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed next to the text of a node.
            </summary>
            <value>
            	The URL to the image to display for the node. The default value is empty
            	string which means by default no image is displayed.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	displayed before the text of the current node.
            </remarks>
            <example>
            	<para>
            		The following example demonstrates how to specify the image to display for
            		the node using the <b>ImageUrl</b> property.
            	</para>
                <para class="sourcecode">
               		 &lt;telerik:RadTreeView id="RadTreeView1" runat="server"&gt;<br/>
               		  &lt;Nodes&gt;<br/>
               		  &lt;telerik:RadTreeNode<strong>ImageUrl="~/Img/inbox.gif"</strong>
               		 Text="Index"&gt;&lt;/telerik:RadTreeNode&gt;<br/>
               		  &lt;telerik:RadTreeNode<strong>ImageUrl="~/Img/outbox.gif"</strong>
               		 Text="Outbox"&gt;&lt;/telerik:RadTreeNode&gt;<br/>
               		  &lt;telerik:RadTreeNode<strong>ImageUrl="~/Img/trash.gif"</strong>
               		 Text="Trash"&gt;&lt;/telerik:RadTreeNode&gt;<br/>
               		  &lt;telerik:RadTreeNode<strong>ImageUrl="~/Img/meetings.gif"</strong>
               		 Text="Meetings"&gt;&lt;/telerik:RadTreeNode&gt;<br/>
               		  &lt;/Nodes&gt;<br/>
               		 &lt;/telerik:RadTreeView&gt;
                </para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Category">
            <summary>
            Gets or sets the category of the node.
            </summary>
            <remarks>
            The <c>Category</c> property is similar to the <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property. You
            can use it to associate custom data with the node.
            </remarks>
            <example>
             This example illustrates how to use the Category property during the <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound">NodeDataBound</see> event.
            </example>
            <code lang="CS">
            protected void RadTreeView1_NodeDataBound(object sender, RadTreeNodeEventArgs e)
            {
            	//"NodeCategory" is the database column which provides data for the Category property.
            	e.Node.Category = DataBinder.Eval(e.Node.DataItem, "NodeCategory").ToString();
            }
            </code>
            <code lang="VB">
            Protected Sub RadTreeView1_NodeDataBound(ByVal sender As Object, ByVal e As RadTreeNodeEventArgs) Handles RadTreeView1.NodeDataBound
            	' "NodeCategory" is the database column which provides data for the Category property.
            	e.Node.Category = DataBinder.Eval(e.Node.DataItem, "NodeCategory")
            End Sub
            </code>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.HoveredCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the node when the mouse hovers it.
            </summary>
            <remarks>
            By default the visual appearance of hovered nodes is defined in the skin CSS
            file. You can use the <strong>HoveredCssClass</strong> property to specify unique
            appearance for a node when it is hoevered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the node when it is disabled.
            </summary>
            <remarks>
            By default the visual appearance of disabled nodes is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for a node when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ContentCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the content
            wrapper of the node.
            </summary>
            <remarks>
            You can use the <strong>ContentCssClass</strong> property to specify unique
            appearance for a node content area and its children. Useful when using 
            CSS sprites.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.SelectedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when node is
            selected.
            </summary>
            <remarks>
            By default the visual appearance of selected nodes is defined in the skin CSS
            file. You can use the <strong>SelectedCssClass</strong> property to specify unique
            appearance for a node when it is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ExpandedImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is expanded.
            </summary>
            <remarks>
            If the <c>ExpandedImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is expanded.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.SelectedImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is selected.
            </summary>
            <remarks>
            If the <c>SelectedImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.HoveredImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is hovered with the mouse.
            </summary>
            <remarks>
            If the <c>HoveredImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.DisabledImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is disabled.
            </summary>
            <remarks>
            If the <c>DisabledImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Level">
            <summary>
            Gets the level of the node.
            </summary>
            <value>
            An integer representing the level of the node. Root nodes are level 0 (zero).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.TreeView">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> which the node is part of.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.PostBack">
            <summary>
            Gets or sets a value indicating whether clicking on the node will
            postback.
            </summary>
            <value>
            	<strong>True</strong> if the node should postback; otherwise
                <strong>false</strong>.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadTreeView.NodeClick">NodeClick</see> all nodes
                will postback. To turn off that behavior you can set the
                <strong>PostBack</strong> property to <strong>false</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Expanded">
            <summary>Gets or sets a value indicating whether the node is expanded.</summary>
            <value>
            	<strong>true</strong> if the node is expanded; otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Checked">
            <summary>
            Gets or sets a value indicating whether the node is checked or not.
            </summary>
            <value>
            <c>True</c> if the node is checked; otherwise <c>false</c>. The default value
            is <c>false</c>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.CheckState">
            <summary>
            Gets the checked state of the tree node
            </summary>
            <value>
            One of the <see cref="T:Telerik.Web.UI.TreeNodeCheckState">TreeNodeExpandMode</see> values.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Checkable">
            <summary>
            Gets or sets a value indicating whether the node is checkable. A checkbox control is rendered
            for checkable nodes.
            </summary>
            <remarks>
            If the <see cref="P:Telerik.Web.UI.RadTreeView.CheckBoxes">CheckBoxes</see> property set to <c>true</c>, RadTreeView automatically displays a checkbox next to each node. 
            You can set the <c>Checkable</c> property to <c>false</c> for nodes that do not need to display a checkbox.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Selected">
            <summary>
            Gets or sets a value indicating whether the node is selected.
            </summary>
            <value>
            <c>True</c> if the node is selected; otherwise <c>false</c>. The default value is
            <c>false</c>.
            </value>
            <remarks>
            By default, only one node can be selected. You can enable multiple node selection by setting the
            <see cref="P:Telerik.Web.UI.RadTreeView.MultipleSelect">MultipleSelect</see> property of the 
            parent RadTreeView to <c>true</c>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.AllowDrag">
            <summary>
            Gets or sets a value indicating whether the node can be dragged and dropped.
            </summary>
            <value>
            <c>True</c> if the user is able drag and drop the node; otherwise <c>false</c>.
            The default value is <c>true</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.AllowDrop">
            <summary>
            Gets or sets a value indicating whether the use can drag and drop nodes over this
            node.
            </summary>
            <value>
            <c>True</c> if the user is able to drag and drop nodes over this node; otherwise
            <c>false</c>. The default value is <c>true</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.AllowEdit">
            <summary>
            Gets or sets a value indicating whether the use can edit the text of the node.
            </summary>
            <value>
            <c>True</c> if the node is editable; otherwise <c>false</c>. The default value
            is <c>true</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ExpandMode">
            <summary>
            Gets or sets the expand behavior of the tree node.
            
            When set to ExpandMode.ServerSide the RadTreeView will fire a server event (NodeExpand) so you can populate the node on demand.
            </summary>
            <value>
            On of the <see cref="T:Telerik.Web.UI.TreeNodeExpandMode">TreeNodeExpandMode</see> values. The default value is
            <c>ClientSide</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.LongDesc">
            <summary>
            A Section 508 element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Prev">
            <summary>
            Gets the previous sibling of the node.
            Gets the previous node sibling in the tree structure or returns null if this is the first node in the respective node group.
            </summary>
            <value>
            The previous sibling of the node or null (Nothing) if the node is first in its
            parent <see cref="T:Telerik.Web.UI.RadTreeNodeCollection">RadTreeNodeCollection</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.Next">
            <summary>
            Gets the next sibling of the node.
            </summary>
            <value>
            The next sibling of the node or null (Nothing) if the node is last in its
            parent <see cref="T:Telerik.Web.UI.RadTreeNodeCollection">RadTreeNodeCollection</see>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.NodeTemplate">
             <summary>Gets or sets the template for displaying the node.</summary>
             <value>
             	<para>
            		An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            		(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            		</para>
             	<para>
                     To specify common display for all nodes use the <see cref="P:Telerik.Web.UI.RadTreeView.NodeTemplate"/> property of 
            			the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
                 </para>
             </value>
             <example>
             	<para>The following template demonstrates how to add a Calendar control in certain
                 node.</para>
             	<para>ASPX:</para>
            		<para>
            &lt;telerik: RadTreeView runat="server" ID="RadTreeView1"&gt;
                &lt;Nodes&gt;
                    &lt;telerik:RadTreeNode Text="Root Node" Expanded="True" &gt;
                        &lt;Nodes&gt;
                            &lt;telerik:RadTreeNode&gt;
                                &lt;NodeTemplate&gt;
                                    &lt;asp:Calendar ID="Calendar1" runat="server"&gt;&lt;/asp:Calendar&gt;
                                &lt;/NodeTemplate&gt;
                            &lt;/telerik:RadTreeNode&gt;
                        &lt;/Nodes&gt;
                    &lt;/telerik:RadTreeNode&gt;
                &lt;/Nodes&gt;
            &lt;/telerik:RadTreeView&gt;
            		</para>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.FullPath">
            <summary>
            Gets the full path (location) of the node.
            </summary>
            <value>
            A slash delimited path of the node. The path is constructed based on the <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property
            of the node and its parents. For example if the Text of the node it "Houston", its parent node is "Texas" and its parent (root) 
            is "U.S.A", FullPath will return "U.S.A/Texas/Houston"
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ParentNode">
            <summary>
            Gets the parent node of the current node.
            </summary>
            <value>
            The parent node. If the the node is a root node null (Nothing) is returned.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.ContextMenuID">
            <summary>
            	Gets or sets a value indicating the ID of the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu"/> displayed for the current node.
            </summary>
            <value>
            	A string representing the ID of the context menu associated with the current node. The default value is empty string.
            </value>
            <remarks>
            	If the <b>ContextMenuID</b> property is not set the first context menu from the <see cref="P:Telerik.Web.UI.RadTreeView.ContextMenus"/> collection
            	will be used.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNode.EnableContextMenu">
            <summary>
            Gets or sets a value indicating whether a context menu should be displayed for the current node.
            </summary>
            <value>
            	<c>True</c> if a context menu should be displayed for the current node; otherwise <c>false</c>. The default
            	value is <c>false</c>.
            </value>
            <remarks>
            	Use the <b>EnableContextMenu</b> property to disable the context menu for particular nodes.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> objects in a
                <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
            <remarks>
            	The <strong>RadTreeNodeCollection</strong> class represents a collection of
                <strong>RadTreeNode</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadTreeNodeCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadTreeNode from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of menu items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadTreeNodeCollection.Add(Telerik.Web.UI.RadTreeNode)">Add</see> method to add nodes in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadTreeNodeCollection.Remove(Telerik.Web.UI.RadTreeNode)">Remove</see> method to remove nodes from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.Add(Telerik.Web.UI.RadTreeNode)">
            <summary>
            	Appends the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <param name="node">
            	The <see cref="T:Telerik.Web.UI.RadTreeNode"/> to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add nodes in a <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            	<code lang="CS">
            		RadTreeNode newsNode = new RadTreeNode("News");
            		RadTreeView1.Nodes.Add(newsNode);
                </code>
            	<code lang="VB">
            		Dim newsNode As RadTreeNode = New RadTreeNode("News")
            		RadTreeView1.Nodes.Add(newsNode)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.Remove(Telerik.Web.UI.RadTreeNode)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object from the current
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <param name="node">
            	The <see cref="T:Telerik.Web.UI.RadTreeNode"/> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadTreeNode"/> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the node to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.Contains(Telerik.Web.UI.RadTreeNode)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <param name="node">
            	The <see cref="T:Telerik.Web.UI.RadTreeNode"/> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object; 
            	otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.CopyTo(Telerik.Web.UI.RadTreeNode[],System.Int32)">
            <summary>
            	Copies the <see cref="T:Telerik.Web.UI.RadTreeNode"/> instances stored in the current
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> object to an System.Array object, beginning at the specified 
            	index location in the System.Array. 
            </summary>
            <param name="array">The System.Array to copy the <see cref="T:Telerik.Web.UI.RadTreeNode"/> instances to.</param>
            <param name="index">The zero-based relative index in array where copying begins.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadTreeNode})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadTreeNode"/> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple nodes in a single step. 
                <code lang="CS">
            		RadTreeNode[] nodes = new RadTreeNode[] { new RadTreeNode("First"), new RadTreeNode("Second"), new RadTreeNode("Third") };
            		RadTreeView1.Nodes.AddRange(nodes);
                </code>
            	<code lang="VB">
                    Dim nodes() As RadTreeNode = {New RadTreeNode("First"), New RadTreeNode("Second"), New RadTreeNode("Third")}
                    RadTreeView1.Nodes.AddRange(nodes)
                </code>
            </example>
            <param name="nodes">
                The array of <see cref="T:Telerik.Web.UI.RadTreeNode"/> to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.IndexOf(Telerik.Web.UI.RadTreeNode)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object in the collection.
            </summary>
            <param name="node">
            	The <see cref="T:Telerik.Web.UI.RadTreeNode"/> to locate.
            </param>
            <returns>
            	The zero-based index of tab within the current <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.Insert(System.Int32,Telerik.Web.UI.RadTreeNode)">
            <summary>
            	Inserts the specified <see cref="T:Telerik.Web.UI.RadTreeNode"/> object in the current 
            	<see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadTreeNode"/>.</param>
            <param name="node">The <see cref="T:Telerik.Web.UI.RadTreeNode"/> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNodeByText(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>Text</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNodeByText(System.String,System.Boolean)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>Text</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNodeByValue(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property
            equal to the specified value.
            </summary>
            <param name="value">The value to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>Value</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNodeByValue(System.String,System.Boolean)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</cee> with a <see cref="P:Telerik.Web.UI.RadTreeNode.Value">Value</see> property
            equal to the specified value.
            </summary>
            <param name="value">The value to search for</param>
            <returns>A <c>RadTreeNode</c> whose <c>Value</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNodeByAttribute(System.String,System.String)">
            <summary>
            Searches the nodes in the collection for a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadTreeNode</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.FindNode(System.Predicate{Telerik.Web.UI.RadTreeNode})">
            <summary>
            Returns  the first <strong>RadTreeNode</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindNode</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadTreeView1.FindNode(NodeWithEqualsTextAndValue);
            }
            private static bool NodeWithEqualsTextAndValue(RadTreeNode node)
            {
                if (node.Text == node.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadTreeView1.FindNode(NodeWithEqualsTextAndValue)
            End Sub
            Private Shared Function NodeWithEqualsTextAndValue(ByVal node As RadTreeNode) As Boolean
                If node.Text = node.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.SetOwner(Telerik.Web.UI.ControlItem)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeCollection.AddItemToParentControls(System.Int32,Telerik.Web.UI.ControlItem)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadTreeNode"/>object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadTreeNode"/> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadTreeNode"/> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadTreeNodeCollection"/>.
            </returns>
        </member>
        <member name="F:Telerik.Web.UI.EditorToolType.Button">
            <summary>
            A tool which will be rendered as a button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorToolType.DropDown">
            <summary>
            A tool which will be rendered as a dropdown
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorToolType.SplitButton">
            <summary>
            A tool which will be rendered as a split button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorToolType.Separator">
            <summary>
            A tool which will be rendered as a separator
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorToolType.ToolStrip">
            <summary>
            A tool which will be rendered as a toolstrip
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorToolGroup">
            <summary>
            Represents logical group of EditorTool objects. The default ToolAdapter will
            render the EditorToolGroup object as a toolbar.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.System#Web#UI#IAttributeAccessor#GetAttribute(System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.System#Web#UI#IAttributeAccessor#SetAttribute(System.String,System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.GetAllTools">
            <summary>
            Gets all tools inside the group.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.FindTool(System.String)">
            <summary>
            Finds the tool with the given name.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.Contains(System.String)">
            <summary>
            Determines whether the group a tool with the specified name.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorToolGroup.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorToolGroup.Attributes">
            <summary>
            Gets the custom attributes which will be serialized on the client.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorToolGroup.Tag">
            <summary>
            Gets or sets a string which will be used by the ToolAdapter to associate
            the group with the adapter's virtual structure. In the default adapter this 
            is the name of the docking zone where the toolbar should be placed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorToolGroup.Tools">
            <summary>
            Gets the children of the EditorToolGroup.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorToolGroupCollection">
            <summary>
            State managed collection of EditorToolGroup objects
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorTool">
            <summary>
            Represents a single RadEditor tool.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorTool.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorTool"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorTool.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorTool"/> class.
            </summary>
            <param name="name">The name of the tool.</param>
        </member>
        <member name="M:Telerik.Web.UI.EditorTool.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.EditorTool"/> class.
            </summary>
            <param name="name">The name of the tool.</param>
            <param name="shortCut">The shortcut for the tool.</param>
        </member>
        <member name="M:Telerik.Web.UI.EditorTool.EnsureName">
            <summary>
            Throws an exception if the EditorTool has no name.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.Enabled">
            <summary>
            Gets or sets a value indicating whether this <see cref="T:Telerik.Web.UI.EditorTool"/> is enabled.
            </summary>
            <value><c>true</c> if enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.Name">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.EditorTool"/> name. It will be used by RadEditor to find
            the command which should be executed when the user clicks this tool.
            </summary>
            <value>The tool name.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.Text">
            <summary>
            Gets or sets the title of the <see cref="T:Telerik.Web.UI.EditorTool"/>. The default ToolAdapter will 
            render the value of this property as a tooltip or static text near the
            tool icon.
            </summary>
            <value>The text.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.ShortCut">
            <summary>
            Gets or sets the keyboard shortcut which will invoke the associated
            RadEditor command.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.ImageUrl">
            <summary>
            This property sets the tool's small icon for RibbonBar mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.ImageUrlLarge">
            <summary>
            This property sets the tool's large icon for RibbonBar mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.ShowIcon">
            <summary>
            Gets or sets a value indicating whether the tool icon should be displayed.
            </summary>
            <value><c>true</c> if the tool icon should be displayed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.ShowText">
            <summary>
            Gets or sets a value indicating whether the tool text should be displayed.
            </summary>
            <value><c>true</c> if the tool text should be displayed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.EditorTool.Type">
            <summary>
            Gets or sets the type of the tool - by default it is a button		
            </summary>
            <value>The type of the tool on the client.</value>
        </member>
        <member name="T:Telerik.Web.UI.DisplayFormatPosition">
            <summary>
            Summary description for DisplayFormatPosition.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputClientEvents.OnEnumerationChanged">
            <summary>
            Fired whenever the value of any enumeration mask part has changed.
            </summary>
            <remarks>
            Note this event is effective only for the RadMaskedTextBox control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.InputClientEvents.OnMoveUp">
            <summary>
            Fired whenever the user increases the value of any enumeration or numeric range mask part of RadMaskedTextBox 
            (with either keyboard arrow keys or mouse wheel).
            </summary>
            <remarks>
            Note this event is effective only for the RadMaskedTextBox control.
            </remarks> 
        </member>
        <member name="P:Telerik.Web.UI.InputClientEvents.OnMoveDown">
            <summary>
            Fired whenever the user decreases the value of any enumeration or numeric range mask part of RadMaskedTextBox 
            (with either keyboard arrow keys or mouse wheel).
            </summary>
            <remarks>
            Note this event is effective only for the RadMaskedTextBox control.
            </remarks>  
        </member>
        <member name="T:Telerik.Web.UI.DigitMaskPart">
            <summary>Represents a single character, digit only mask part.</summary>
            <example>
                This example demonstrates how to add a <strong>DigitMaskPart</strong> object in the
                <strong>MaskParts</strong> property of RadMaskedTextBox.
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                DigitMaskPart digitPart = new DigitMaskPart();
                RadMaskedTextBox1.MaskParts.Add(digitPart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim digitPart As New DigitMaskPart()
                RadMaskedTextBox1.MaskParts.Add(digitPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.MaskPart">
            <summary>The abstract base class of all mask parts.</summary>
            <remarks>This class is not intended to be used directly.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.MaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.DigitMaskPart.ToString">
            <summary>
            Returns the friendly name of the part.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DigitMaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.EnumerationMaskPart">
            <summary>
            Represents a MaskPart object which accepts only a predefined set of
            options.
            </summary>
            <example>
                This example demonstrates how to add an <strong>EnumerationMaskPart</strong> object
                in the <strong>MaskParts</strong> property of RadMaskedTextBox. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                EnumerationMaskPart enumPart = new EnumerationMaskPart();
                enumPart.Items.Add("Mon");
                enumPart.Items.Add("Two");
                enumPart.Items.Add("Wed");
                enumPart.Items.Add("Thu");
                enumPart.Items.Add("Fri");
                enumPart.Items.Add("Sat");
                enumPart.Items.Add("Sun");
                
                RadMaskedTextBox1.MaskParts.Add(enumPart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim  enumPart As New EnumerationMaskPart
                enumPart.Items.Add("Mon")
                enumPart.Items.Add("Two")
                enumPart.Items.Add("Wed")
                enumPart.Items.Add("Thu")
                enumPart.Items.Add("Fri")
                enumPart.Items.Add("Sat")
                enumPart.Items.Add("Sun")
                
                RadMaskedTextBox1.MaskParts.Add(enumPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.EnumerationMaskPart.ToString">
            <summary>Returns the friendly name of the part.</summary>
        </member>
        <member name="P:Telerik.Web.UI.EnumerationMaskPart.Items">
            <summary>
            Gets the options collection of the part.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.EnumerationMaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.FreeMaskPart">
            <summary>
            Represents a single character MaskPart object which accepting any
            character.
            </summary>
            <example>
                This example demonstrates how to add a <strong>FreeMaskPart</strong> object in the
                <strong>MaskParts</strong> property of RadMaskedTextBox. 
                <code lang="CS" title=" ">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                FreeMaskPart freePart = new FreeMaskPart();
                RadMaskedTextBox1.MaskParts.Add(freePart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim fixedPart As New FreeMaskPart()
                RadMaskedTextBox1.MaskParts.Add(fixedPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.FreeMaskPart.ToString">
            <summary>
            Returns the friendly name of the part.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.LiteralMaskPart">
            <summary>Represents a multi character MaskPart whose content cannot be modified.</summary>
            <example>
                This example demonstrates how to add a <strong>LiteralMaskPart</strong> object in
                the <strong>MaskParts</strong> property of RadMaskedTextBox.
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                LiteralMaskPart literalPart = new LiteralMaskPart();
                literalPart.Text = "(";
                RadMaskedTextBox1.MaskParts.Add(literalPart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim literalPart As New LiteralMaskPart()
                RadMaskedTextBox1.MaskParts.Add(literalPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.LiteralMaskPart.ToString">
            <summary>
            Returns the friendly name of the part.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LiteralMaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.LiteralMaskPart.Text">
            <summary>Gets or sets the string that the LiteralMaskPart will render.</summary>
        </member>
        <member name="T:Telerik.Web.UI.LowerMaskPart">
            <summary>
            Represents a single character MaskPart. The character is converted to lower upon
            input.
            </summary>
            <example>
                This example demonstrates how to add a <strong>LowerMaskPart</strong> object in the
                <strong>MaskParts</strong> property of RadMaskedTextBox. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                LowerMaskPart lowerPart = new LowerMaskPart();
                RadMaskedTextBox1.MaskParts.Add(lowerPart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim lowerPart As New LowerMaskPart()
                RadMaskedTextBox1.MaskParts.Add(lowerPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.LowerMaskPart.ToString">
            <summary>
            Returns the friendly name of the part.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LowerMaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.MaskPartCollection">
            <summary>Represents the collection of mask parts in a RadMaskedTextBox.</summary>
        </member>
        <member name="M:Telerik.Web.UI.MaskPartCollection.Add(Telerik.Web.UI.MaskPart)">
            <summary>
                Appends the specified <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to
                the end of the collection.
            </summary>
            <param name="part">
                The <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to append to the
                collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.MaskPartCollection.Insert(System.Int32,Telerik.Web.UI.MaskPart)">
            <summary>
                Inserts the specified <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> in
                the collection at the specified index location.
            </summary>
            <param name="index">
                The location in the collection to insert the
                <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see>.
            </param>
            <param name="part">
                The <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to add to the
                collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.MaskPartCollection.Contains(Telerik.Web.UI.MaskPart)">
            <summary>Determines whether the collection contains the specified item</summary>
            <returns>
            	<strong>true</strong> if the collection contains the specified
                <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see>; otherwise
                <strong>false</strong>.
            </returns>
            <param name="part">
                The <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to search for in the
                collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.MaskPartCollection.Remove(Telerik.Web.UI.MaskPart)">
            <summary>
            	<para>
                    Removes the specified <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see>
                    from the collection.
                </para>
            </summary>
            <param name="part">
                The <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to remove from the
                collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.MaskPartCollection.IndexOf(Telerik.Web.UI.MaskPart)">
            <summary>
                Determines the index value that represents the position of the specified
                <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> in the collection.
            </summary>
            <returns>
                The zero-based index position of the specified
                <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> in the collection.
            </returns>
            <param name="part">
                A <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> to search for in the
                collection.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.MaskPartCollection.Owner">
            <summary>
            Gets or sets the <strong>RadMaskedInputControl</strong>, which uses the
            collection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.MaskPartCollection.Item(System.Int32)">
            <summary>
                Gets a <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see> at the specified
                index in the collection.
            </summary>
            <value>
                Use this indexer to get a <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see>
                from the
                <see cref="T:Telerik.Web.UI.MaskPartCollection">MaskPartCollection</see> at the
                specified index, using array notation.
            </value>
            <param name="index">
                The zero-based index of the <see cref="T:Telerik.Web.UI.MaskPart">MaskPart</see>
                to retrieve from the collection.
            </param>
        </member>
        <member name="T:Telerik.Web.UI.NumericRangeMaskPart">
            <summary>Represents a MaskPart which accepts numbers in a specified range.</summary>
            <example>
                This example demonstrates how to add a <strong>NumericRangeMaskPart</strong> object
                in the <strong>MaskParts</strong> collection of RadMaskedTextBox. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                NumericRangeMaskPart rangePart = new NumericRangeMaskPart();
                rangePart.LowerLimit = 0;
                rangePart.UpperLimit = 255;
                RadMaskedTextBox1.MaskParts.Add(rangePart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim rangePart As New NumericRangeMaskPart()
                rangePart.LowerLimit = 0
                rangePart.UpperLimit = 255
                RadMaskedTextBox1.MaskParts.Add(rangePart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.NumericRangeMaskPart.ToString">
            <summary>Returns the friendly name of the part.</summary>
        </member>
        <member name="P:Telerik.Web.UI.NumericRangeMaskPart.Value">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.NumericRangeMaskPart.LowerLimit">
            <summary>Gets or sets the smallest possible value the part can accept.</summary>
            <value>
            An integer representing the smallest acceptable number that the
            NumericRangeMaskPart can accept. The default value is 0.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.NumericRangeMaskPart.UpperLimit">
            <summary>Gets or sets the largest possible value the part can accept.</summary>
            <value>
            An integer representing the largest acceptable number that the
            NumericRangeMaskPart can accept. The default value is 0.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.UpperMaskPart">
            <summary>
            Represents a single character MaskPart. The character is converted to upper upon
            input. .
            </summary>
            <example>
                This example demonstrates how to add an <strong>UpperMaskPart</strong> object in
                the <strong>MaskParts</strong> collection of RadMaskedTextBox. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            { 
                UpperMaskPart upperPart = new UpperMaskPart();
                RadMaskedTextBox1.MaskParts.Add(upperPart);
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                Dim upperPart As New UpperMaskPart()
                RadMaskedTextBox1.MaskParts.Add(upperPart)
            End Sub
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.UpperMaskPart.ToString">
            <summary>Returns the friendly name of the part.</summary>
        </member>
        <member name="T:Telerik.Web.UI.NumericRangeAlign">
            <summary>
            Numeric range alignment options
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.NumericRangeAlign.Left">
            <summary>
            The numbers are aligned left
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.NumericRangeAlign.Right">
            <summary>
            The numbers are aligned right
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMaskedTextBox">
            <summary>
            Telerik RadMaskedTextBox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.DecimalSeparator">
            <summary>Gets or sets the string to use as the decimal separator in values.</summary>
            <value>The string to use as the decimal separator in values.</value>
            <exception cref="T:System.ArgumentException" caption="ArgumentException">The property is being set to an empty string.</exception>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.CultureNativeDecimalSeparator">
            <summary>Gets the native decimal separator of the control's culture.</summary>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.DecimalDigits">
            <summary>Gets or sets the number of decimal places to use in numeric values</summary>
            <value>The number of decimal places to use in values.</value>
            <permission cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 99. </permission>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.GroupSizes">
            <summary>
            Gets or sets the number of digits in each group to the left of the decimal in
            values.
            </summary>
            <value>The number of digits in each group to the left of the decimal in values.</value>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.GroupSeparator">
            <summary>
            Gets or sets the string that separates groups of digits to the left of the
            decimal in values.
            </summary>
            <value>
            The string that separates groups of digits to the left of the decimal in
            values.
            </value>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.NegativePattern">
            <summary>Gets or sets the format pattern for negative values.</summary>
            <value>The format pattern for negative percent values.</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 11. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.PositivePattern">
            <summary>Gets or sets the format pattern for positive values.</summary>
            <value>The format pattern for positive percent values. The</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 3. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumberFormatSettings.ZeroPattern">
            <summary>Gets or sets the format pattern for zero values.</summary>
            <value>The format pattern for zero percent values. The</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 3. </exception>
        </member>
        <member name="T:Telerik.Web.UI.RadNumericTextBox">
            <summary>
            Telerik RadNumericTextBox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.NegativeStyle">
            <summary>
            	<para>Gets the style properties for RadInput when when the text is
                negative.</para>
            </summary>
            <value>
            A Telerik.WebControls.TextBoxStyle object that represents the style properties
            for RadInput control. The default value is an empty TextBoxStyle object.
            </value>
            <example>
            	<para>The following code example demonstrates how to set NegativeStyle
                property:</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/><br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head runat="server"&gt;<br/>    &lt;title&gt;Untitled Page&lt;/title&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;radI:RadTextBox Text="-1" EmptyMessage="EmptyMessage" ID="RadNumericTextBox1" runat="server"&gt;<br/>            &lt;NegativeStyle BackColor="red" /&gt;<br/>        &lt;/radI:RadTextBox&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <remarks>
            	<para>Use this property to provide a custom style for the negative state of
                RadInput control. Common style attributes that can be adjusted include
                foreground color, background color, font, and alignment within the RadInput.
                Providing a different style enhances the appearance of the RadInput
                control.</para>
            	<para>Negative style properties in the RadInput control are inherited from one
                style property to another through a hierarchy. For example, if you specify a red
                font for the EnabledStyle property, all other style properties in the RadInput
                control will also have a red font. This allows you to provide a common appearance
                for the control by setting a single style property. You can override the inherited
                style settings for an item style property that is higher in the hierarchy by
                setting its style properties. For example, you can specify a blue font for the
                NegativeStyle property, overriding the red font specified in the EnabledStyle
                property.</para>
            	<para>To specify a custom style, place the &lt;NegativeStyle&gt; tags between the
                opening and closing tags of the RadInput control. You can then list the style
                attributes within the opening &lt;NegativeStyle&gt; tag.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.Value">
            <summary>Gets or sets the value of the RadInput control.</summary>
            <remarks>
            	<para>Use the Text property to specify or determine the text displayed in the
                RadInput control. To limit the number of characters accepted by the control, set
                the MaxLength property. If you want to prevent the text from being modified, set
                the ReadOnly property.</para>
            	<para>The value of this property, when set, can be saved automatically to a
                resource file by using a designer tool.</para>
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <value>
            null if the Text property is Empty.The Value property are Nullable Double type. A
            nullable type can represent the normal range of values for its underlying value type,
            plus an additional null value. For example, a Nullable&lt;Double&gt;, pronounced
            "Nullable of Double," can be assigned any value from -2^46 (-70368744177664) to
            2^46 (70368744177664), or it can be assigned the null value.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.DbValue">
            <summary>
            Gets or sets the date content of RadNumericTextBox in a database friendly
            way.
            </summary>
            <value>An object that represents the Text property. The default value is null.</value>
            <remarks>
            This property behaves exactly like the Value property. The only difference is
            that it will not throw an exception if the new value is not double object (or null). If
            you assign null to the control you will see blank RadInput.
            </remarks>
            <example>
            	<para>The following example demonstrates how to bind the RadNumericTextBox:</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/><br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head runat="server"&gt;<br/>&lt;title&gt;Untitled Page&lt;/title&gt;<br/>&lt;script runat="server"&gt;<br/>protected void Page_Load(object sender, EventArgs e)<br/>{<br/>  System.Data.DataTable table = new System.Data.DataTable();<br/>  table.Columns.Add("num");<br/>
            		<br/>    System.Data.DataRow row = table.NewRow();<br/>   row["num"] = (double)12.56;<br/> table.Rows.Add(row);<br/>
            		<br/>    row = table.NewRow();<br/>       row["num"] = (int)12;<br/>       table.Rows.Add(row);<br/>
            		<br/>    row = table.NewRow();<br/>       row["num"] = DBNull.Value;<br/>  table.Rows.Add(row);<br/>
            		<br/>    row = table.NewRow();<br/>       row["num"] = "33";<br/>  table.Rows.Add(row);<br/>
            		<br/>    row = table.NewRow();<br/>       table.Rows.Add(row);<br/>
            		<br/>    Repeater1.DataSource = table;<br/>       Repeater1.DataBind();<br/>}<br/>&lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;form id="form1" runat="server"&gt;<br/>    &lt;asp:Repeater runat="server" ID="Repeater1"&gt;<br/>          &lt;ItemTemplate&gt;<br/>                        &lt;radI:RadNumericTextBox DbValue='&lt;/%# Bind("num") /%&gt;'<br/>                             ID="RadNumericTextBox1" runat="server"&gt;<br/>                  &lt;/radI:RadNumericTextBox&gt;<br/>             &lt;/ItemTemplate&gt;<br/>       &lt;/asp:Repeater&gt;<br/>&lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            	<para>[VisualBasic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>&lt;!DOCTYPE html Public "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/><br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head runat="server"&gt;<br/>&lt;title&gt;Untitled Page&lt;/title&gt;<br/>&lt;script runat="server"&gt;<br/>Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load<br/>      Dim table As System.Data.DataTable = New System.Data.DataTable<br/>      table.Columns.Add("num")<br/>    Dim row As System.Data.DataRow = table.NewRow<br/>       row("num") = CType(12.56,Double)<br/>    table.Rows.Add(row)<br/> row = table.NewRow<br/>  row("num") = CType(12,Integer)<br/>      table.Rows.Add(row)<br/> row = table.NewRow<br/>  row("num") = DBNull.Value<br/>   table.Rows.Add(row)<br/> row = table.NewRow<br/>  row("num") = "33"<br/>   table.Rows.Add(row)<br/> row = table.NewRow<br/>  table.Rows.Add(row)<br/> Repeater1.DataSource = table<br/>        Repeater1.DataBind<br/>End Sub<br/>&lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>&lt;form id="form1" runat="server"&gt;<br/> &lt;asp:Repeater runat="server" ID="Repeater1"&gt;<br/>          &lt;ItemTemplate&gt;<br/>                        &lt;radI:RadNumericTextBox DbValue='&lt;/%# Bind("num") /%&gt;'<br/>                             ID="RadNumericTextBox1" runat="server"&gt;<br/>                  &lt;/radI:RadNumericTextBox&gt;<br/>             &lt;/ItemTemplate&gt;<br/>       &lt;/asp:Repeater&gt;<br/>&lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.ShowSpinButtons">
            <summary>
            Gets or sets a value indicating whether the button is displayed in the
            RadInput control.
            </summary>
            <value>
            true if the button is displayed; otherwise, false. The default value is true,
            however this property is only examined when the ButtonTemplate property is not a null
            reference (Nothing in Visual Basic).
            </value>
            <remarks>
            	<para>Use the ShowButton property to specify whether the button is displayed in the
                RadInput control.</para>
            	<para>The contents of the button are controlled by the ButtonTemplate
                property.</para>
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the ShowButton property to
                display the button in the RadInput control.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" /%&gt;<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd" &gt;<br/>
            		<br/>&lt;html xmlns="http://www.w3.org/1999/xhtml" &gt;<br/>&lt;head id="Head1" runat="server"&gt;<br/>    &lt;title&gt;Untitled Page&lt;/title&gt;<br/>    &lt;script language="javascript" type="text/javascript"&gt;<br/>    function Click(sender)<br/>    {<br/>        alert("click");<br/>    }<br/>    &lt;/script&gt;<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;radI:RadTextBox ShowButton="true" ID="RadNumericTextBox1" runat="server"&gt;<br/>            &lt;ClientEvents OnButtonClick="Click" /&gt;<br/>            &lt;ButtonTemplate&gt;<br/>               &lt;input type="button" value="click here"  /&gt;<br/>            &lt;/ButtonTemplate&gt;<br/>        &lt;/radI:RadTextBox&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
            </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements> 
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.DataType">
            <summary>Type of object that is used to wrap the Db<tt>Value</tt> property.</summary>
            <remarks>
            	<div class="section" id="remarksSection" name="collapseableSection">
            		<para class="body">That property is designed to be used when this control is
                    embedded into grid or other data-bound control.</para>
            		<para class="note">Default value is set to the <tt>Double</tt>.</para>
            	</div>
            </remarks>
            <value>Default value is set to the <tt>Double</tt>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.Culture">
            <summary>Gets or sets the culture used by RadNumericTextBox to format the numburs.</summary>
            <value>
            A CultureInfo object that represents the current culture used. The default value
            is System.Threading.Thread.CurrentThread.CurrentUICulture.
            </value>
            <example>
                The following example demonstrates how to use the Culture property. 
                <code lang="CS" title="C#">
            private void Page_Load(object sender, System.EventArgs e)
            {
            RadNumericTextBox.Culture = new CultureInfo("en-US");
            }
                </code>
            	<code lang="VB" title="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
            RadNumericTextBox1.Culture = New CultureInfo("en-US")
            End Sub
                </code>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.MaxValue">
            <summary>Gets or sets the largest possible value of a RadNumericTextBox.</summary>
            <value>The default value is positive 2^46.</value>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.MinValue">
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
            <summary>
            	<br/>
            Gets or sets the smallest possible value of a RadNumericTextBox.
            </summary>
            <value>The default value is negative -2^46.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.AllowOutOfRangeAutoCorrect">
            <summary>
            Gets or sets whether the RadNumericTextBox should autocorrect out of range values to valid values or leave them visible to the user and apply its InvalidStyle. If the InvalidStyle is applied, the control will have no value.
            </summary>
            <value>The default value is true</value>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.Type">
            <summary>Gets or sets the numeric type of the RadNumericTextBox.</summary>
            <value>One of the NumericType enumeration values. The default is Number.</value>
            <remarks>
            Use the Type property to determine the numeric type that the RadNumericTextBox
            represents. The Type property is represented by one of the NumericType enumeration
            values.
            </remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.ButtonDownContainer">
            <summary>Gets control that contains the up button of RadInput control</summary>
            <remarks>The ShowButton or ShowSpinButton properties must be set to true</remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadNumericTextBox.ButtonUpContainer">
            <summary>Gets control that contains the up button of RadInput control</summary>
            <remarks>The ShowButton or ShowSpinButton properties must be set to true</remarks>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="T:Telerik.Web.UI.SelectionOnFocus">
            <summary>
            Summary description for AutoPostBackControl.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTextBox">
            <summary>
            Telerik RadTextBox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTextBox.TextMode">
            <summary>
            Gets or sets the behavior mode (single-line, multiline, or password) of the
            RadTextBox control.
            </summary>
            <value>
            One of the RadInputTextBoxMode enumeration values. The default value is
            SingleLine.
            </value>
            <remarks>
            	<para>Use the TextMode property to specify whether a RadTextBox control is
                displayed as a single-line, multiline, or password text box.</para>
            	<para>When the RadTextBox control is in multiline mode, you can control the number
                of rows displayed by setting the Rows property. You can also specify whether the
                text should wrap by setting the Wrap property.</para>
            	<para>If the RadTextBox control is in password mode, all characters entered in the
                control are masked.</para>
            	<para>This property cannot be set by themes or style sheet themes</para>
            </remarks>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="System.ArgumentOutOfRangeException">The specified mode is not one of the TextBoxMode enumeration values.</exception>
            <example>
                The following code example demonstrates how to use the RadTextMode property to
                specify a multiline text box. This example has a text box that accepts user input,
                which is a potential security threat. By default, ASP.NET Web pages validate that
                user input does not include script or HTML elements. 
                <code lang="VB" title="Visual Basic">
            &lt;%@ Page Language="VB" AutoEventWireup="True" %&gt;
             
            &lt;%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html&gt;
            &lt;head&gt;
                &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;
             
                &lt;script runat="server"&gt;
             
                  Protected Sub SubmitButton_Click(sender As Object, e As EventArgs )
                           
                     Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text
             
                  End Sub
             
                  Protected Sub Check_Change(sender As Object, e As EventArgs )
                     
                     Comment.Wrap = WrapCheckBox.Checked
                     Comment.ReadOnly = ReadOnlyCheckBox.Checked
             
                  End Sub
             
                &lt;/script&gt;
             
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;h3&gt;
                        MultiLine RadTextBox Example
                    &lt;/h3&gt;
                    Please enter a comment and click the submit button.
                    &lt;br /&gt;
                    &lt;br /&gt;
                    &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;
                    &lt;br /&gt;
                    &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"
                        ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"
                        OnCheckedChanged="Check_Change" runat="server" /&gt;
                      
                    &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"
                        OnCheckedChanged="Check_Change" runat="server" /&gt;
                      
                    &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;
                    &lt;hr /&gt;
                    &lt;asp:Label ID="Message" runat="server" /&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            	<code lang="CS" title="C#">
            &lt;%@ Page Language="C#" AutoEventWireup="True" %&gt;
             
            &lt;%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" %&gt;
             
            &lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;
            &lt;html&gt;
            &lt;head&gt;
                &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;
             
                &lt;script runat="server"&gt;
             
                    protected void SubmitButton_Click(Object sender, EventArgs e)
                    {
             
                        Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text;
             
                    }
             
                    protected void Check_Change(Object sender, EventArgs e)
                    {
             
                        Comment.Wrap = WrapCheckBox.Checked;
                        Comment.ReadOnly = ReadOnlyCheckBox.Checked;
             
                    }
             
                &lt;/script&gt;
             
            &lt;/head&gt;
            &lt;body&gt;
                &lt;form id="form1" runat="server"&gt;
                    &lt;h3&gt;
                        MultiLine RadTextBox Example
                    &lt;/h3&gt;
                    Please enter a comment and click the submit button.
                    &lt;br /&gt;
                    &lt;br /&gt;
                    &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;
                    &lt;br /&gt;
                    &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"
                        ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"
                        OnCheckedChanged="Check_Change" runat="server" /&gt;
                      
                    &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"
                        OnCheckedChanged="Check_Change" runat="server" /&gt;
                      
                    &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;
                    &lt;hr /&gt;
                    &lt;asp:Label ID="Message" runat="server" /&gt;
                &lt;/form&gt;
            &lt;/body&gt;
            &lt;/html&gt;
                </code>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadTextBox.Rows">
            <summary>Gets or sets the number of rows displayed in a multiline RadTextBox.</summary>
            <value>
            The number of rows in a multiline RadTextBox. The default is 0, which displays a
            two-line text box.
            </value>
            <remarks>
            Use the Rows property to specify the number of rows displayed in a multiline
            RadTextBox. This property is applicable only when the TextMode property is set to
            MultiLine. This property cannot be set by themes or style sheet themes. This example
            has a text box that accepts user input, which is a potential security threat. By
            default, ASP.NET Web pages validate that user input does not include script or HTML
            elements.
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the Rows property to
                specify a height of 5 rows for a multiline RadTextBox control.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;<br/>
            		<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            		<br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;MultiLine TextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>        protected void SubmitButton_Click(Object sender, EventArgs e)<br/>        {  <br/>            Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text;  <br/>        }<br/>
            		<br/>        protected void Check_Change(Object sender, EventArgs e)<br/>        {  <br/>            Comment.Wrap = WrapCheckBox.Checked;<br/>            Comment.ReadOnly = ReadOnlyCheckBox.Checked;  <br/>        }<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            MultiLine TextBox Example<br/>        &lt;/h3&gt;<br/>        Please enter a comment and click the submit button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>        &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>            ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>        &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>      Protected Sub SubmitButton_Click(sender As Object, e As EventArgs )<br/><br/>
                     Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text<br/><br/>      End Sub<br/><br/>      Protected Sub Check_Change(sender As Object, e As EventArgs )<br/><br/>         Comment.Wrap = WrapCheckBox.Checked<br/>         Comment.ReadOnly = ReadOnlyCheckBox.Checked<br/><br/>      End Sub<br/><br/>    &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>
                &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            MultiLine RadTextBox Example<br/>        &lt;/h3&gt;<br/>        Please enter a comment and click the submit button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>            ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>        &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/><br/>
                    &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/><br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>        &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>
                &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadTextBox.Columns">
            <summary>Gets or sets the display width of the RadTextBox in characters.</summary>
            <value>
            The display width, in characters, of the RadTextBox. The default is 0, which
            indicates that the property is not set.
            </value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="System.ArgumentOutOfRangeException">The specified width is less than 0.</exception>
            <example>
            	<para>The following code example demonstrates how to use the Columns property to
                specify a width of 2 characters for the RadTextBox control. This example has a text
                box that accepts user input, which is a potential security threat. By default,
                ASP.NET Web pages validate that user input does not include script or HTML
                elements.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;<br/>
            		<br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/>
            		<br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>        protected void AddButton_Click(Object sender, EventArgs e)<br/>        {<br/>            int Answer;<br/>
            		<br/>            Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text);<br/>
            		<br/>            AnswerMessage.Text = Answer.ToString();<br/>
            		<br/>        }<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            RadTextBox Example<br/>        &lt;/h3&gt;<br/>
            		<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>                    Enter integer values into the text boxes.<br/>                    &lt;br /&gt;<br/>
                                Click the Add button to add the two values.<br/>                    &lt;br /&gt;<br/>                    Click the Reset button to reset the text boxes.<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>                    &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>
                                    ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>                    &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>                        MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>
                                    Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td colspan="2"&gt;<br/>                    &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>                        ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>                        MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>                        Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td&gt;<br/>                    &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td colspan="4"&gt;<br/>                    &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>
            		<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>    "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>
                &lt;title&gt;TextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>      Protected Sub AddButton_Click(sender As Object, e As EventArgs)<br/><br/>         Dim Answer As Integer<br/><br/>         Answer = Convert.ToInt32(Value1.Text) + Convert.ToInt32(Value2.Text)<br/><br/>         AnswerMessage.Text = Answer.ToString()<br/><br/>      End Sub<br/><br/>
                &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            RadTextBox Example<br/>        &lt;/h3&gt;<br/>        &lt;table&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/>                    Enter integer values into the text boxes.<br/>
                                &lt;br /&gt;<br/>                    Click the Add button to add the two values.<br/>                    &lt;br /&gt;<br/>                    Click the Reset button to reset the text boxes.<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="5"&gt;<br/><br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr align="center"&gt;<br/>                &lt;td&gt;<br/>                    &lt;radI:RadTextBox ID="Value1" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    +<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>
                                &lt;radI:RadTextBox ID="Value2" Columns="2" MaxLength="3" Text="1" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    =<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &lt;asp:Label ID="AnswerMessage" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                        &lt;/tr&gt;<br/>            &lt;tr&gt;<br/>                &lt;td colspan="2"&gt;<br/>                    &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Value1"<br/>                        ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                                &lt;asp:RangeValidator ID="Value1RangeValidator" ControlToValidate="Value1" Type="Integer"<br/>                        MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>                        Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>
                            &lt;td colspan="2"&gt;<br/>                    &lt;asp:RequiredFieldValidator ID="Value2RequiredValidator" ControlToValidate="Value2"<br/>                        ErrorMessage="Please enter a value.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>                    &lt;asp:RangeValidator ID="Value2RangeValidator" ControlToValidate="Value2" Type="Integer"<br/>
                                    MinimumValue="1" MaximumValue="100" ErrorMessage="Please enter an integer &lt;br /&gt; between than 1 and 100.&lt;br /&gt;"<br/>                        Display="Dynamic" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/>                    &amp;nbsp<br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>
                        &lt;tr align="center"&gt;<br/>                &lt;td colspan="4"&gt;<br/>                    &lt;asp:Button ID="AddButton" Text="Add" OnClick="AddButton_Click" runat="server" /&gt;<br/>                &lt;/td&gt;<br/>                &lt;td&gt;<br/><br/>                &lt;/td&gt;<br/>            &lt;/tr&gt;<br/>        &lt;/table&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            </requirements>
            <remarks>
            .NET Framework<br/>
            Supported in: 3.0, 2.0, 1.1, 1.0
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTextBox.Wrap">
            <summary>
            Gets or sets a value indicating whether the text content wraps within a multiline
            RadTextBox.
            </summary>
            <value>
            true if the text content wraps within a multiline RadTextBox; otherwise, false.
            The default is true.
            </value>
            <remarks>
            Use the Wrap property to specify whether the text displayed in a multiline
            RadTextBox control automatically continues on the next line when the text reaches the
            end of the control. This property is applicable only when the RadTextMode property is
            set to MultiLine
            </remarks>
            <example>
            	<para>The following code example demonstrates how to use the Wrap property to wrap
                text entered in the RadTextBox control. This example has a text box that accepts
                user input, which is a potential security threat. By default, ASP.NET Web pages
                validate that user input does not include script or HTML elements.</para>
            	<para>[C#]</para>
            	<pre>
            &lt;/%@ Page Language="C#" AutoEventWireup="True" /%&gt;  <br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;  <br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;<br/>
            		<br/>    &lt;script runat="server"&gt;<br/>
            		<br/>        protected void SubmitButton_Click(Object sender, EventArgs e)<br/>        {<br/>
            		<br/>            Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text;<br/>
            		<br/>        }<br/>
            		<br/>        protected void Check_Change(Object sender, EventArgs e)<br/>        {<br/>
            		<br/>            Comment.Wrap = WrapCheckBox.Checked;<br/>            Comment.ReadOnly = ReadOnlyCheckBox.Checked;<br/>
            		<br/>        }<br/>
            		<br/>    &lt;/script&gt;<br/>
            		<br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>            MultiLine RadTextBox Example<br/>        &lt;/h3&gt;<br/>
                    Please enter a comment and click the submit button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>        &lt;br /&gt;<br/>
                    &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>            ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/>
            		<br/>        &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>        &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;<br/>
            	</pre>
            	<para>[Visual Basic]</para>
            	<pre>
            &lt;/%@ Page Language="VB" AutoEventWireup="True" /%&gt;<br/><br/>&lt;/%@ Register Assembly="RadInput.Net2" Namespace="Telerik.WebControls" TagPrefix="radI" /%&gt;<br/><br/>&lt;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"<br/>
                "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&gt;<br/>&lt;html&gt;<br/>&lt;head&gt;<br/>    &lt;title&gt;MultiLine RadTextBox Example &lt;/title&gt;<br/><br/>    &lt;script runat="server"&gt;<br/><br/>
                  Protected Sub SubmitButton_Click(sender As Object, e As EventArgs )<br/><br/>         Message.Text = "Thank you for your comment: &lt;br /&gt;" + Comment.Text<br/><br/>      End Sub<br/><br/>      Protected Sub Check_Change(sender As Object, e As EventArgs )<br/><br/>
                     Comment.Wrap = WrapCheckBox.Checked<br/>         Comment.ReadOnly = ReadOnlyCheckBox.Checked<br/><br/>      End Sub<br/><br/>    &lt;/script&gt;<br/><br/>&lt;/head&gt;<br/>&lt;body&gt;<br/>    &lt;form id="form1" runat="server"&gt;<br/>        &lt;h3&gt;<br/>
                        MultiLine RadTextBox Example<br/>        &lt;/h3&gt;<br/>        Please enter a comment and click the submit button.<br/>        &lt;br /&gt;<br/>        &lt;br /&gt;<br/>        &lt;radI:RadTextBox ID="Comment" TextMode="MultiLine" Columns="50" Rows="5" runat="server" /&gt;<br/>
                    &lt;br /&gt;<br/>        &lt;asp:RequiredFieldValidator ID="Value1RequiredValidator" ControlToValidate="Comment"<br/>            ErrorMessage="Please enter a comment.&lt;br /&gt;" Display="Dynamic" runat="server" /&gt;<br/>
                    &lt;asp:CheckBox ID="WrapCheckBox" Text="Wrap Text" Checked="True" AutoPostBack="True"<br/>
                        OnCheckedChanged="Check_Change" runat="server" /&gt;<br/><br/>        &lt;asp:CheckBox ID="ReadOnlyCheckBox" Text="ReadOnly" Checked="False" AutoPostBack="True"<br/>            OnCheckedChanged="Check_Change" runat="server" /&gt;<br/><br/>
                    &lt;asp:Button ID="SubmitButton" Text="Submit" OnClick="SubmitButton_Click" runat="server" /&gt;<br/>        &lt;hr /&gt;<br/>        &lt;asp:Label ID="Message" runat="server" /&gt;<br/>    &lt;/form&gt;<br/>&lt;/body&gt;<br/>&lt;/html&gt;
                </pre>
            </example>
            <requirements>
            	<para>Windows 98, Windows Server 2000 SP4, Windows Server 2003, Windows XP Media
                Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP
                Starter Edition</para>
            	<para>The Microsoft .NET Framework 3.0 is supported on Windows Vista, Microsoft
                Windows XP SP2, and Windows Server 2003 SP1.</para>
            	<para>.NET Framework<br/>
                Supported in: 3.0, 2.0, 1.1, 1.0</para>
            </requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadTextBox.InputType">
            <summary>
            Get or sets the specific HTML input type that will be rendered in the control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Appointment.Clone">
            <summary>
            	Creates a new Appointment object that is a clone of the current instance.
            </summary>
            <returns>
            	A new Appointment object that is a clone of the current instance.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.Reminders">
            <summary>
            A collection of all reminders associated with the appointment
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.Duration">
            <summary>
            The appointment duration.
            </summary>
            <remarks>
            The duration can be <see cref="F:System.TimeSpan.Zero">zero</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.Subject">
            <summary>
            The Appointment subject.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.Description">
            <summary>
            The Appointment description.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.AllowEdit">
            <summary>
            Gets or sets a value indicating whether the editing of this appointment is allowed.
            </summary>
            <value><c>true</c> if editing of this appointment is allowed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.AllowDelete">
            <summary>
            Gets or sets a value indicating whether the deleting of this appointment is allowed.
            </summary>
            <value><c>true</c> if the deleting of this appointment is allowed; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.Appointment.DataItem">
            <summary>
            Gets or sets the data item represented by the
            <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> object in the
            <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </summary>
            <remarks>
            This property is available only during data binding.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.#ctor">
            <summary>
            Creates an empty <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.#ctor(System.Collections.Generic.IEnumerable{Telerik.Web.UI.Appointment})">
            <summary>
            Creates an <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>
            and populates it with Appointment objects.
            </summary>
            <param name="appointments">
            The Appointment objects to add to the collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.Contains(Telerik.Web.UI.Appointment)">
            <summary>
            	Determines whether an element is in the <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </summary>
            <param name="appointment">
            	The <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> to locate in the <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </param>
            <returns>true if item is found in the <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>; otherwise, false.</returns>
            <remarks>
            	This method performs a linear search; therefore, this method is an O(n) operation, where n is Count.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.CopyTo(Telerik.Web.UI.Appointment[],System.Int32)">
            <summary>
            	Copies the entire <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see> to a compatible one-dimensional Array,
            	starting at the specified index of the target array.
            </summary>
            <param name="array">
            	The one-dimensional Array that is the destination of the <see cref="T:Telerik.Web.UI.Appointment">Appointment</see>s copied from <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            	The Array must have zero-based indexing.
            </param>
            <param name="index">
            	The zero-based index in array at which copying begins.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.IndexOf(Telerik.Web.UI.Appointment)">
            <summary>
            	Searches for the specified <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> and returns the zero-based index of the
            	first occurrence within the entire <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </summary>
            <param name="appointment">
            	The <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> to locate in the <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </param>
            <returns>
            	The zero-based index of the first occurrence of value within the entire <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>, if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.FindByID(System.Object)">
            <summary>
            	Searches for an <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> with the specified <see cref="P:Telerik.Web.UI.Appointment.ID">ID</see> and returns a reference to it.
            </summary>
            <param name="id">
            	The <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> <see cref="P:Telerik.Web.UI.Appointment.ID">ID</see> to search for.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> with the specified <see cref="P:Telerik.Web.UI.Appointment.ID">ID</see>, if found; otherwise, null.
            </returns>
            <remarks>
            	This method determines equality by calling <see cref="M:System.Object.Equals(System.Object)">Object.Equals</see>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.FindByRecurrenceParentID(System.Object)">
            <summary>
            	Searches for all <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> with the specified <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see>
            	and returns a generic IList containing them.
            </summary>
            <param name="parentId">
            	The <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see> to search for.
            </param>
            <returns>
            	A generic IList containing the <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> with the specified <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see>, if found.
            </returns>
            <remarks>
            	This method determines equality by calling <see cref="M:System.Object.Equals(System.Object)">Object.Equals</see>.
            
            	Appointments with recurrence state <see cref="F:Telerik.Web.UI.RecurrenceState.Exception">Exception</see>
            	are linked to their parents using the <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see> property.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.FindByRecurrenceParentID(System.Object,Telerik.Web.UI.RecurrenceState)">
            <summary>
            	Searches for all <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> with the specified
            	<see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see> and
            	<see cref="P:Telerik.Web.UI.Appointment.RecurrenceState">RecurrenceState</see>.
            </summary>
            <param name="parentId">
            	The <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see> to search for.
            </param>
            <param name="state">
            	The <see cref="P:Telerik.Web.UI.Appointment.RecurrenceState">RecurrenceState</see> to search for.
            </param>
            <returns>
            	A generic IList containing the <see cref="T:Telerik.Web.UI.Appointment">Appointments</see>
            	with the specified <see cref="P:Telerik.Web.UI.Appointment.RecurrenceParentID">RecurrenceParentID</see> and
            	<see cref="P:Telerik.Web.UI.Appointment.RecurrenceState">RecurrenceState</see>, if found.
            </returns>
            <remarks>
            	This method determines equality by calling <see cref="M:System.Object.Equals(System.Object)">Object.Equals</see>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.GetAppointmentsStartingInRange(System.DateTime,System.DateTime)">
            <summary>
            	Searches for all <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> that
            	start in the specified time range and returns a generic IList containing them.
            </summary>
            <param name="rangeStart">
            	The start of the time range.
            </param>
            <param name="rangeEnd">
            	The end of the time range.
            </param>
            <returns>
            	A generic IList containing the <see cref="T:Telerik.Web.UI.Appointment">Appointments</see>
            	that start in the specified time range.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.GetAppointmentsInRange(System.DateTime,System.DateTime)">
            <summary>
            	Searches for all <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> that
            	overlap with the specified time range and returns a generic IList containing them.
            </summary>
            <param name="rangeStart">
            	The start of the time range.
            </param>
            <param name="rangeEnd">
            	The end of the time range.
            </param>
            <returns>
            	A generic IList containing the <see cref="T:Telerik.Web.UI.Appointment">Appointments</see>
            	that overlap with the specified time range.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.GetAppointmentsEnclosingRange(System.DateTime,System.DateTime)">
            <summary>
            	Searches for all <see cref="T:Telerik.Web.UI.Appointment">Appointments</see> that
            	are fully contained within the specified time range.
            </summary>
            <param name="rangeStart">
            	The start of the time range.
            </param>
            <param name="rangeEnd">
            	The end of the time range.
            </param>
            <returns>
            	A generic IList containing the <see cref="T:Telerik.Web.UI.Appointment">Appointments</see>
            	that are fully contained within the specified time range.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.ToArray">
            <summary>
            	Copies the elements of the <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>
            	to a new <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> array.
            </summary>
            <returns>
            	An <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> array containing copies of the elements of the
            	<see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.AppointmentCollection.GetEnumerator">
            <summary>
            	Returns an enumerator for the entire <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </summary>
            <returns>
            	An <see cref="T:System.Collections.IEnumerator">IEnumerator</see> for the entire <see cref="T:Telerik.Web.UI.AppointmentCollection">AppointmentCollection</see>.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.AppointmentCollection.Item(System.Int32)">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> at the specified index.
            </summary>
            <param name="index">The zero-based index of the <see cref="T:Telerik.Web.UI.Appointment">Appointment</see> to get or set.</param>
            <returns>The appointment at the specified index.</returns>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerNavigationCommand">
            <summary>
            Specifies the type of navigation commands that are supported by RadScheduler.
            </summary>
            <see cref="E:Telerik.Web.UI.RadScheduler.NavigationCommand"/>
            <see cref="E:Telerik.Web.UI.RadScheduler.NavigationComplete"/>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToDayView">
            <summary>
            Indicates that RadScheduler is about to switch to Day View as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToWeekView">
            <summary>
            Indicates that RadScheduler is about to switch to Week View as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToMonthView">
            <summary>
            Indicates that RadScheduler is about to switch to Month View as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToTimelineView">
            <summary>
            Indicates that RadScheduler is about to switch to Timeline View as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToMultiDayView">
            <summary>
            Indicates that RadScheduler is about to switch to Multi-day View as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.NavigateToNextPeriod">
            <summary>
            Indicates that RadScheduler is about to switch to the next time period as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.NavigateToPreviousPeriod">
            <summary>
            Indicates that RadScheduler is about to switch to the previous time period as a result of user interaction.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToSelectedDay">
            <summary>
            Indicates that RadScheduler is about to switch to a given date.
            </summary>
            <remarks>
            This command occurs when:
            <list type="bullet">
            	<item>The "today" link in the header is clicked.</item>
            	<item>A day header is clicked in Month View.</item>
            </list>
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchFullTime">
            <summary>
            Indicates that RadScheduler is about to switch from/to 24-hour view as a result of user interaction.
            </summary>
            <remarks>
            Only applicable in Day and Week views.
            The current mode can be determined by inspecting the 
            <see cref="P:Telerik.Web.UI.RadScheduler.ShowFullTime">ShowFullTime</see> property.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.DisplayNextAppointmentSegment">
            <summary>
            Indicates that RadScheduler is about to adjust its visible range, so the next appointment segment
            becomes visible.
            </summary>
            <remarks>
            This command is a result of the user clicking the bottom arrow of an appointment.
            Depending on the current view RadScheduler will either switch to the next
            time period or to 24-hour view.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.DisplayPreviousAppointmentSegment">
            <summary>
            Indicates that RadScheduler is about to adjust its visible range, so the previous appointment segment
            becomes visible.
            </summary>
            <remarks>
            This command is a result of the user clicking the top arrow of an appointment.
            Depending on the current view RadScheduler will either switch to the previous
            time period or to 24-hour view.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerNavigationCommand.NavigateToSelectedDate">
            <summary>
            Indicates that RadScheduler is about to switch to a different date that the
            user has selected from the integrated date picker.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerNavigationCommandEventArgs.Command">
            <summary>
            The type of navigation command that is being processed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerNavigationCommandEventArgs.SelectedDate">
            <summary>
            The new date that has been selected.
            </summary>
            <remarks>
            This property is applicable only for the
            <see cref="F:Telerik.Web.UI.SchedulerNavigationCommand.NavigateToSelectedDate">NavigateToSelectedDate</see> and
            <see cref="F:Telerik.Web.UI.SchedulerNavigationCommand.SwitchToSelectedDay">SwitchToSelectedDay</see> commands.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerNavigationCompleteEventArgs.Command">
            <summary>
            The type of navigation command that has been processed.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.FooterControl">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.HeaderControl">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.SchedulerProviderBase.Synchronized">
            <summary>
            Returns a synchronized (thread safe) wrapper for this provider instance.
            </summary>
            <returns>A synchronized (thread safe) wrapper for this provider instance.</returns>
        </member>
        <member name="T:Telerik.Web.UI.Scheduling.SynchronizedSchedulerProvider">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.XmlSchedulerProvider">
            <summary>
            A RadScheduler provider that uses XML document as a data store.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.XmlSchedulerProvider.DateFormatString">
            <summary>
            Format string for the dates. The "Z" appendix signifies UTC time.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.#ctor(System.String,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.XmlSchedulerProvider"/> class.
            </summary>
            <param name="dataFileName">Name of the data file.</param>
            <param name="persistChanges">if set to <c>true</c> the changes will be persisted.</param>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.#ctor(System.Xml.XmlDocument)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.XmlSchedulerProvider"/> class.
            </summary>
            <param name="doc">The document instance to use as a data store.</param>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.XmlSchedulerProvider"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.Initialize(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Initializes the provider.
            </summary>
            <param name="name">The friendly name of the provider.</param>
            <param name="config">A collection of the name/value pairs representing the provider-specific attributes specified in the configuration for this provider.</param>
            <exception cref="T:System.ArgumentNullException">The name of the provider is null.</exception>
            <exception cref="T:System.InvalidOperationException">An attempt is made to call <see cref="M:System.Configuration.Provider.ProviderBase.Initialize(System.String,System.Collections.Specialized.NameValueCollection)"></see> on a provider after the provider has already been initialized.</exception>
            <exception cref="T:System.ArgumentException">The name of the provider has a length of zero.</exception>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.GetAppointments(Telerik.Web.UI.RadScheduler)">
            <summary>
            Fetches appointments.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.Insert(Telerik.Web.UI.RadScheduler,Telerik.Web.UI.Appointment)">
            <summary>
            Inserts the specified appointment.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <param name="appointmentToInsert">The appointment to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.Update(Telerik.Web.UI.RadScheduler,Telerik.Web.UI.Appointment)">
            <summary>
            Updates the specified appointment.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <param name="appointmentToUpdate">The appointment to update.</param>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.Delete(Telerik.Web.UI.RadScheduler,Telerik.Web.UI.Appointment)">
            <summary>
            Deletes the specified appointment.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <param name="appointmentToDelete">The appointment to delete.</param>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.GetResourceTypes(Telerik.Web.UI.RadScheduler)">
            <summary>
            Gets the resource types.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.XmlSchedulerProvider.GetResourcesByType(Telerik.Web.UI.RadScheduler,System.String)">
            <summary>
            Gets the type of the resources by.
            </summary>
            <param name="owner">The owner RadScheduler instance.</param>
            <param name="resourceType">Type of the resource.</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.UI.DailyRecurrenceRule">
            <summary>Occurrences of this rule repeat on a daily basis.</summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class DailyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every two days.
                        DailyRecurrenceRule rrule = new DailyRecurrenceRule(2, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek);
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM (Friday)
             2: 6/3/2007 3:30:00 PM (Sunday)
             3: 6/5/2007 3:30:00 PM (Tuesday)
             4: 6/7/2007 3:30:00 PM (Thursday)
             5: 6/9/2007 3:30:00 PM (Saturday)
             6: 6/11/2007 3:30:00 PM (Monday)
             7: 6/13/2007 3:30:00 PM (Wednesday)
             8: 6/15/2007 3:30:00 PM (Friday)
             9: 6/17/2007 3:30:00 PM (Sunday)
            10: 6/19/2007 3:30:00 PM (Tuesday)
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class DailyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every two days.
                        Dim rrule As New DailyRecurrenceRule(2, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek)
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM (Friday)
            ' 2: 6/3/2007 3:30:00 PM (Sunday)
            ' 3: 6/5/2007 3:30:00 PM (Tuesday)
            ' 4: 6/7/2007 3:30:00 PM (Thursday)
            ' 5: 6/9/2007 3:30:00 PM (Saturday)
            ' 6: 6/11/2007 3:30:00 PM (Monday)
            ' 7: 6/13/2007 3:30:00 PM (Wednesday)
            ' 8: 6/15/2007 3:30:00 PM (Friday)
            ' 9: 6/17/2007 3:30:00 PM (Sunday)
            '10: 6/19/2007 3:30:00 PM (Tuesday)
            '
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceRule">
            <summary>Provides the <strong>abstract</strong> base class for recurrence rules.</summary>
            <seealso cref="T:Telerik.Web.UI.HourlyRecurrenceRule">HourlyRecurrenceRule Class</seealso>
            <seealso cref="T:Telerik.Web.UI.DailyRecurrenceRule">DailyRecurrenceRule Class</seealso>
            <seealso cref="T:Telerik.Web.UI.WeeklyRecurrenceRule">WeeklyRecurrenceRule Class</seealso>
            <seealso cref="T:Telerik.Web.UI.MonthlyRecurrenceRule">MonthlyRecurrenceRule Class</seealso>
            <seealso cref="T:Telerik.Web.UI.YearlyRecurrenceRule">YearlyRecurrenceRule Class</seealso>
            <remarks>
            	<strong>Notes to implementers:</strong> This base class is provided to make it
            easier for implementers to create a recurrence rule. Implementers are encouraged to
            extend this base class instead of creating their own.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceRule.Empty">
            <summary>
            Represents an empty recurrence rule
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.FromPatternAndRange(Telerik.Web.UI.RecurrencePattern,Telerik.Web.UI.RecurrenceRange)">
            <summary>
            Creates a recurrence rule with the specified pattern and range.
            </summary>
            <param name="pattern">The recurrence pattern.</param>
            <param name="range">The recurrence range.</param>
            <returns>The constructed recurrence rule.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.TryParse(System.String,Telerik.Web.UI.RecurrenceRule@)">
            <summary>Creates a recurrence rule instance from it's string representation.</summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class ParsingExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        // Prints the string representation of the recurrence rule:
                        string rruleAsString = rrule.ToString();
                        Console.WriteLine("Recurrence rule:\n\n{0}\n", rruleAsString);
             
                        // The string representation can be stored in a database, etc.
                        // ...
             
                        // Then it can be reconstructed using TryParse method:
                        RecurrenceRule parsedRule;
                        RecurrenceRule.TryParse(rruleAsString, out parsedRule);
                        Console.WriteLine("After parsing (should be the same):\n\n{0}", parsedRule);
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Recurrence rule:
             
            DTSTART:20070601T123000Z
            DTEND:20070601T130000Z
            RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
             
             
            After parsing (should be the same):
             
            DTSTART:20070601T123000Z
            DTEND:20070601T130000Z
            RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class ParsingExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        ' Prints the string representation of the recurrence rule:
                        Dim rruleAsString As String = rrule.ToString()
                        Console.WriteLine("Recurrence rule:" &amp; Chr(10) &amp; "" &amp; Chr(10) &amp; "{0}" &amp; Chr(10) &amp; "", rruleAsString)
             
                        ' The string representation can be stored in a database, etc.
                        ' ...
             
                        ' Then it can be reconstructed using TryParse method:
                        Dim parsedRule As RecurrenceRule
                        RecurrenceRule.TryParse(rruleAsString, parsedRule)
                        Console.WriteLine("After parsing (should be the same):" &amp; Chr(10) &amp; "" &amp; Chr(10) &amp; "{0}", parsedRule)
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Recurrence rule:
            '
            'DTSTART:20070601T123000Z
            'DTEND:20070601T130000Z
            'RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            '
            '
            'After parsing (should be the same):
            '
            'DTSTART:20070601T123000Z
            'DTEND:20070601T130000Z
            'RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            '
                </code>
            </example>
            <returns>True if <em>input</em> was converted successfully, false otherwise.</returns>
            <param name="input">The string representation to parse.</param>
            <param name="rrule">
            When this method returns, contains the recurrence rule instance, if the
            conversion succeeded, or null if the conversion failed. The conversion fails if the
            <em>value</em> parameter is a null reference (<strong>Nothing</strong> in Visual Basic)
            or represents invalid recurrence rule.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.TryParse(System.String)">
            <summary>
            Creates a recurrence rule instance from it's string representation.
            </summary>
            <param name="input">The string to parse.</param>
            <returns>RecurrenceRule if the parsing succeeded or null (<strong>Nothing</strong> in Visual Basic) if the parsing failed.</returns>
            <remarks>
            See the <see cref="M:Telerik.Web.UI.RecurrenceRule.TryParse(System.String,Telerik.Web.UI.RecurrenceRule@)">TryParse</see> overload for more information and examples.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.SetEffectiveRange(System.DateTime,System.DateTime)">
            <summary>Specifies the effective range for evaluating occurrences.</summary>
            <exception cref="T:System.ArgumentException" caption="">End date is before Start date.</exception>
            <remarks>
                The range is inclusive. To clear the effective range call
                <see cref="M:Telerik.Web.UI.RecurrenceRule.ClearEffectiveRange"/>.
            </remarks>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class EffectiveRangeExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        // Limits the effective range.
                        rrule.SetEffectiveRange(Convert.ToDateTime("6/1/2007 5:00 PM"), Convert.ToDateTime("6/1/2007 8:00 PM"));
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 5:30:00 PM
             2: 6/1/2007 7:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class EffectiveRangeExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        ' Limits the effective range.
                        rrule.SetEffectiveRange(Convert.ToDateTime("6/1/2007 5:00 PM"), Convert.ToDateTime("6/1/2007 8:00 PM"))
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 5:30:00 PM
            ' 2: 6/1/2007 7:30:00 PM
            '
                </code>
            </example>
            <seealso cref="M:Telerik.Web.UI.RecurrenceRule.ClearEffectiveRange">ClearEffectiveRange Method</seealso>
            <param name="start">The starting date of the effective range.</param>
            <param name="end">The ending date of the effective range.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.ClearEffectiveRange">
            <summary>Clears the effective range set by calling <see cref="M:Telerik.Web.UI.RecurrenceRule.SetEffectiveRange(System.DateTime,System.DateTime)"/>.</summary>
            <remarks>If no effective range was set, calling this method has no effect.</remarks>
            <seealso cref="M:Telerik.Web.UI.RecurrenceRule.SetEffectiveRange(System.DateTime,System.DateTime)">SetEffectiveRange Method</seealso>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.ToString">
            <summary>Converts the recurrence rule to it's equivalent string representation.</summary>
            <returns>The string representation of this recurrence rule.</returns>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class ParsingExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        // Prints the string representation of the recurrence rule:
                        string rruleAsString = rrule.ToString();
                        Console.WriteLine("Recurrence rule:\n\n{0}\n", rruleAsString);
             
                        // The string representation can be stored in a database, etc.
                        // ...
             
                        // Then it can be reconstructed using TryParse method:
                        RecurrenceRule parsedRule;
                        RecurrenceRule.TryParse(rruleAsString, out parsedRule);
                        Console.WriteLine("After parsing (should be the same):\n\n{0}", parsedRule);
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Recurrence rule:
             
            DTSTART:20070601T123000Z
            DTEND:20070601T130000Z
            RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
             
             
            After parsing (should be the same):
             
            DTSTART:20070601T123000Z
            DTEND:20070601T130000Z
            RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class ParsingExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        ' Prints the string representation of the recurrence rule:
                        Dim rruleAsString As String = rrule.ToString()
                        Console.WriteLine("Recurrence rule:" &amp; Chr(10) &amp; "" &amp; Chr(10) &amp; "{0}" &amp; Chr(10) &amp; "", rruleAsString)
             
                        ' The string representation can be stored in a database, etc.
                        ' ...
             
                        ' Then it can be reconstructed using TryParse method:
                        Dim parsedRule As RecurrenceRule
                        RecurrenceRule.TryParse(rruleAsString, parsedRule)
                        Console.WriteLine("After parsing (should be the same):" &amp; Chr(10) &amp; "" &amp; Chr(10) &amp; "{0}", parsedRule)
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Recurrence rule:
            '
            'DTSTART:20070601T123000Z
            'DTEND:20070601T130000Z
            'RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            '
            '
            'After parsing (should be the same):
            '
            'DTSTART:20070601T123000Z
            'DTEND:20070601T130000Z
            'RRULE:FREQ=HOURLY;COUNT=10;INTERVAL=2;
            '
                </code>
            </example>
            <remarks>
            The string representation is based on the iCalendar data format (RFC
            2445).
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.GetHashCode">
            <summary>Overriden. Returns the hash code for this instance.</summary>
            <returns>The hash code for this instance.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.Equals(System.Object)">
            <summary>
            Overloaded. Overridden. Returns a value indicating whether this instance is equal
            to a specified object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> is an instance of
                <see cref="T:Telerik.Web.UI.RecurrenceRule"/> and equals the value of this instance;
                otherwise, <b>false</b>.
            </returns>
            <param name="obj">An object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.Equals(Telerik.Web.UI.RecurrenceRule)">
            <summary>
                Overloaded. Overridden. Returns a value indicating whether this instance is equal
                to a specified <see cref="T:Telerik.Web.UI.RecurrenceRule"/> object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> equals the value of this instance;
            otherwise, <b>false</b>.
            </returns>
            <param name="other">An <see cref="T:Telerik.Web.UI.RecurrenceRule"/> object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.op_Equality(Telerik.Web.UI.RecurrenceRule,Telerik.Web.UI.RecurrenceRule)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrenceRule"/> objects have the
                same value.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.op_Inequality(Telerik.Web.UI.RecurrenceRule,Telerik.Web.UI.RecurrenceRule)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrenceRule"/> objects have
                different values.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRule.GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>
            Populates a <b>SerializationInfo</b> with the data needed to serialize this
            object.
            </summary>
            <param name="info">The <see cref="T:System.Runtime.Serialization.SerializationInfo"/> to populate with data.</param>
            <param name="context">The destination (see <see cref="T:System.Runtime.Serialization.StreamingContext"/>) for this serialization.</param>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.Range">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RecurrenceRange"/> associated with this recurrence rule.</summary>
            <value>The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> associated with this recurrence rule.</value>
            <remarks>
                By calling <see cref="M:Telerik.Web.UI.RecurrenceRule.SetEffectiveRange(System.DateTime,System.DateTime)"/> the range of the generated
                occurrences can be narrowed.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.Pattern">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RecurrencePattern"/> associated with this recurrence rule.</summary>
            <value>The <see cref="T:Telerik.Web.UI.RecurrencePattern"/> associated with this recurrence rule.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.Occurrences">
            <remarks>Occurrence times are in UTC.</remarks>
            <summary>Gets the evaluated occurrence times of this recurrence rule.</summary>
            <value>The evaluated occurrence times of this recurrence rule.</value>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class HourlyRecurrenceRuleExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM
             2: 6/1/2007 5:30:00 PM
             3: 6/1/2007 7:30:00 PM
             4: 6/1/2007 9:30:00 PM
             5: 6/1/2007 11:30:00 PM
             6: 6/2/2007 1:30:00 AM
             7: 6/2/2007 3:30:00 AM
             8: 6/2/2007 5:30:00 AM
             9: 6/2/2007 7:30:00 AM
            10: 6/2/2007 9:30:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class HourlyRecurrenceRuleExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM
            ' 2: 6/1/2007 5:30:00 PM
            ' 3: 6/1/2007 7:30:00 PM
            ' 4: 6/1/2007 9:30:00 PM
            ' 5: 6/1/2007 11:30:00 PM
            ' 6: 6/2/2007 1:30:00 AM
            ' 7: 6/2/2007 3:30:00 AM
            ' 8: 6/2/2007 5:30:00 AM
            ' 9: 6/2/2007 7:30:00 AM
            '10: 6/2/2007 9:30:00 AM
            '
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.HasOccurrences">
            <summary>
            Gets a value indicating whether this recurrence rule yields any
            occurrences.
            </summary>
            <value>True this recurrence rule yields any occurrences, false otherwise.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.Exceptions">
            <summary>Gets or sets a list of the exception dates associated with this recurrence rule.</summary>
            <value>A list of the exception dates associated with this recurrence rule.</value>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class RecurrenceExceptionsExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        // Creates a recurrence exception for 5:30 PM (local time).
                        // Note that exception dates must be in universal time.
                        rrule.Exceptions.Add(Convert.ToDateTime("6/1/2007 5:30 PM").ToUniversalTime());
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM
             2: 6/1/2007 7:30:00 PM
             3: 6/1/2007 9:30:00 PM
             4: 6/1/2007 11:30:00 PM
             5: 6/2/2007 1:30:00 AM
             6: 6/2/2007 3:30:00 AM
             7: 6/2/2007 5:30:00 AM
             8: 6/2/2007 7:30:00 AM
             9: 6/2/2007 9:30:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class RecurrenceExceptionsExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        ' Creates a recurrence exception for 5:30 PM (local time).
                        ' Note that exception dates must be in universal time.
                        rrule.Exceptions.Add(Convert.ToDateTime("6/1/2007 5:30 PM").ToUniversalTime())
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM
            ' 2: 6/1/2007 7:30:00 PM
            ' 3: 6/1/2007 9:30:00 PM
            ' 4: 6/1/2007 11:30:00 PM
            ' 5: 6/2/2007 1:30:00 AM
            ' 6: 6/2/2007 3:30:00 AM
            ' 7: 6/2/2007 5:30:00 AM
            ' 8: 6/2/2007 7:30:00 AM
            ' 9: 6/2/2007 9:30:00 AM
            '
                </code>
            </example>
            <remarks>
            Any date placed in the list will be considered a recurrence exception, i.e. an
            occurrence will not be generated for that date. The dates must be in <strong>universal
            time</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.HasExceptions">
            <summary>
            Gets a value indicating whether this recurrence rule has associated
            exceptions.
            </summary>
            <value>True if this recurrence rule has associated exceptions, false otherwise.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRule.MaximumCandidates">
            <summary>
            Gets or sets the maximum candidates limit.
            </summary>
            <remarks>
            This limit is used to prevent lockups when evaluating infinite rules without using SetEffectiveRange.
            The default value should not be changed under normal conditions.
            </remarks>
            <value>The maximum candidates limit.</value>
        </member>
        <member name="M:Telerik.Web.UI.DailyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceRange)">
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class DailyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every two days.
                        DailyRecurrenceRule rrule = new DailyRecurrenceRule(2, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek);
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM (Friday)
             2: 6/3/2007 3:30:00 PM (Sunday)
             3: 6/5/2007 3:30:00 PM (Tuesday)
             4: 6/7/2007 3:30:00 PM (Thursday)
             5: 6/9/2007 3:30:00 PM (Saturday)
             6: 6/11/2007 3:30:00 PM (Monday)
             7: 6/13/2007 3:30:00 PM (Wednesday)
             8: 6/15/2007 3:30:00 PM (Friday)
             9: 6/17/2007 3:30:00 PM (Sunday)
            10: 6/19/2007 3:30:00 PM (Tuesday)
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class DailyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every two days.
                        Dim rrule As New DailyRecurrenceRule(2, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek)
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM (Friday)
            ' 2: 6/3/2007 3:30:00 PM (Sunday)
            ' 3: 6/5/2007 3:30:00 PM (Tuesday)
            ' 4: 6/7/2007 3:30:00 PM (Thursday)
            ' 5: 6/9/2007 3:30:00 PM (Saturday)
            ' 6: 6/11/2007 3:30:00 PM (Monday)
            ' 7: 6/13/2007 3:30:00 PM (Wednesday)
            ' 8: 6/15/2007 3:30:00 PM (Friday)
            ' 9: 6/17/2007 3:30:00 PM (Sunday)
            '10: 6/19/2007 3:30:00 PM (Tuesday)
            '
                </code>
            </example>
            <summary>
                Initializes a new instance of <see cref="T:Telerik.Web.UI.DailyRecurrenceRule"/> with the
                specified interval (in days) and <see cref="T:Telerik.Web.UI.RecurrenceRange"/>.
            </summary>
            <param name="interval">The number of days between the occurrences.</param>
            <param name="range">
            	The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this
                recurrence rule.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.DailyRecurrenceRule.#ctor(Telerik.Web.UI.RecurrenceDay,Telerik.Web.UI.RecurrenceRange)">
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class DailyRecurrenceRuleExample2
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every week day.
                        DailyRecurrenceRule rrule = new DailyRecurrenceRule(RecurrenceDay.WeekDays, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek);
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM (Friday)
             2: 6/4/2007 3:30:00 PM (Monday)
             3: 6/5/2007 3:30:00 PM (Tuesday)
             4: 6/6/2007 3:30:00 PM (Wednesday)
             5: 6/7/2007 3:30:00 PM (Thursday)
             6: 6/8/2007 3:30:00 PM (Friday)
             7: 6/11/2007 3:30:00 PM (Monday)
             8: 6/12/2007 3:30:00 PM (Tuesday)
             9: 6/13/2007 3:30:00 PM (Wednesday)
            10: 6/14/2007 3:30:00 PM (Thursday)
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class DailyRecurrenceRuleExample2
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every week day.
                        Dim rrule As New DailyRecurrenceRule(RecurrenceDay.WeekDays, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek)
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM (Friday)
            ' 2: 6/4/2007 3:30:00 PM (Monday)
            ' 3: 6/5/2007 3:30:00 PM (Tuesday)
            ' 4: 6/6/2007 3:30:00 PM (Wednesday)
            ' 5: 6/7/2007 3:30:00 PM (Thursday)
            ' 6: 6/8/2007 3:30:00 PM (Friday)
            ' 7: 6/11/2007 3:30:00 PM (Monday)
            ' 8: 6/12/2007 3:30:00 PM (Tuesday)
            ' 9: 6/13/2007 3:30:00 PM (Wednesday)
            '10: 6/14/2007 3:30:00 PM (Thursday)
            '
                </code>
            </example>
            <summary>
                Initializes a new instance of <see cref="T:Telerik.Web.UI.DailyRecurrenceRule"/> with the
                specified days of week bit mask and <see cref="T:Telerik.Web.UI.RecurrenceRange"/>.
            </summary>
            <param name="daysOfWeekMask">A bit mask that specifies the week days on which the event recurs.</param>
            <param name="range">
            	The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this
                recurrence rule.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.DailyRecurrenceRule.Interval">
            <summary>Gets the interval (in days) between the occurrences.</summary>
            <value>The interval (in days) between the occurrences.</value>
        </member>
        <member name="P:Telerik.Web.UI.DailyRecurrenceRule.DaysOfWeekMask">
            <summary>
            Gets or sets the bit mask that specifies the week days on which the event
            recurs.
            </summary>
            <seealso cref="T:Telerik.Web.UI.RecurrenceDay">RecurrenceDay Enumeration</seealso>
            <remarks>
                For additional information on how to create masks see the
                <see cref="T:Telerik.Web.UI.RecurrenceDay"/> documentation.
            </remarks>
            <value>A bit mask that specifies the week days on which the event recurs.</value>
        </member>
        <member name="T:Telerik.Web.UI.HourlyRecurrenceRule">
            <summary>Occurrences of this rule repeat every given number of hours.</summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class HourlyRecurrenceRuleExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every 2 hours.
                        HourlyRecurrenceRule rrule = new HourlyRecurrenceRule(2, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM
             2: 6/1/2007 5:30:00 PM
             3: 6/1/2007 7:30:00 PM
             4: 6/1/2007 9:30:00 PM
             5: 6/1/2007 11:30:00 PM
             6: 6/2/2007 1:30:00 AM
             7: 6/2/2007 3:30:00 AM
             8: 6/2/2007 5:30:00 AM
             9: 6/2/2007 7:30:00 AM
            10: 6/2/2007 9:30:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class HourlyRecurrenceRuleExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every 2 hours.
                        Dim rrule As New HourlyRecurrenceRule(2, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM
            ' 2: 6/1/2007 5:30:00 PM
            ' 3: 6/1/2007 7:30:00 PM
            ' 4: 6/1/2007 9:30:00 PM
            ' 5: 6/1/2007 11:30:00 PM
            ' 6: 6/2/2007 1:30:00 AM
            ' 7: 6/2/2007 3:30:00 AM
            ' 8: 6/2/2007 5:30:00 AM
            ' 9: 6/2/2007 7:30:00 AM
            '10: 6/2/2007 9:30:00 AM
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.HourlyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceRange)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.HourlyRecurrenceRule"/> class
                with the specified interval (in hours) and <see cref="T:Telerik.Web.UI.RecurrenceRange"/>.
            </summary>
            <param name="interval">The number of hours between the occurrences.</param>
            <param name="range">
            	The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this
                recurrence rule.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.HourlyRecurrenceRule.Interval">
            <summary>Gets the interval (in hours) assigned to the current instance.</summary>
            <value>The interval (in hours) assigned to the current instance.</value>
        </member>
        <member name="T:Telerik.Web.UI.MonthlyRecurrenceRule">
            <summary>
            Occurrences of this rule repeat on a monthly basis.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class MonthlyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the 5th day of every month.
                        MonthlyRecurrenceRule rrule = new MonthlyRecurrenceRule(5, 1, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/5/2007 3:30:00 PM
             2: 7/5/2007 3:30:00 PM
             3: 8/5/2007 3:30:00 PM
             4: 9/5/2007 3:30:00 PM
             5: 10/5/2007 3:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class MonthlyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the 5th day of every month.
                        Dim rrule As New MonthlyRecurrenceRule(5, 1, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/5/2007 3:30:00 PM
            ' 2: 7/5/2007 3:30:00 PM
            ' 3: 8/5/2007 3:30:00 PM
            ' 4: 9/5/2007 3:30:00 PM
            ' 5: 10/5/2007 3:30:00 PM
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.MonthlyRecurrenceRule.#ctor(System.Int32,System.Int32,Telerik.Web.UI.RecurrenceRange)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.MonthlyRecurrenceRule"/> class.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class MonthlyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the 5th day of every month.
                        MonthlyRecurrenceRule rrule = new MonthlyRecurrenceRule(5, 1, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/5/2007 3:30:00 PM
             2: 7/5/2007 3:30:00 PM
             3: 8/5/2007 3:30:00 PM
             4: 9/5/2007 3:30:00 PM
             5: 10/5/2007 3:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class MonthlyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the 5th day of every month.
                        Dim rrule As New MonthlyRecurrenceRule(5, 1, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/5/2007 3:30:00 PM
            ' 2: 7/5/2007 3:30:00 PM
            ' 3: 8/5/2007 3:30:00 PM
            ' 4: 9/5/2007 3:30:00 PM
            ' 5: 10/5/2007 3:30:00 PM
            '
                </code>
            </example>
            <param name="dayOfMonth">The day of month on which the event recurs.</param>
            <param name="interval">The interval (in months) between the occurrences.</param>
            <param name="range">The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.</param>
        </member>
        <member name="M:Telerik.Web.UI.MonthlyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceDay,System.Int32,Telerik.Web.UI.RecurrenceRange)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.MonthlyRecurrenceRule"/> class.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class MonthlyRecurrenceRuleExample2
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the last monday of every two months.
                        MonthlyRecurrenceRule rrule = new MonthlyRecurrenceRule(-1, RecurrenceDay.Monday, 2, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/25/2007 3:30:00 PM
             2: 8/27/2007 3:30:00 PM
             3: 10/29/2007 2:30:00 PM
             4: 12/31/2007 2:30:00 PM
             5: 2/25/2008 2:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class MonthlyRecurrenceRuleExample2
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the last monday of every two months.
                        Dim rrule As New MonthlyRecurrenceRule(-1, RecurrenceDay.Monday, 2, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/25/2007 3:30:00 PM
            ' 2: 8/27/2007 3:30:00 PM
            ' 3: 10/29/2007 2:30:00 PM
            ' 4: 12/31/2007 2:30:00 PM
            ' 5: 2/25/2008 2:30:00 PM
            '
                </code>
            </example>
            <param name="dayOrdinal">The day ordinal modifier. See <see cref="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal"/> for additional information.</param>
            <param name="daysOfWeekMask">A bit mask that specifies the week days on which the event recurs.</param>
            <param name="interval">The interval (in months) between the occurrences.</param>
            <param name="range">The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.</param>
        </member>
        <member name="P:Telerik.Web.UI.MonthlyRecurrenceRule.DayOfMonth">
            <summary>
            Gets the day of month on which the event recurs.
            </summary>
            <value>The day of month on which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.MonthlyRecurrenceRule.DayOrdinal">
            <summary>
            Gets the day ordinal modifier. See <see cref="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal"/> for additional information.
            </summary>
            <seealso cref="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal"/>
            <value>The day ordinal modifier.</value>
        </member>
        <member name="P:Telerik.Web.UI.MonthlyRecurrenceRule.Month">
            <summary>
            Gets the month in which the event recurs.
            </summary>
            <value>The month in which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.MonthlyRecurrenceRule.Interval">
            <summary>Gets the interval (in months) between the occurrences.</summary>
            <value>The interval (in months) between the occurrences.</value>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceDay">
            <summary>
            	<para>Specifies the days of the week. Members might be combined using bitwise
                operations to specify multiple days.</para>
            </summary>
            <remarks>
                The constants in the <see cref="T:Telerik.Web.UI.RecurrenceDay"/> enumeration might be combined
                with bitwise operations to represent any combination of days. It is designed to be
                used in conjunction with the <see cref="T:Telerik.Web.UI.RecurrencePattern"/> class to filter
                the days of the week for which the recurrence pattern applies.
            </remarks>
            <example>
            	<para>Consider the following example that demonstrates the basic usage pattern of
                RecurrenceDay. The most common operators used for manipulating bit fields
                are:</para>
            	<list type="bullet">
            		<item>Bitwise OR: Turns a flag on.</item>
            		<item>Bitwise XOR: Toggles a flag.</item>
            		<item>Bitwise AND: Checks if a flag is turned on.</item>
            		<item>Bitwise NOT: Turns a flag off.</item>
            	</list>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class RecurrenceDayExample
                {
                    static void Main()
                    {
                        // Selects Friday, Saturday and Sunday.
                        RecurrenceDay dayMask = RecurrenceDay.Friday | RecurrenceDay.WeekendDays;
                        PrintSelectedDays(dayMask);
             
                        // Selects all days, except Thursday.
                        dayMask = RecurrenceDay.EveryDay ^ RecurrenceDay.Thursday;
                        PrintSelectedDays(dayMask);
                    }
             
                    static void PrintSelectedDays(RecurrenceDay dayMask)
                    {
                        Console.WriteLine("Value: {0,3} - {1}", (int) dayMask, dayMask);
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Value: 112 - Friday, WeekendDays
            Value: 119 - Monday, Tuesday, Wednesday, Friday, WeekendDays
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class RecurrenceDayExample
                    Shared Sub Main()
                        ' Selects Friday, Saturday and Sunday.
                        Dim dayMask As RecurrenceDay = RecurrenceDay.Friday Or RecurrenceDay.WeekendDays
                        PrintSelectedDays(dayMask)
             
                        ' Selects all days, except Thursday.
                        dayMask = RecurrenceDay.EveryDay Xor RecurrenceDay.Thursday
                        PrintSelectedDays(dayMask)
                    End Sub
             
                    Shared Sub PrintSelectedDays(ByVal dayMask As RecurrenceDay)
                        Console.WriteLine("Value: {0,3} - {1}", DirectCast(dayMask, Integer), dayMask)
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Value: 112 - Friday, WeekendDays
            'Value: 119 - Monday, Tuesday, Wednesday, Friday, WeekendDays
            '
                </code>
            </example>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.None">
            <summary>Indicates no selected day.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Sunday">
            <summary>Indicates Monday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Monday">
            <summary>Indicates Tuesday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Tuesday">
            <summary>Indicates Wednesday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Wednesday">
            <summary>Indicates Thursday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Thursday">
            <summary>Indicates Friday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Friday">
            <summary>Indicates Saturday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.Saturday">
            <summary>Indicates Sunday.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.EveryDay">
            <summary><para>Indicates the range from Sunday to Saturday inclusive.</para></summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.WeekDays">
            <summary>Indicates the range from Monday to Friday inclusive.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceDay.WeekendDays">
            <summary>Indicates the range from Saturday to Sunday inclusive.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceFrequency">
            <summary>Specifies the frequency of a recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.None">
            <summary>Indicates no recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.Hourly">
            <summary>Indicates hourly recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.Daily">
            <summary>Indicates daily recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.Weekly">
            <summary>Indicates weekly recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.Monthly">
            <summary>Indicates monthly recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceFrequency.Yearly">
            <summary>Indicates yearly recurrence.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceMonth">
            <summary>Specifies the months in which given event recurs.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.None">
            <summary>Indicates no monthly recurrence.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.January">
            <summary>Indicates that the event recurs in January.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.February">
            <summary>Indicates that the event recurs in February.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.March">
            <summary>Indicates that the event recurs in March.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.April">
            <summary>Indicates that the event recurs in April.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.May">
            <summary>Indicates that the event recurs in May.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.June">
            <summary>Indicates that the event recurs in June.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.July">
            <summary>Indicates that the event recurs in July.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.August">
            <summary>Indicates that the event recurs in August.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.September">
            <summary>Indicates that the event recurs in September.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.October">
            <summary>Indicates that the event recurs in October.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.November">
            <summary>Indicates that the event recurs in November.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RecurrenceMonth.December">
            <summary>Indicates that the event recurs in December.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RecurrencePattern">
            <summary>
                Specifies the pattern that <see cref="T:Telerik.Web.UI.RecurrenceRule"/> uses to evaluate the
                recurrence dates set.
            </summary>
            <remarks>
            	<para>
                    The properties of the <see cref="T:Telerik.Web.UI.RecurrencePattern"/> class work together
                    to define a complete pattern definition to be used by the
                    <see cref="T:Telerik.Web.UI.RecurrenceRule"/> engine.
                </para>
            	<para>
                    You should not need to work with it directly as specialized
                    <see cref="T:Telerik.Web.UI.RecurrenceRule"/> classes are provided for the supported modes
                    of recurrence. They take care of constructing appropriate
                    <see cref="T:Telerik.Web.UI.RecurrencePattern"/> objects.
                </para>
            </remarks>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class RecurrencePatternExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule for the appointment.
                        DailyRecurrenceRule rrule = new DailyRecurrenceRule(1, range);
             
                        // Displays the relevant parts of the generated pattern:
                        Console.WriteLine("The active recurrence pattern is:");
                        Console.WriteLine("  Frequency: {0}", rrule.Pattern.Frequency);
                        Console.WriteLine("  Interval: {0}", rrule.Pattern.Interval);
                        Console.WriteLine("  Days of week: {0}\n", rrule.Pattern.DaysOfWeekMask);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            The active recurrence pattern is:
              Frequency: Daily
              Interval: 1
              Days of week: EveryDay
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM
             2: 6/2/2007 3:30:00 PM
             3: 6/3/2007 3:30:00 PM
             4: 6/4/2007 3:30:00 PM
             5: 6/5/2007 3:30:00 PM
             6: 6/6/2007 3:30:00 PM
             7: 6/7/2007 3:30:00 PM
             8: 6/8/2007 3:30:00 PM
             9: 6/9/2007 3:30:00 PM
            10: 6/10/2007 3:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class RecurrencePatternExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule for the appointment.
                        Dim rrule As New DailyRecurrenceRule(1, range)
             
                        ' Displays the relevant parts of the generated pattern:
                        Console.WriteLine("The active recurrence pattern is:")
                        Console.WriteLine("  Frequency: {0}", rrule.Pattern.Frequency)
                        Console.WriteLine("  Interval: {0}", rrule.Pattern.Interval)
                        Console.WriteLine("  Days of week: {0}" &amp; Chr(10) &amp; "", rrule.Pattern.DaysOfWeekMask)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'The active recurrence pattern is:
            '  Frequency: Daily
            '  Interval: 1
            '  Days of week: EveryDay
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM
            ' 2: 6/2/2007 3:30:00 PM
            ' 3: 6/3/2007 3:30:00 PM
            ' 4: 6/4/2007 3:30:00 PM
            ' 5: 6/5/2007 3:30:00 PM
            ' 6: 6/6/2007 3:30:00 PM
            ' 7: 6/7/2007 3:30:00 PM
            ' 8: 6/8/2007 3:30:00 PM
            ' 9: 6/9/2007 3:30:00 PM
            '10: 6/10/2007 3:30:00 PM
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RecurrencePattern.Equals(System.Object)">
            <summary>
            Overloaded. Overridden. Returns a value indicating whether this instance is equal
            to a specified object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> is an instance of
                <see cref="T:Telerik.Web.UI.RecurrencePattern"/> and equals the value of this instance;
                otherwise, <b>false</b>.
            </returns>
            <param name="obj">An object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrencePattern.GetHashCode">
            <summary>Overriden. Returns the hash code for this instance.</summary>
            <returns>The hash code for this instance.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RecurrencePattern.Equals(Telerik.Web.UI.RecurrencePattern)">
            <summary>
                Overloaded. Overridden. Returns a value indicating whether this instance is equal
                to a specified <see cref="T:Telerik.Web.UI.RecurrencePattern"/> object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> equals the value of this instance;
            otherwise, <b>false</b>.
            </returns>
            <param name="other">An <see cref="T:Telerik.Web.UI.RecurrencePattern"/> object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrencePattern.op_Equality(Telerik.Web.UI.RecurrencePattern,Telerik.Web.UI.RecurrencePattern)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrencePattern"/> objects have the
                same value.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrencePattern.op_Inequality(Telerik.Web.UI.RecurrencePattern,Telerik.Web.UI.RecurrencePattern)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrencePattern"/> objects have
                different values.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.Frequency">
            <value>
            	<para>
                    A <see cref="T:Telerik.Web.UI.RecurrenceFrequency"/> enumerated constant that indicates the
                    frequency of recurrence.
                </para>
            </value>
            <summary>Gets or sets the frequency of recurrence.</summary>
            <remarks>The default value is <see cref="F:Telerik.Web.UI.RecurrenceFrequency.None"/>.</remarks>
            <seealso cref="T:Telerik.Web.UI.RecurrenceFrequency">RecurrenceFrequency Enumeration</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.Interval">
            <summary>Gets or sets the interval of recurrence.</summary>
            <value>
            	<para>
                    A positive integer representing how often the recurrence rule repeats,
                    expressed in <see cref="T:Telerik.Web.UI.RecurrenceFrequency"/> units.
                </para>
            </value>
            <remarks>The default value is 1.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.DaysOfWeekMask">
            <summary>
            Gets or sets the bit mask that specifies the week days on which the event
            recurs.
            </summary>
            <seealso cref="T:Telerik.Web.UI.RecurrenceDay">RecurrenceDay Enumeration</seealso>
            <remarks>
                For additional information on how to create masks see the
                <see cref="T:Telerik.Web.UI.RecurrenceDay"/> documentation.
            </remarks>
            <value>A bit mask that specifies the week days on which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.DayOfMonth">
            <summary>Gets or sets the day month on which the event recurs.</summary>
            <value>The day month on which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal">
            <remarks>
            	<para>
                    This property is meaningful only when <see cref="T:Telerik.Web.UI.RecurrenceFrequency"/> is
                    set to <see cref="F:Telerik.Web.UI.RecurrenceFrequency.Monthly"/> or
                    <see cref="F:Telerik.Web.UI.RecurrenceFrequency.Yearly"/> and <see cref="P:Telerik.Web.UI.RecurrencePattern.DayOfMonth"/>
                    is not set.
                </para>
            	<para>In such scenario it selects the n-th occurrence within the set of events
                specified by the rule. Valid values are from -31 to +31, 0 is ignored.</para>
            	<para>For example with RecurrenceFrequency set to Monthly and DaysOfWeekMask set to
                Monday DayOfMonth is interpreted in the following way:</para>
            	<list type="bullet">
            		<item>
            			<ul class="noindent">
            				<li>1: Selects the first monday of the month.</li>
            				<li>3: Selects the third monday of the month.</li>
            				<li>-1: Selects the last monday of the month.</li>
            			</ul>
            		</item>
            	</list>
            	<para>
                    For detailed examples see the documentation of the
                    <see cref="T:Telerik.Web.UI.MonthlyRecurrenceRule"/> class.
                </para>
            </remarks>
            <seealso cref="T:Telerik.Web.UI.MonthlyRecurrenceRule">MonthlyRecurrenceRule Class</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.Month">
            <summary>Gets or sets the month on which the event recurs.</summary>
            <value>
                This property is only meaningful when <see cref="T:Telerik.Web.UI.RecurrenceFrequency"/> is set
                to <see cref="F:Telerik.Web.UI.RecurrenceFrequency.Yearly"/>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrencePattern.FirstDayOfWeek">
            <summary>Gets or sets the day on which the week starts.</summary>
            <value>
                This property is only meaningful when <see cref="T:Telerik.Web.UI.RecurrenceFrequency"/> is set
                to <see cref="F:Telerik.Web.UI.RecurrenceFrequency.Weekly"/> and <see cref="P:Telerik.Web.UI.RecurrencePattern.Interval"/> is greater than 1.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceRange">
            <summary>
            	<para>
                    Specifies the time frame for which given <see cref="T:Telerik.Web.UI.RecurrenceRule"/> is
                    active. It consists of the start time of the event, it's duration and optional
                    limits.
                </para>
            </summary>
            <remarks>
            	<para>
                    Limits for both occurrence count and end date can be specified via the
                    <see cref="P:Telerik.Web.UI.RecurrenceRange.MaxOccurrences"/> and <see cref="P:Telerik.Web.UI.RecurrenceRange.RecursUntil"/>
                    properties.
                </para>
            	<para>
                    Start and EventDuration properties refer to the recurring event's start and
                    duration. In the context of <see cref="T:Telerik.Web.UI.RadScheduler"/> they are usually
                    derived from <see cref="P:Telerik.Web.UI.Appointment.Start"/> and <see cref="P:Telerik.Web.UI.Appointment.End"/>.
                </para>
            </remarks>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class RecurrenceRangeExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a daily recurrence rule for the appointment.
                        DailyRecurrenceRule rrule = new DailyRecurrenceRule(1, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/1/2007 3:30:00 PM
             2: 6/2/2007 3:30:00 PM
             3: 6/3/2007 3:30:00 PM
             4: 6/4/2007 3:30:00 PM
             5: 6/5/2007 3:30:00 PM
             6: 6/6/2007 3:30:00 PM
             7: 6/7/2007 3:30:00 PM
             8: 6/8/2007 3:30:00 PM
             9: 6/9/2007 3:30:00 PM
            10: 6/10/2007 3:30:00 PM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class RecurrenceRangeExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a daily recurrence rule for the appointment.
                        Dim rrule As New DailyRecurrenceRule(1, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/1/2007 3:30:00 PM
            ' 2: 6/2/2007 3:30:00 PM
            ' 3: 6/3/2007 3:30:00 PM
            ' 4: 6/4/2007 3:30:00 PM
            ' 5: 6/5/2007 3:30:00 PM
            ' 6: 6/6/2007 3:30:00 PM
            ' 7: 6/7/2007 3:30:00 PM
            ' 8: 6/8/2007 3:30:00 PM
            ' 9: 6/9/2007 3:30:00 PM
            '10: 6/10/2007 3:30:00 PM
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.#ctor">
            <summary>
                Overloaded. Initializes a new instance of the <see cref="T:Telerik.Web.UI.RecurrenceRange"/>
                class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.#ctor(System.DateTime,System.TimeSpan,System.DateTime,System.Int32)">
            <summary>
                Overloaded. Initializes a new instance of the <see cref="T:Telerik.Web.UI.RecurrenceRange"/>
                class with to the specified Start, EventDuration, RecursUntil and MaxOccurrences
                values.
            </summary>
            <param name="start">The start of the recurring event.</param>
            <param name="duration">The duration of the recurring event.</param>
            <param name="recursUntil">
            Optional end date for the recurring appointment. Defaults to no end date
            (DateTime.MaxValue).
            </param>
            <param name="maxOccurrences">
            Optional limit for the number of occurrences. Defaults to no limit
            (Int32.MaxInt).
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.Equals(System.Object)">
            <summary>
            Overloaded. Overridden. Returns a value indicating whether this instance is equal
            to a specified object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> is an instance of
                <see cref="T:Telerik.Web.UI.RecurrenceRange"/> and equals the value of this instance;
                otherwise, <b>false</b>.
            </returns>
            <param name="obj">An object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.GetHashCode">
            <summary>Overriden. Returns the hash code for this instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.Equals(Telerik.Web.UI.RecurrenceRange)">
            <summary>
                Overloaded. Overridden. Returns a value indicating whether this instance is equal
                to a specified <see cref="T:Telerik.Web.UI.RecurrenceRange"/> object.
            </summary>
            <returns>
            	<strong>true</strong> if <i>value</i> equals the value of this instance;
            otherwise, <b>false</b>.
            </returns>
            <param name="other">An <see cref="T:Telerik.Web.UI.RecurrenceRange"/> object to compare with this instance.</param>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.op_Equality(Telerik.Web.UI.RecurrenceRange,Telerik.Web.UI.RecurrenceRange)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrenceRange"/> objects have the
                same value.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRange.op_Inequality(Telerik.Web.UI.RecurrenceRange,Telerik.Web.UI.RecurrenceRange)">
            <summary>
                Determines whether two specified <see cref="T:Telerik.Web.UI.RecurrenceRange"/> objects have
                different values.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRange.Start">
            <summary>The start of the recurring event.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRange.EventDuration">
            <summary>The duration of the recurring event.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRange.RecursUntil">
            <summary>
            Optional end date for the recurring appointment. Defaults to no end date
            (DateTime.MaxValue).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceRange.MaxOccurrences">
            <summary>
            Optional limit for the number of occurrences. Defaults to no limit
            (Int32.MaxInt).
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RecurrenceRuleConverter">
            <summary>
            Provides a type converter to convert RecurrenceRule objects to and from string
            representation.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRuleConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Overloaded. Returns whether this converter can convert an object of one type to
            the type of this converter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRuleConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Overloaded. Converts the given value to the type of this converter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRuleConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Overloaded. Returns whether this converter can convert the object to the
            specified type.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRuleConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>Overloaded. Converts the given value object to the specified type.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RecurrenceRuleConverter.IsValid(System.ComponentModel.ITypeDescriptorContext,System.Object)">
            <summary>Overloaded. Returns whether the given value object is valid for this type.</summary>
        </member>
        <member name="T:Telerik.Web.UI.WeeklyRecurrenceRule">
            <summary>Occurrences of this rule repeat on a weekly basis.</summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class WeeklyRecurrenceRuleExample
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"),
                            Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 10;
             
                        // Creates a recurrence rule to repeat the appointment every two weeks on Mondays and Tuesdays.
                        RecurrenceDay mask = RecurrenceDay.Monday | RecurrenceDay.Tuesday;
                        WeeklyRecurrenceRule rrule = new WeeklyRecurrenceRule(2, mask, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek);
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 6/4/2007 3:30:00 PM (Monday)
             2: 6/5/2007 3:30:00 PM (Tuesday)
             3: 6/18/2007 3:30:00 PM (Monday)
             4: 6/19/2007 3:30:00 PM (Tuesday)
             5: 7/2/2007 3:30:00 PM (Monday)
             6: 7/3/2007 3:30:00 PM (Tuesday)
             7: 7/16/2007 3:30:00 PM (Monday)
             8: 7/17/2007 3:30:00 PM (Tuesday)
             9: 7/30/2007 3:30:00 PM (Monday)
            10: 7/31/2007 3:30:00 PM (Tuesday)
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class WeeklyRecurrenceRuleExample
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 6/1/2007 3:30 PM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("6/1/2007 3:30 PM"), Convert.ToDateTime("6/1/2007 4:00 PM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 10
             
                        ' Creates a recurrence rule to repeat the appointment every two weeks on Mondays and Tuesdays.
                        Dim mask As RecurrenceDay = RecurrenceDay.Monday Or RecurrenceDay.Tuesday
                        Dim rrule As New WeeklyRecurrenceRule(2, mask, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1} ({2})", ix, occurrence.ToLocalTime(), occurrence.DayOfWeek)
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 6/4/2007 3:30:00 PM (Monday)
            ' 2: 6/5/2007 3:30:00 PM (Tuesday)
            ' 3: 6/18/2007 3:30:00 PM (Monday)
            ' 4: 6/19/2007 3:30:00 PM (Tuesday)
            ' 5: 7/2/2007 3:30:00 PM (Monday)
            ' 6: 7/3/2007 3:30:00 PM (Tuesday)
            ' 7: 7/16/2007 3:30:00 PM (Monday)
            ' 8: 7/17/2007 3:30:00 PM (Tuesday)
            ' 9: 7/30/2007 3:30:00 PM (Monday)
            '10: 7/31/2007 3:30:00 PM (Tuesday)
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WeeklyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceDay,Telerik.Web.UI.RecurrenceRange)">
            <summary>
                Initializes a new instance of <see cref="T:Telerik.Web.UI.WeeklyRecurrenceRule"/> with the
                specified interval, days of week bit mask and <see cref="T:Telerik.Web.UI.RecurrenceRange"/>.
            </summary>
            <param name="interval">The number of weeks between the occurrences.</param>
            <param name="daysOfWeekMask">A bit mask that specifies the week days on which the event recurs.</param>
            <param name="range">
            	The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.WeeklyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceDay,Telerik.Web.UI.RecurrenceRange,System.DayOfWeek)">
            <summary>
                Initializes a new instance of <see cref="T:Telerik.Web.UI.WeeklyRecurrenceRule"/> with the
                specified interval, days of week bit mask and <see cref="T:Telerik.Web.UI.RecurrenceRange"/>.
            </summary>
            <param name="interval">The number of weeks between the occurrences.</param>
            <param name="daysOfWeekMask">A bit mask that specifies the week days on which the event recurs.</param>
            <param name="range">
            	The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.
            </param>
            <param name="firstDayOfWeek">
            	The first day of week to use for calculations.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.WeeklyRecurrenceRule.Interval">
            <summary>Gets the interval (in weeks) assigned to the current instance.</summary>
            <value>The interval (in weeks) assigned to the current instance.</value>
        </member>
        <member name="P:Telerik.Web.UI.WeeklyRecurrenceRule.DaysOfWeekMask">
            <summary>
            Gets the bit mask that specifies the week days on which the event
            recurs.
            </summary>
            <seealso cref="T:Telerik.Web.UI.RecurrenceDay">RecurrenceDay Enumeration</seealso>
            <remarks>
                For additional information on how to create masks see the
                <see cref="T:Telerik.Web.UI.RecurrenceDay"/> documentation.
            </remarks>
            <value>A bit mask that specifies the week days on which the event recurs.</value>
        </member>
        <member name="T:Telerik.Web.UI.YearlyRecurrenceRule">
            <summary>
            Occurrences of this rule repeat on a yearly basis.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class YearlyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"),
                            Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the 1th of April each year.
                        YearlyRecurrenceRule rrule = new YearlyRecurrenceRule(RecurrenceMonth.April, 1, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 4/1/2007 10:00:00 AM
             2: 4/1/2008 10:00:00 AM
             3: 4/1/2009 10:00:00 AM
             4: 4/1/2010 10:00:00 AM
             5: 4/1/2011 10:00:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class YearlyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"), Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the 1th of April each year.
                        Dim rrule As New YearlyRecurrenceRule(RecurrenceMonth.April, 1, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 4/1/2007 10:00:00 AM
            ' 2: 4/1/2008 10:00:00 AM
            ' 3: 4/1/2009 10:00:00 AM
            ' 4: 4/1/2010 10:00:00 AM
            ' 5: 4/1/2011 10:00:00 AM
            '
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.YearlyRecurrenceRule.#ctor(Telerik.Web.UI.RecurrenceMonth,System.Int32,Telerik.Web.UI.RecurrenceRange)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.YearlyRecurrenceRule"/> class.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class YearlyRecurrenceRuleExample1
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"),
                            Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the 1th of April each year.
                        YearlyRecurrenceRule rrule = new YearlyRecurrenceRule(RecurrenceMonth.April, 1, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 4/1/2007 10:00:00 AM
             2: 4/1/2008 10:00:00 AM
             3: 4/1/2009 10:00:00 AM
             4: 4/1/2010 10:00:00 AM
             5: 4/1/2011 10:00:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class YearlyRecurrenceRuleExample1
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"), Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the 1th of April each year.
                        Dim rrule As New YearlyRecurrenceRule(RecurrenceMonth.April, 1, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 4/1/2007 10:00:00 AM
            ' 2: 4/1/2008 10:00:00 AM
            ' 3: 4/1/2009 10:00:00 AM
            ' 4: 4/1/2010 10:00:00 AM
            ' 5: 4/1/2011 10:00:00 AM
            '
                </code>
            </example>
            <param name="month">The month in which the event recurs.</param>
            <param name="dayOfMonth">The day of month on which the event recurs.</param>
            <param name="range">The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.</param>
        </member>
        <member name="M:Telerik.Web.UI.YearlyRecurrenceRule.#ctor(System.Int32,Telerik.Web.UI.RecurrenceMonth,Telerik.Web.UI.RecurrenceDay,Telerik.Web.UI.RecurrenceRange)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.YearlyRecurrenceRule"/> class.
            </summary>
            <example>
            	<code lang="CS">
            using System;
            using Telerik.Web.UI;
             
            namespace RecurrenceExamples
            {
                class YearlyRecurrenceRuleExample2
                {
                    static void Main()
                    {
                        // Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Appointment recurringAppointment = new Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"),
                            Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment");
             
                        // Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        RecurrenceRange range = new RecurrenceRange();
                        range.Start = recurringAppointment.Start;
                        range.EventDuration = recurringAppointment.End - recurringAppointment.Start;
                        range.MaxOccurrences = 5;
             
                        // Creates a recurrence rule to repeat the appointment on the second monday of April each year.
                        YearlyRecurrenceRule rrule = new YearlyRecurrenceRule(2, RecurrenceMonth.April, RecurrenceDay.Monday, range);
             
                        Console.WriteLine("Appointment occurrs at the following times: ");
                        int ix = 0;
                        foreach (DateTime occurrence in rrule.Occurrences)
                        {
                            ix = ix + 1;
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime());
                        }
                    }
                }
            }
             
            /*
            This example produces the following results:
             
            Appointment occurrs at the following times:
             1: 4/9/2007 10:00:00 AM
             2: 4/14/2008 10:00:00 AM
             3: 4/13/2009 10:00:00 AM
             4: 4/12/2010 10:00:00 AM
             5: 4/11/2011 10:00:00 AM
            */
                </code>
            	<code lang="VB">
            Imports System
            Imports Telerik.Web.UI
             
            Namespace RecurrenceExamples
                Class YearlyRecurrenceRuleExample2
                    Shared Sub Main()
                        ' Creates a sample appointment that starts at 4/1/2007 10:00 AM (local time) and lasts half an hour.
                        Dim recurringAppointment As New Appointment("1", Convert.ToDateTime("4/1/2007 10:00 AM"), Convert.ToDateTime("4/1/2007 10:30 AM"), "Sample appointment")
             
                        ' Creates a recurrence range, that specifies a limit of 10 occurrences for the appointment.
                        Dim range As New RecurrenceRange()
                        range.Start = recurringAppointment.Start
                        range.EventDuration = recurringAppointment.[End] - recurringAppointment.Start
                        range.MaxOccurrences = 5
             
                        ' Creates a recurrence rule to repeat the appointment on the second monday of April each year.
                        Dim rrule As New YearlyRecurrenceRule(2, RecurrenceMonth.April, RecurrenceDay.Monday, range)
             
                        Console.WriteLine("Appointment occurrs at the following times: ")
                        Dim ix As Integer = 0
                        For Each occurrence As DateTime In rrule.Occurrences
                            ix = ix + 1
                            Console.WriteLine("{0,2}: {1}", ix, occurrence.ToLocalTime())
                        Next
                    End Sub
                End Class
            End Namespace
             
            '
            'This example produces the following results:
            '
            'Appointment occurrs at the following times:
            ' 1: 4/9/2007 10:00:00 AM
            ' 2: 4/14/2008 10:00:00 AM
            ' 3: 4/13/2009 10:00:00 AM
            ' 4: 4/12/2010 10:00:00 AM
            ' 5: 4/11/2011 10:00:00 AM
            '
                </code>
            </example>
            <param name="dayOrdinal">The day ordinal modifier. See <see cref="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal"/> for additional information.</param>
            <param name="month">The month in which the event recurs.</param>
            <param name="daysOfWeekMask">A bit mask that specifies the week days on which the event recurs.</param>
            <param name="range">The <see cref="T:Telerik.Web.UI.RecurrenceRange"/> instance that specifies the range of this rule.</param>
        </member>
        <member name="P:Telerik.Web.UI.YearlyRecurrenceRule.DayOfMonth">
            <summary>
            Gets the day of month on which the event recurs.
            </summary>
            <value>The day of month on which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.YearlyRecurrenceRule.DayOrdinal">
            <summary>
            Gets the day ordinal modifier. See <see cref="P:Telerik.Web.UI.RecurrencePattern.DayOrdinal"/> for additional information.
            </summary>
            <value>The day ordinal modifier.</value>
        </member>
        <member name="P:Telerik.Web.UI.YearlyRecurrenceRule.Month">
            <summary>
            Gets the month in which the event recurs.
            </summary>
            <value>The month in which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.YearlyRecurrenceRule.DaysOfWeekMask">
            <summary>
            Gets the bit mask that specifies the week days on which the event
            recurs.
            </summary>
            <seealso cref="T:Telerik.Web.UI.RecurrenceDay">RecurrenceDay Enumeration</seealso>
            <remarks>
                For additional information on how to create masks see the
                <see cref="T:Telerik.Web.UI.RecurrenceDay"/> documentation.
            </remarks>
            <value>A bit mask that specifies the week days on which the event recurs.</value>
        </member>
        <member name="P:Telerik.Web.UI.Resource.Key">
            <summary>
            Gets or sets a value indicating the resource primary key value.
            </summary>
            <value>
            The resource primary key value.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.Resource.Text">
            <summary>
            Gets or sets a value indicating the user-friendly description of the resource.
            </summary>
            <value>
            The user-friendly description of the resource.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.Resource.Type">
            <summary>
            Gets or sets a value indicating the resource type.
            </summary>
            <value>
            The resource type.
            </value>
            <remarks>
            The type must be one of the described resource types in
            <see cref="P:Telerik.Web.UI.RadScheduler.ResourceTypes">ResourceTypes</see> collection.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Resource.Available">
            <summary>
            Gets or sets a value indicating if the resource is a available.
            </summary>
            <value>
            A value indicating if the resource is a available.
            </value>
            <remarks>
            Resources marked as unavailable will not be visible
            in the drop-down lists in the advanced form (if applicable).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Resource.CssClass">
            <summary>
            Gets or sets the cascading style sheet (CSS) class rendered for appointments that use this resource.
            </summary>
            <value>
            The cascading style sheet (CSS) class rendered for appointments that use this resource.
            The default value is <see cref="F:System.String.Empty">Empty</see>.
            </value>
            <remarks>
            You can define your own CSS class name or use some of the predefined class names:
            <list type="bullet">
            	<item><strong>rsCategoryRed</strong></item>
            	<item><strong>rsCategoryBlue</strong></item>
            	<item><strong>rsCategoryOrange</strong></item>
            	<item><strong>rsCategoryGreen</strong></item>
            </list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Resource.Attributes">
            <summary>
            Gets the collection of arbitrary attributes that do not correspond to properties on the resource.
            </summary>
            <value>
            A <see cref="T:System.Web.UI.AttributeCollection">AttributeCollection</see> of name and value pairs.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.Resource.DataItem">
            <summary>
            Gets or sets the data item represented by the
            <see cref="T:Telerik.Web.UI.Resource">Resource</see> object in the
            <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see> control.
            </summary>
            <remarks>
            This property is available only during data binding.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.ResourceCollection.GetResourceByType(System.String)">
            <summary>
            Gets the first resource (if any) of the specified type.
            </summary>
            <param name="type">The type of resource to search for.</param>
            <returns>The first resource of the specified type; null if no resource matches.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ResourceCollection.GetResourcesByType(System.String)">
            <summary>
            Gets the resources of the specified type.
            </summary>
            <param name="type">The type of resource to search for.</param>
            <returns>The resources of the specified type.</returns>
        </member>
        <member name="M:Telerik.Web.UI.ResourceCollection.GetResource(System.String,System.Object)">
            <summary>
            Gets the resource that matches the specified type and key.
            </summary>
            <param name="type">The type.</param>
            <param name="key">The key.</param>
            <returns>The resource that matches the specified type and key; null if no resource matches.</returns>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerFormContainer.ClientIDMode">
            <summary>
            This property is overridden in order to allow the client-side script to easily locate child controls.
            The default value is changed to "AutoID".
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerPostBackCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.SchedulerPostBackEvent">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.SchedulerStyles">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduling.InlineEditTemplate">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduling.InlineInsertTemplate">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Widgets.DirectoryItem">
            <summary>
            Represents a directory item in the FileBrowser control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Widgets.FileBrowserItem">
            <summary>
            The base class of the FileItem and DirectoryItem classes. Contains the common functionality.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserItem.Serialize(System.IO.StringWriter)">
            <summary>
            Serializes the item into a javascript array. This method should be overridden only when developing 
            a custom FileBrowser control.
            </summary>
            <param name="writer">a StringWriter used as a target for the serialization.</param>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserItem.WriteJavascriptString(System.IO.StringWriter,System.String)">
            <summary>
            Utility method used when serializing. Escapes a string for javascript.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserItem.WriteSeparator(System.IO.StringWriter)">
            <summary>
            Utility method used when serializing. Writes a javascript array separator.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserItem.RemoveLastSeparator(System.IO.StringWriter)">
            <summary>
            Utility method used when serializing. Removes the last javascript array separator from the underlying
            StringBuilder of writer.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserItem.SerializeAttributes(System.IO.StringWriter)">
            <summary>
            Serializes the Attributes array.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserItem.Attributes">
            <summary>
            Gets or sets a string array containing custom values which can be used on the client when 
            customizing the FileBrowser control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserItem.Path">
            <summary>
            Gets the full virtual path to the file/directory item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserItem.Name">
            <summary>
            Gets the name of the file item. The value of this property will be displayed in the FileBrowser control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserItem.Permissions">
            <summary>
            Gets the permissions on the file item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserItem.Tag">
            <summary>
            Gets the tag of the file/directory item. Used in custom content providers (can store additional data).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.DirectoryItem.ClearDirectories">
            <summary>
            Clears the Directories array. Can be used when building the directory list in List mode.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.DirectoryItem.Serialize(System.IO.StringWriter)">
            <summary>
            Serializes the directory item into a javascript array. This method should be overridden only when developing 
            a custom FileBrowser control.
            </summary>
            <param name="writer">a StringWriter used as a target for the serialization.</param>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.DirectoryItem.SerializeContent(System.IO.StringWriter)">
            <summary>
            Serializes the children of the directory item as a javascript array. 
            Recursively calls the Serialize methods of all child objects.
            </summary>
            <param name="writer">a StringWriter used as a target for the serialization.</param>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.DirectoryItem.#ctor">
            <summary>
             Creates an instance of the DirectoryItem class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.DirectoryItem.#ctor(System.String,System.String,System.String,System.String,Telerik.Web.UI.Widgets.PathPermissions,Telerik.Web.UI.Widgets.FileItem[],Telerik.Web.UI.Widgets.DirectoryItem[])">
            <summary>
            Creates an instance of the DirectoryItem class.
            </summary>
            <param name="name">The name of the directory item.</param>
            <param name="location">The location of the directory item. To let the FileBrowser control 
            automatically build its path you should set this parameter to string.Empty. If the DirectoryItem is a
            root item, this parameter must contain the virtual location of the item.</param>
            <param name="fullPath">The full virtual path of the directory item. Used by the ContentProvider for 
            populating the Directories and Files properties.</param>
            <param name="tag">The tag of the directory item. Used when the virtual path must be different than the url of the item. 
            When the value of this property is set, the FileBrowser control uses it instead of the combined virtual path.</param>
            <param name="permissions">The permissions for this directory item.</param>
            <param name="files">A FileItem array containing all child file items.</param>
            <param name="directories">A DirectoryItem array containing all child directory items.</param>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.DirectoryItem.Path">
            <summary>
            Gets the full virtual path to the directory item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.DirectoryItem.FullPath">
            <summary>
            Gets the full virtual path to the directory item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.DirectoryItem.Location">
            <summary>
            Gets the virtual location of the directory item. When the item is not root, the value
            of this property should be string.Empty. The FileBrowser control recursively combines the names 
            of all parent directory items in order to get the full virtual path of the item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.DirectoryItem.Directories">
            <summary>
            Gets a DirectoryItem array containing all child directory items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.DirectoryItem.Files">
            <summary>
            Gets a FileItem array containing all child file items.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Widgets.FileBrowserContentProvider">
            <summary>
            Provides storage independent mechanism for uploading files and 
            populating the content of the FileBrowser dialog controls.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.#ctor(System.Web.HttpContext,System.String[],System.String[],System.String[],System.String[],System.String,System.String)">
            <summary>
            Creates a new instance of the class. Used internally by FileManager to create instances of the content provider.
            </summary>
            <param name="context">The current HttpContext.</param>
            <param name="searchPatterns">Search patterns for files. Allows wildcards.</param>
            <param name="viewPaths">The paths which will be displayed in the FileManager. You can disregard
            this value if you have custom mechanism for determining the rights for directory / file displaying.</param>
            <param name="uploadPaths">The paths which will allow uploading in the FileManager. You can disregard this
            value if you have custom mechanism for determining the rights for uploading.</param>
            <param name="deletePaths">The paths which will allow deleting in the dialog. You can disregard this
            value if you have custom mechanism for determining the rights for deleting.</param>
            <param name="selectedUrl">The selected url in the file browser. The file browser will navigate to the item
            which has this url.</param>
            <param name="selectedItemTag">The selected tag in the file browser. The file browser will navigate to the
            item which has this tag.</param>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.ResolveRootDirectoryAsList(System.String)">
            <summary>
            Resolves a root directory with the given path in list mode.
            </summary>
            <param name="path">The virtual path of the directory.</param>
            <returns>A DirectoryItem array, containing the root directory and all child directories.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.ResolveRootDirectoryAsTree(System.String)">
            <summary>
            Resolves a root directory with the given path in tree mode.
            </summary>
            <param name="path">The virtual path of the directory.</param>
            <returns>A DirectoryItem, containing the root directory.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.ResolveDirectory(System.String)">
            <summary>
            Resolves a directory with the given path.
            </summary>
            <param name="path">The virtual path of the directory.</param>
            <returns>A DirectoryItem, containing the directory.</returns>
            <remarks>
            Used mainly in the Ajax calls.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.GetFileName(System.String)">
            <summary>
            Get the name of the file with the given url.
            </summary>
            <param name="url">The url of the file.</param>
            <returns>String containing the file name.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.GetPath(System.String)">
            <summary>
            Gets the virtual path of the item with the given url.
            </summary>
            <param name="url">The url of the item.</param>
            <returns>String containing the path of the item.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.GetFile(System.String)">
            <summary>
            Gets a read only Stream for accessing the file item with the given url.
            </summary>
            <param name="url">The url of the file.</param>
            <returns>Stream for accessing the contents of the file item with the given url.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.StoreBitmap(System.Drawing.Bitmap,System.String,System.Drawing.Imaging.ImageFormat)">
            <summary>
            Stores an image with the given url and image format.
            </summary>
            <param name="bitmap">The Bitmap object to be stored.</param>
            <param name="url">The url of the bitmap.</param>
            <param name="format">The image format of the bitmap.</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
            <remarks>
            Used when creating thumbnails in the ImageManager dialog.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.StoreFile(System.Web.HttpPostedFile,System.String,System.String,System.String[])">
            <summary>
            Creates a file item from a HttpPostedFile to the given path with the given name.
            </summary>
            <param name="file">The uploaded HttpPostedFile to store.</param>
            <param name="path">The virtual path where the file item should be created.</param>
            <param name="name">The name of the file item.</param>
            <param name="arguments">Additional values to be stored such as Description, DisplayName, etc.</param>
            <returns>String containing the full virtual path (including the file name) of the file item.</returns>
            <remarks>
            The default FileUploader control does not include the arguments parameter. If you need additional arguments
            you should create your own FileUploader control.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.StoreFile(Telerik.Web.UI.UploadedFile,System.String,System.String,System.String[])">
            <summary>
            Creates a file item from a Telerik.Web.UI.UploadedFile in the given path with the given name.
            </summary>
            <param name="file">The UploadedFile instance to store.</param>
            <param name="path">The virtual path where the file item should be created.</param>
            <param name="name">The name of the file item.</param>
            <param name="arguments">Additional values to be stored such as Description, DisplayName, etc.</param>
            <returns>String containing the full virtual path (including the file name) of the file item.</returns>
            <remarks>
            The default FileUploader control does not include the arguments parameter. If you need additional arguments
            you should create your own FileUploader control.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.DeleteFile(System.String)">
            <summary>
            Deletes the file item with the given virtual path.
            </summary>
            <param name="path">The virtual path of the file item.</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.DeleteDirectory(System.String)">
            <summary>
            Deletes the directory item with the given virtual path.
            </summary>
            <param name="path">The virtual path of the directory item.</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CreateDirectory(System.String,System.String)">
            <summary>
            Creates a directory item in the given path with the given name.
            </summary>
            <param name="path">The path where the directory item should be created.</param>
            <param name="name">The name of the new directory item.</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.MoveFile(System.String,System.String)">
            <summary>
            Moves a file from a one virtual path to a new one. This method can also be used for renaming items.
            </summary>
            <param name="path">old virtual location</param>
            <param name="newPath">new virtual location</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.MoveDirectory(System.String,System.String)">
            <summary>
            Moves a directory from a one virtual path to a new one. This method can also be used for renaming items.
            </summary>
            <param name="path">old virtual location</param>
            <param name="newPath">new virtual location</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CopyFile(System.String,System.String)">
            <summary>
            Copies a file from a one virtual path to a new one.
            </summary>
            <param name="path">old virtual location</param>
            <param name="newPath">new virtual location</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CopyDirectory(System.String,System.String)">
            <summary>
            Copies a directory from a one virtual path to a new one
            </summary>
            <param name="path">old virtual location</param>
            <param name="newPath">new virtual location</param>
            <returns>string.Empty when the operation was successful; otherwise an error message token.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.RemoveProtocolNameAndServerName(System.String)">
            <summary>
            Removes the protocol and the server names from the given url.
            </summary>
            <param name="url">Fully qualified url to a file or directory item.</param>
            <returns>The root based absolute path.</returns>
            <remarks>
            <p>
            Url: http://www.myserver.com/myapp/mydirectory/myfile
            Result: /myapp/mydirectory/myfile
            </p>
            <p>
            Url: www.myserver.com/myapp/mydirectory/myfile
            Result: /myapp/mydirectory/myfile
            </p>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CheckReadPermissions(System.String)">
            <summary>
            Checks if the current configuration allows reading from the specified folder
            </summary>
            <param name="folderPath">The virtual path that will be checked</param>
            <returns>True if reading is allowed, otherwise false</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CheckDeletePermissions(System.String)">
            <summary>
            Checks if the current configuration allows deleting from the specified folder
            </summary>
            <param name="folderPath">the virtual path that will be checked</param>
            <returns>true if deleting is allowed, otherwise false</returns>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CheckWritePermissions(System.String)">
            <summary>
            Checks if the current configuration allows writing (uploading) to the specified folder
            </summary>
            <param name="folderPath">the virtual path that will be checked</param>
            <returns>true if writing is allowed, otherwise false</returns>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.CanCreateDirectory">
            <summary>
            Gets a value indicating whether the ContentProvider can create directory items or not. The visibility of the 
            Create New Directory icon is controlled by the value of this property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.Context">
            <summary>
            The HttpContext object, set in the constructor of the class.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.SelectedUrl">
            <summary>
            Gets or sets the url of the selected item. The file browser will navigate to the item
            which has this url.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.SelectedItemTag">
            <summary>
            Gets or sets the tag of the selected item. The file browser will navigate to the item
            which has this tag. Used mainly in Database content providers, where the file items have
            special url for accessing.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.SearchPatterns">
            <summary>
            Gets the search patterns for the file items to be displayed in the FileBrowser control. This property
            is set in the constructor of the class. Supports wildcards.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.ViewPaths">
            <summary>
            Gets the paths which will be displayed in the dialog. This is passed by RadEditor and is 
            one of the values of ImagesPaths, DocumentsPaths, MediaPaths, FlashPaths, TemplatesPaths properties. 
            You can disregard this value if you have custom mechanism for determining the rights for 
            directory / file displaying.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.UploadPaths">
            <summary>
            Gets the paths which will allow uploading in the dialog. This is passed by RadEditor and is 
            one of the values of UploadImagesPaths, UploadDocumentsPaths, UploadMediaPaths, UploadFlashPaths, 
            UploadTemplatesPaths properties. You can disregard this value if you have custom mechanism for determining the rights
            for uploading.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.DeletePaths">
            <summary>
            The paths which will allow deleting in the dialog. This is passed by RadEditor and is 
            one of the values of DeleteImagesPaths, DeleteDocumentsPaths, DeleteMediaPaths, DeleteFlashPaths, 
            DeleteTemplatesPaths properties. You can disregard this value if you have custom mechanism for determining the rights
            for deleting.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileBrowserContentProvider.PathSeparator">
            <summary>
            The character, used to separate parts of the virtual path (e.g. '/' is the path separator in /path1/path2/file)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Widgets.FileItem">
            <summary>
            Represents a file item in the FileBrowser control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileItem.Serialize(System.IO.StringWriter)">
            <summary>
            Serializes the file item into a javascript array. This method should be overridden only when developing 
            a custom FileBrowser control.
            </summary>
            <param name="writer">a StringWriter used as a target for the serialization.</param>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileItem.#ctor">
            <summary>
            Creates an instance of the FileItem class without setting any initial values.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Widgets.FileItem.#ctor(System.String,System.String,System.Int64,System.String,System.String,System.String,Telerik.Web.UI.Widgets.PathPermissions)">
            <summary>
            Creates an instance of the FileItem class.
            </summary>
            <param name="name">The name of the file item. The value of this property will be displayed in the FileBrowser control.</param>
            <param name="extension">The file extension of the file item.</param>
            <param name="length">The size of the file item in bytes.</param>
            <param name="location">The virtual path to the file item (needs to be unique). When the value is string.Empty, the location is the
            parent's full path + the name of the file.</param>
            <param name="url">The url which will be inserted into the RadEditor content area.</param>
            <param name="tag">The tag of the file item. Used when the virtual path must be different than the url of the item. 
            When the value of this property is set, the FileBrowser control uses it instead of the combined virtual path.</param>
            <param name="permissions">The permissions on the file item.</param>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileItem.Extension">
            <summary>
            Gets the file extension of the file item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileItem.Length">
            <summary>
            Gets the size of the file item in bytes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileItem.Path">
            <summary>
            Gets the virtual path of the parent directory item. When the value is string.Empty, the location is got
            from the item's parent.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileItem.Location">
            <summary>
            Gets the virtual path of the parent directory item. When the value is string.Empty, the location is got
            from the item's parent.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Widgets.FileItem.Url">
            <summary>
            Gets the url which will be inserted into the RadEditor content area.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Widgets.PathPermissions">
            <summary>
            Represents the actions which will be allowed on the FileBrowserItem.
            </summary>
            <remarks>
            <p>
            If you want to specify multiple permissions, use the following syntax:
            </p>
            <pre>
            Dim permissions As PathPermissions = PathPermissions.Read Or PathPermissions.Upload Or PathPermissions.Delete
            </pre>
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.Widgets.PathPermissions.Read">
            <summary>
            The default permission. The FileBrowserItem can only be displayed.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Widgets.PathPermissions.Upload">
            <summary>
            Used for DirectoryItems. If enabled, the Upload tab of the dialog will be enabled when
            the DirectoryItem is opened.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.Widgets.PathPermissions.Delete">
            <summary>
            If enabled, the DirectoryItem or the FileItem can be deleted.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorExportSettings">
            <summary>
            Container of misc. export settings of RadEditor control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorExportSettings.FileName">
            <summary>
            A string specifying the name (without the extension) of the file that will be
            created. The file extension is automatically added based on the method that is
            used.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorExportSettings.OpenInNewWindow">
            <summary>Opens the exported editor content in a new window instead of the same page.</summary>
        </member>
        <member name="P:Telerik.Web.UI.EditorExportingArgs.ExportOutput">
            <summary>
            Contains export document which will be written to the response
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorRtfSettings">
            <summary>
            Container of misc. settings for rtf load/export
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditModes">
            <summary>
            Provides enumerated values to be used to set edit mode in RadEditor
            <para>This enumeration has a <strong>FlagsAttribute</strong> attribute that allows
            a bitwise combination of its member values.</para>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditModes.Design">
            <summary>
            Design mode. The default edit mode in RadEditor, where you could edit HTML in WYSIWYG fashion.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditModes.Html">
            <summary>
            HTML mode. Advanced edit mode where you could directly modify the HTML.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditModes.Preview">
            <summary>
            Preview mode. In this mode RadEditor will display its content the same way as it should be displayed when placed outside of the control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorStripFormattingOptions">
            <summary>
            	<para>Provides enumerated values to be used to set format cleaning options on
                paste.</para>
            	<para>This enumeration has a <strong>FlagsAttribute</strong> attribute that allows
                a bitwise combination of its member values.</para>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.None">
            <summary>Doesn't strip anything on paste, asks a question when MS Word formatting detected.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.NoneSupressCleanMessage">
            <summary>Doesn't strip anything on paste and does not ask a question.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.MSWord">
            <summary>Strips only MSWord related attributes and tags on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.MSWordNoFonts">
            <summary>Strips the MSWord related attributes and tags and font tags on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.MSWordRemoveAll">
            <summary>Strips MSWord related attributes and tags, font tags and font size attributes on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.Css">
            <summary>Removes style attributes on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.Font">
            <summary>Removes Font tags on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.Span">
            <summary>Clears Span tags on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.AllExceptNewLines">
            <summary>Clears all tags except "br" and new lines (\n) on paste.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.ConvertWordLists">
            <summary>Converts Word ordered/unordered lists to HTML tags.</summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorStripFormattingOptions.All">
            <summary>Remove all HTML formatting on paste.</summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorFilters">
            <summary>
            Provides enumerated values to be used to set the active content filters
            <para>This enumeration has a <strong>FlagsAttribute</strong> attribute that allows
            a bitwise combination of its member values.</para>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorNewLineModes">
            <summary>
            Provides enumerated values to be used to indicate what element will be inserted when the [Enter] key is pressed.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorNewLineModes.Br">
            <summary>
            Insert a BR element.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorNewLineModes.P">
            <summary>
            Insert a P (paragraph) element.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.EditorNewLineModes.Div">
            <summary>
            Insert a DIV element.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolTip">
            <summary>
            RadToolTip class
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolTipBase">
            <summary>
            RadToolTipBase class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolTipBase.Show">
            <summary>
            Causes a tooltip to open automatically when the page is loaded
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.VisibleOnPageLoad">
            <summary>
            Gets or sets a value indicating whether the tooltip will open automatically when its parent [aspx] page is loaded on the client.
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Animation">
            <summary>
            Get/Set the animation effect of the tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.AnimationDuration">
            <summary>
            Sets/gets the duration of the slide animation in milliseconds.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ManualClose">
            <summary>
            Get/Set whether the tooltip will need to be closed manually by the user using the [x] button, or will close automatically
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Sticky">
            <summary>
            Get/Set whether the tooltip will hide when the mouse moves away from the target element, or when the mouse [enters] and moves out of the tooltip itself.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.HideEvent">
            <summary>
            Get/Set the client event at which the tooltip will be hidden
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ShowEvent">
            <summary>
            Get/Set the client event at which the tooltip will be made visible for a particular target control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Width">
            <summary>
            Get/Set the Width of the tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Height">
            <summary>
            Get/Set the Height of the tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Text">
            <summary>
            Get/Set the Text that will appear in the tooltip (if it should be other than the content of the 'title' attribute of the target element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.IgnoreAltAttribute">
            <summary>
            Get/Set the indicator whether the Alt specified for the target should be ignored or not
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Title">
            <summary>
            Get/Set a title for the tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ManualCloseButtonText">
            <summary>
            Get/Set the manual close button's tooltip text
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Position">
            <summary>
            Get/Set the top/left position of the tooltip relative to the target element
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ContentScrolling">
            <summary>
            Get/Set overflow of the tooltip's content area
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.RelativeTo">
            <summary>
            Get/Set whether the tooltip should appear relative to the mouse or to the target element. Works in cooperation with the Position property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OffsetX">
            <summary>
            Get/Set the tooltip's horizontal offset from the target control. Works in cooperation with the Position property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OffsetY">
            <summary>
            Get/Set the tooltip's vertical offset from the target control. Works in cooperation with the Position property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.AutoCloseDelay">
            <summary>
            Get/Set the delay after which the tooltip will hide if the mouse stands still over  the target element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.HideDelay">
            <summary>
            Get/Set delay in milliseconds for the tooltip to hide after the mouse leaves the target element.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ShowDelay">
            <summary>
            Get/Set the time for which the user should hold the mouse over a target element for the tooltip to appear
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.MouseTrailing">
            <summary>
            Get/Set whether the tooltip will move to follow mouse movement or will stay fixed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.ShowCallout">
            <summary>
            Get/Set whether the tooltip will hide when the mouse moves away from the target element, or when the mouse [enters] and moves out of the tooltip itself.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.RenderInPageRoot">
            <summary>
            Get/Set whether the tooltip should be added as a child of the root element or as a child of its direct parent.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.EnableShadow">
            <summary>
            Gets or sets a value indicating whether the RadToolTip should have shadow.
            </summary>
            <value>
            	<strong>True</strong> if there should be shadow; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Modal">
            <summary>Gets or sets a value indicating whether a tooltip is modal or not.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.Overlay">
            <summary>Gets or sets a value indicating whether the window will create an overlay element.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OnClientBeforeShow">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the <strong>RadToolTip</strong> shows.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientBeforeShow</strong>
            		<font color="black">client-side event handler is called before the <strong>RadToolTip</strong>
                is shown.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTip object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientBeforeShow</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnToolTipShowHandler(sender, args)<br/>
                         {<br/>
                         var tooltip = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTip ID="RadToolTip1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientBeforeShow="OnToolTipShowHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTip&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OnClientShow">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            the just after the RadToolTip is shown.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShow</strong>
            		<font color="black">client-side event handler is called after the tooltip is shown
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTip object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShow</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientShowHandler(sender, args)<br/>
                         {<br/>
                         var tooltip = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTip ID="RadToolTip1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShow="OnClientShowHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTip&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OnClientBeforeHide">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            before the RadToolTip hides.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientBeforeHide</strong>
            		<font color="black">client-side event handler that is called 
            before the tooltip is hidden.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTip object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientBeforeHide</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnBeforeHideHandler(sender, args)<br/>
                         {<br/>
                         var tooltip = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTip ID="RadToolTip1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientBeforeHide="OnBeforeHideHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTip&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipBase.OnClientHide">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            just after the RadToolTip is hidden.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientHide</strong>
            		<font color="black">client-side event handler that is called 
            after the tooltip is hidden.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTip object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientHide</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnHideHandler(sender, args)<br/>
                         {<br/>
                         var tooltip = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTip ID="RadToolTip1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientHide="OnHideHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTip&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTip.TargetControlID">
            <summary>
            Get/Set the target control property of the tooltip
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTip.IsClientID">
            <summary>
            Get/Set whether the TargetControlID is server or client ID
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolTipManager">
            <summary>
            RadTooltipManager class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolTipManager.OnAjaxUpdate(Telerik.Web.UI.ToolTipUpdateEventArgs)">
            <summary>
            Allows for dynamic content to be set into the tooltip with an ajax request.
            The tooltip triggers the event when it is shown on the client.
            </summary>
            <value>
            A string specifying the name of the server-side event handler that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnAjaxUpdate</strong>
            		<font color="black">is triggered when the tooltip is shown on the client.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTip object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnAjaxUpdate</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadToolTip ID="RadToolTip1"<br/>
                         runat= "server"<br/>
            			<strong>OnAjaxUpdate="OnAjaxUpdate"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadToolTip&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items.
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadToolTipManager.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public string WebServiceMethodName(object context)
            			{
            				// We cannot use a dictionary as a parameter, because it is only supported by script services.
            				// The context object should be cast to a dictionary at runtime.
            				IDictionary&lt;string, object&gt; contextDictionary = (IDictionary&lt;string, object&gt;) context;
            				
            				//...
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.OnClientRequestStart">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadToolTipManager</strong> when a call to a WebService is initiated or AJAX request is started.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientRequestStart</strong>
            		<font color="black">client-side event handler is called when the request is started</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTipManager object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientRequestStart</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientRequestStart(sender, args)<br/>
                         {<br/>
                            var tooltipManager = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTipManager ID="RadToolTipManager1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientRequestStart="OnClientRequestStart"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTipManager&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.OnClientResponseEnd">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadToolTipManager</strong> receives the server response from a WebService or AJAX request.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientResponseEnd</strong>
            		<font color="black">client-side event handler is called before the <strong>RadToolTipManager</strong>
                displays the content returned from the server.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadToolTipManager object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientResponseEnd</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientResponseEnd(sender, args)<br/>
                         {<br/>
                            var tooltipManager = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadToolTipManager ID="RadToolTipManager1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientResponseEnd="OnClientResponseEnd"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadToolTipManager&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.OnClientResponseError">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the  Load On Demand call to the WebService or the AJAX request is interrupted by an error.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.ToolTipZoneID">
            <summary>
            Gets or sets the id (ClientID if a runat=server is used) of a html element whose children will be tooltipified        
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.AutoTooltipify">
            <summary>
            Gets or sets a value whether the RadToolTipManager, when its TargetControls collection is empty will tooltipify automatically all elements on the page that have a 'title' attribute
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.TargetControls">
            <summary>
            Gets a collection of TargetControl objects that allows for specifying the objects for which tooltips will be created on the client-side.
            </summary>
            <value>
            Gets a collection of TargetControl objects that allows for specifying the objects for which tooltips will be created on the client-side.
            </value>
            <remarks>
            Use the TargetControls collection to programmatically control which objects should be tooltipified on the client-side. 
            </remarks>        
        </member>
        <member name="P:Telerik.Web.UI.RadToolTipManager.UpdatePanel">
            <summary>
            Gets a reference to the UpdatePanel property of RadToolTipManager. The UpdatePanel allows for sending AJAX content to the client-side during the OnAjaxUpdate event.
            </summary>
            <value>
            Gets a reference to the UpdatePanel property of RadToolTipManager. The UpdatePanel allows for sending AJAX content to the client-side during the OnAjaxUpdate event.
            </value>        
        </member>
        <member name="P:Telerik.Web.UI.ToolTipUpdateEventArgs.TargetControlID">
            <summary>
            The ClientID of the target control for which the tooltip is currently being shown.		
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ToolTipUpdateEventArgs.Value">
            <summary>
            An optional parameter allowing arbitrary information to be passed from the client to the server to help determine what information to load in the tooltip in the AJAX request
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ToolTipUpdateEventArgs.UpdatePanel">
            <summary>
            Provides a reference to the UpdatePanel of RadToolTipManager. Allows content and controls to be set and displayed in the tooltip on the client
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Upload.RequestParser.UpdateStateStore(System.Byte[],System.Int32,System.Int32,System.Boolean)">
            <summary>
            
            </summary>
            <param name="chunk">The byte array, which is currently being used</param>
            <param name="fieldStartIndex">The index (distributed in the _bufferedBytes array and the chunk),
            at which the field starts</param>
            <param name="fieldBytesCount">The count of the field bytes to be added to the state store</param>
            <param name="isFinal">Indicates if this is the final part of data
            	for the field (i.e. a boundary was found)</param>
        </member>
        <member name="T:Telerik.Web.UI.RadProgressArea">
            <summary>
            RadProgressManager Control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressArea.Language">
            <summary>
            Specifies the localization of the RadProgressArea (the language which will be used).
            </summary>
            <value>The default value is <strong>en-US</strong>.</value>
            <example>
            	<code lang="CS" title="[New Example]">
            &lt;radU:RadUpload Language="es-Es" ... /&gt;
                </code>
            	<code lang="VB" title="[New Example]">
            &lt;radU:RadUpload Language="es-Es" ... /&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressArea.OnClientProgressUpdating">
            <summary>
            Specifies the client-side function to be executed when the Progress Area status is about to be updated.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to set a javascript function to execute when the
                client side progress area is about to be updated.
                <code lang="CS">
            &lt;radU:RadProgressArea OnClientProgressUpdating="myOnClientProgressUpdating" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientProgressUpdating()
            {
                alert("The progress will be updated");
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB">
            &lt;radU:RadProgressArea OnClientProgressUpdating="myOnClientProgressUpdating" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientProgressUpdating()
            {
                alert("The progress will be updated");
            }
            &lt;/script&gt;
                </code>
            </example>
            <requirements>Microsoft .NET Framework</requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressArea.OnClientProgressBarUpdating">
            <summary>
            Specifies the client-side function to be executed when a progress bar is about to be updated.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <requirements>Microsoft .NET Framework</requirements>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressArea.TagKey">
            <summary>
            Provides access to the localization strings of the control.
            </summary>
            <example>
            This example demonstrates how to change the localization strings of RadProgressArea 
            object with code.
            	<code lang="CS" title="[New Example]">
            RadProgressArea1.Localization["CancelButton"] = "Cancel";
            RadProgressArea1.Localization["ElapsedTime"] = "Elapsed time: ";
            RadProgressArea1.Localization["EstimatedTime"] = "Estimated time: ";
            RadProgressArea1.Localization["TransferSpeed"] = "Speed: ";
            RadProgressArea1.Localization["CurrentFileName"] = "Uploading file: ";
            RadProgressArea1.Localization["Uploaded"] = "Uploaded ";
            RadProgressArea1.Localization["UploadedFiles"] = "Uploaded files: ";
            RadProgressArea1.Localization["Total"] = "Total ";
            RadProgressArea1.Localization["TotalFiles"] = "Total files: ";
                </code>
            	<code lang="VB" title="[New Example]">
            RadProgressArea1.Localization("CancelButton") = "Cancel"
            RadProgressArea1.Localization("ElapsedTime") = "Elapsed time: "
            RadProgressArea1.Localization("EstimatedTime") = "Estimated time: "
            RadProgressArea1.Localization("TransferSpeed") = "Speed: "
            RadProgressArea1.Localization("CurrentFileName") = "Uploading file: "
            RadProgressArea1.Localization("Uploaded") = "Uploaded "
            RadProgressArea1.Localization("UploadedFiles") = "Uploaded files: "
            RadProgressArea1.Localization("Total") = "Total "
            RadProgressArea1.Localization("TotalFiles") = "Total files: "
                </code>
            </example>
            <value>
            Localization name/value collection.
            </value>
            <remarks>
            This property is intended to be used when there is a need to access the localization
            strings of the control from the code behind.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.Upload.ProgressData">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadProgressManager">
            <summary>
            RadProgressManager control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadProgressManager.IsRegisteredOnPage(System.Web.UI.Page)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadProgressManager.ApplyUniquePageIdentifier(System.String)">
            <summary>
            Adds RadUrid=[GUID] parameter to the supplied URL.
            </summary>
            <remarks>
            	<para>Use this method to generate proper URL for cross page postbacks 
            	which will enable RadMemoryOptimization and RadProgressArea.</para>
            </remarks>
            <example>
                This example demonstrates how to set the PostBackUrl property of a button
            	in order to enable RadMemoryOptimization and RadProgressArea. This example
            	will postback to the current page, but you could use URL of your choice.
                <code lang="VB">
            Button1.PostBackUrl = RadProgressManager1.ApplyUniquePageIdentifier(Request.Url.PathAndQuery)
            </code>
            	<code lang="CS">
            Button1.PostBackUrl = RadProgressManager1.ApplyUniquePageIdentifier(Request.Url.PathAndQuery);
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressManager.EnableMemoryOptimization">
            <summary>
            Deprecated. Memory optimization is implemented as part of the .NET Framework and is no longer a feature of RadUpload.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressManager.SuppressMissingHttpModuleError">
            <summary>
            Gets or sets a value indicating wether an error message will be displayed when the RadUploadHttpModule is not registered.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressManager.RefreshPeriod">
            <summary>
            Gets or sets the period (in milliseconds) of the progress data refresh.
            </summary>
            <value>
            The period of the progress data refresh in milliseconds. The default value is
            <strong>500</strong>.
            </value>
            <remarks>
            	<para>The refresh period might not be exactly the same as the value specified if
                the AJAX request has not been completed before the upload. The minimum value is 50
                ms.</para>
            	<para><strong>Note:</strong> If the value is very low (50ms) both the client CPU
                and server CPU load would increase because of the increased number of AJAX requests
                performed.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressManager.UniquePageIdentifier">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadProgressManager.FormId">
            <summary>
            RadProgressManager's FormId property is not used anymore. Please, remove any assignments.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ControlObjectsVisibility">
            <summary>Specifies which control objects will be visible on a RadUpload control.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.None">
            <summary>Only the file inputs will be visible.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.CheckBoxes">
            <summary>Display checkboxes for selecting a file input.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.RemoveButtons">
            <summary>Display buttons for removing a file input.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.ClearButtons">
            <summary>Display buttons for clearing a file input.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.AddButton">
            <summary>Display button for adding a file input.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.DeleteSelectedButton">
            <summary>Display button for removing the file inputs with checked checkboxes.</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.Default">
            <summary>CheckBoxes | RemoveButtons | AddButton | DeleteSelectedButton</summary>
        </member>
        <member name="F:Telerik.Web.UI.ControlObjectsVisibility.All">
            <summary>
            CheckBoxes | RemoveButtons | ClearButtons | AddButton |
            DeleteSelectedButton
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadUpload">
            <summary>
            Telerik RadUpload
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadUpload.OnValidatingFile(Telerik.Web.UI.Upload.ValidateFileEventArgs)">
            <summary>
            Fires the ValidatingFile event.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadUpload.OnFileExists(Telerik.Web.UI.Upload.UploadedFileEventArgs)">
            <summary>
            Fires the FileExists event.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadUpload.ValidatingFile">
            <summary>
                Occurs before the internal validation of every file in the <see cref="P:Telerik.Web.UI.RadUpload.UploadedFiles">UploadedFiles</see> collection.
            </summary>
            <remarks>
            	<para>To skip the internal validation of the file, set e.<strong>SkipInternalValidation</strong> = <strong>true</strong>.</para>
            </remarks>
            <example>
                This example demostrates how to implement custom validation for specific file type.
                
                <code lang="VB">
            Private Sub RadUpload1_ValidatingFile(ByVal sender As Object, ByVal e As WebControls.ValidateFileEventArgs) Handles RadUpload1.ValidatingFile
                If e.UploadedFile.GetExtension.ToLower = ".zip" Then
                    Dim maxZipFileSize As Integer = 10000000 '~10MB
                    If e.UploadedFile.ContentLength &gt; maxZipFileSize Then
                        e.IsValid = False
                    End If
                    'The zip files are not validated for file size, extension and mime type
                    e.SkipInternalValidation = True
                End If
            End Sub
                </code>
            	<code lang="CS">
            private void RadUpload1_ValidatingFile(object sender, ValidateFileEventArgs e)
            {
                if (e.UploadedFile.GetExtension().ToLower() == ".zip")
                {
                    int maxZipFileSize = 10000000; //~10MB
                    if (e.UploadedFile.ContentLength &gt; maxZipFileSize)
                    {
                        e.IsValid = false;
                    }
                    //The zip files are not validated for file size, extension and content type
                    e.SkipInternalValidation = true;
                }
            }
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">MaxFileSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">AllowedMimeTypes Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">AllowedFileExtensions Property</seealso>
        </member>
        <member name="E:Telerik.Web.UI.RadUpload.FileExists">
            <summary>
            Occurs after an unsuccessful attempt for automatic saving of a file in the 
            <see cref="P:Telerik.Web.UI.RadUpload.UploadedFiles">UploadedFiles</see> collection.
            </summary>
            <remarks>
            	<para>
                    This event should be consumed only when the automatic file saving is enabled by
                    setting the <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see> property. In this mode
                    the files are saved in the selected folder with the same name as on the client
                    computer. If a file with such name already exists in the
                    <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see> it is either overwritten or skipped
                    depending the value of the
                    <see cref="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">OverwriteExistingFiles</see> property. This
                    event is fired if
                    <see cref="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">OverwriteExistingFiles</see> is set to
                    <strong>false</strong> and a file with the same name already exists in the
                    <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see>.
                </para>
            </remarks>
            <example>
                This example demostrates how to create custom logic for renaming and saving the
                existing uploaded files. 
                <code lang="VB">
            Private Sub RadUpload1_FileExists(ByVal sender As Object, ByVal e As WebControls.UploadedFileEventArgs) Handles RadUpload1.FileExists
                Dim TheFile As Telerik.WebControls.UploadedFile = e.UploadedFile
                
                TheFile.SaveAs(Path.Combine(RadUpload1.TargetFolder, TheFile.GetNameWithoutExtension() + "1" + TheFile.GetExtension()), true)
            End Sub
                </code>
            	<code lang="CS">
            private void RadUpload1_FileExists(object sender, Telerik.WebControls.UploadedFileEventArgs e)
            {
                Telerik.WebControls.UploadedFile TheFile = e.UploadedFile;
             
                TheFile.SaveAs(Path.Combine(RadUpload1.TargetFolder, TheFile.GetNameWithoutExtension() + "1" + TheFile.GetExtension()), true);
            }
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">OverwriteExistingFiles Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetPhysicalFolder">TargetPhysicalFolder Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.InputSize">
            <summary>
            Gets or sets the size of the file input field
            </summary>
            <value>The default value is <strong>23</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.AllowedFileExtensions">
            <summary>
            Gets or sets the allowed file extensions for uploading.
            </summary>
            <remarks>
            	<para>Set this property to empty array of strings in order to prevent the file
                extension checking.</para>
            	<para>Note that the file extensions must include the dot before the actual
                extension. See the example below.</para>
            </remarks>
            <value>
            The default value is empty string array. In order to check for multiple file
            extensions you should set an array of strings containing the allowed file extensions
            for uploading.
            </value>
            <example>
                This example demonstrates how to set multiple allowed file extensions in a
                RadUpload control. 
                <code lang="VB">
            Dim allowedFileExtensions As String() = New String(2) {".zip", ".doc", ".config"}
            RadUpload1.AllowedFileExtensions = allowedFileExtensions
            </code>
            	<code lang="CS">
            string[] allowedFileExtensions = new string[3] {".zip", ".doc", ".config"};
            RadUpload1.AllowedFileExtensions = allowedFileExtensions;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">MaxFileSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedMimeTypes">AllowedMimeTypes Property</seealso>
            <seealso cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile Event</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.AllowedMimeTypes">
            <summary>
            Gets or sets the allowed MIME types for uploading.
            </summary>
            <remarks>
            	<para>Set this property to string.Empty in order to prevent the
                mime type checking.</para>
            </remarks>
            <value>
            The default value is empty string array. In order to check for multiple mime
            types you should set an array of strings containing the allowed MIME types 
            for uploading.
            </value>
            <example>
                This example demostrates how to set multiple allowed MIME types to a RadUpload
                control. 
                <code lang="VB">
            ' For example you can Get these from your web.config file
            Dim commaSeparatedMimeTypes As String = "application/octet-stream,application/msword,video/mpeg"
             
            Dim allowedMimeTypes As String() = commaSeparatedMimeTypes.Split(",")
            RadUpload1.AllowedMimeTypes = allowedMimeTypes
            </code>
            	<code lang="CS">
            // For example you can get these from your web.config file
            string commaSeparatedMimeTypes = "application/octet-stream,application/msword,video/mpeg";
             
            string[] allowedMimeTypes = commaSeparatedMimeTypes.Split(',');
            RadUpload1.AllowedMimeTypes = allowedMimeTypes;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">MaxFileSize Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedFileExtensions">AllowedFileExtensions Property</seealso>
            <seealso cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile Event</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.ControlObjectsVisibility">
            <summary>
            Gets or sets the value indicating which control objects will be displayed.
            </summary>
            <value>
            The default value is <strong>ControlObjectsVisibility.Default</strong>. You can
            set any combination of the enum values.
            </value>
            <remarks>
                ControlObjectVisibility enum members 
                <list type="table">
            		<listheader>
            			<term>Member</term>
            			<description>Description</description>
            		</listheader>
            		<item>
            			<term><strong>None</strong></term>
            			<description>Only the file inputs will be visible.</description>
            		</item>
            		<item>
            			<term><strong>CheckBoxes</strong></term>
            			<description>Display checkboxes for selecting a file input.</description>
            		</item>
            		<item>
            			<term><strong>RemoveButtons</strong></term>
            			<description>Display buttons for removing a file input.</description>
            		</item>
            		<item>
            			<term><strong>ClearButtons</strong></term>
            			<description>Display buttons for clearing a file input.</description>
            		</item>
            		<item>
            			<term><strong>AddButton</strong></term>
            			<description>Display button for adding a file input.</description>
            		</item>
            		<item>
            			<term><strong>DeleteSelectedButton</strong></term>
            			<description>Display button for removing the file inputs with checked
                        checkboxes.</description>
            		</item>
            		<item>
            			<term><strong>Default</strong></term>
            			<description>CheckBoxes | RemoveButtons | AddButton |
                        DeleteSelectedButton</description>
            		</item>
            		<item>
            			<term><strong>All</strong></term>
            			<description>CheckBoxes | RemoveButtons | ClearButtons | AddButton |
                        DeleteSelectedButton</description>
            		</item>
            	</list>
            </remarks>
            <example>
                This example demostrates how to display only the Add and Remove buttons on a
                RadUpload control. 
                <code lang="VB">
            RadUpload1.ControlObjectsVisibility = Telerik.WebControls.ControlObjectsVisibility.AddButton Or _
                                                  Telerik.WebControls.ControlObjectsVisibility.RemoveButtons
                </code>
            	<code lang="CS">
            RadUpload1.ControlObjectsVisibility = Telerik.WebControls.ControlObjectsVisibility.AddButton | 
                                                  Telerik.WebControls.ControlObjectsVisibility.RemoveButtons;
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileInputsCount">MaxFileInputsCount Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.InitialFileInputsCount">InitialFileInputsCount Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.ControlObjectsVisibility">ControlObjectsVisibility Enumeration</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.EnableFileInputSkinning">
            <summary>
            Gets or sets the value indicating whether the file input fields skinning will be enabled.
            </summary>
            <value>
            	<strong>true</strong> when the file input skinning is enabled; otherwise <strong>false</strong>.
            </value>
            <remarks>
            The &lt;input type=file&gt; DHTML elements are not skinnable by default. If the
            EnableFileInputSkinning is true some browsers can have strange behaviour.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.InitialFileInputsCount">
            <summary>
            Gets or sets the initial count of file input fields, which will appear in RadUpload.
            </summary>
            <value>
            The file inputs count which will be available at startup. The default value is
            <strong>1.</strong>
            </value>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileInputsCount">MaxFileInputsCount Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.ControlObjectsVisibility">ControlObjectsVisibility Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.InvalidFiles">
            <summary>
            Provides access to the invalid files uploaded by the <strong>RadUpload</strong>
            instance. This is populated only if a validation was set.
            </summary>
            <value>
            If the internal validation is enabled this collection contains the invalid
            uploaded files for the particular instance of <strong>RadUpload</strong>
            control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.Language">
            <summary>
            Gets or sets the localization language of the RadUpload user interface.
            </summary>
            <value>
            A string containing the localization language of the RadUpload user inteface. The
            default value is <strong>en-US</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.MaxFileInputsCount">
            <summary>
            Gets or sets the maximum file input fields that can be added to the control.
            </summary>
            <value>The default value is <strong>0</strong> (unlimited).</value>
            <remarks>
            Using this property you can limit the maximum number of file inputs which can be
            added to a RadUpload instance.
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadUpload.InitialFileInputsCount">InitialFileInputsCount Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.ControlObjectsVisibility">ControlObjectsVisibility Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.MaxFileSize">
            <summary>Gets or sets the maximum file size allowed for uploading in bytes.</summary>
            <value>The default value is <strong>0</strong> (unlimited).</value>
            <remarks>Set this property to 0 in order to prevent the file size checking.</remarks>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedMimeTypes">AllowedMimeTypes Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedFileExtensions">AllowedFileExtensions Property</seealso>
            <seealso cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile Event</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientAdding">
            <summary>
            Gets or sets the name of the client-side function which will be executed before 
            a new fileinput is added to a RadUpload instance.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to create a javascript function which is called every
                time when the used adds a new file input to the RadUpload instance. 
                <code lang="CS" title="[New Example]">
            &lt;radU:RadUpload OnClientAdding="myOnClientAdding" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientAdding()
            {
                alert("You just added a new file input.");
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB" title="[New Example]">
            &lt;radU:RadUpload OnClientAdding="myOnClientAdding" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientAdding()
            {
                alert("You just added a new file input.");
            }
            &lt;/script&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientAdded">
            <summary>
            Gets or sets the name of the client-side function which will be executed after 
            a new fileinput is added to a RadUpload instance.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to create a javascript function which is called every
                time when the used adds a new file input to the RadUpload instance. 
                <code lang="CS" title="[New Example]">
            &lt;radU:RadUpload OnClientAdded="myOnClientAdded" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientAdded()
            {
                alert("You just added a new file input.");
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB" title="[New Example]">
            &lt;radU:RadUpload OnClientAdded="myOnClientAdded" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientAdded()
            {
                alert("You just added a new file input.");
            }
            &lt;/script&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientDeleting">
            <summary>
            Gets or sets the name of the client-side function which will be executed before a file input is deleted
            from a RadUpload instance.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to implement a confirmation dialog when removing a
                file input item. 
                <code lang="CS">
            &lt;radU:RadUpload OnClientDeleting="myOnClientDeleting" ... /&gt;
            &lt;script language="javascript"&gt;
            function myOnClientDeleting()
            {
                return prompt("Are you sure?");
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB">
            &lt;radU:RadUpload OnClientDeleting="myOnClientDeleting" ... /&gt;
            &lt;script language="javascript"&gt;
            function myOnClientDeleting()
            {
                Return prompt("Are you sure?");
            }
            &lt;/script&gt;
                </code>
            </example>
            <remarks>
            If you want to cancel the deleting of the file input return
            <strong>false</strong> in the javascript handler.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientClearing">
            <summary>
            Gets or sets the name of the client-side function which will be executed before a fileinput field is
            cleared in a RadUpload instance using the Clear button.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to create a client side confirmation dialog when
                clearing a file input item of a RadUpload instance. 
                <code lang="CS">
            &lt;radU:RadUpload OnClientClearing="myOnClientClearing" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientClearing()
            {
                return confirm("Are you sure you want to clear this input?");
            }
            &lt;/script&gt;
                </code>
            	<code lang="VB">
            &lt;radU:RadUpload OnClientClearing="myOnClientClearing" ... /&gt;
            ...
            &lt;script&gt;
            function myOnClientClearing()
            {
                Return confirm("Are you sure you want to clear this input?");
            }
            &lt;/script&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientFileSelected">
            <summary>
            Gets or sets the name of the client-side function which will be executed when a file input value changed.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OnClientDeletingSelected">
            <summary>
            Gets or sets the name of the client-side function which will be executed before the selected file inputs are removed.
            </summary>
            <value>The default value is <strong>string.Empty</strong>.</value>
            <example>
                This example demonstrates how to create a client side confirmation dialog when
                removing the selected file input items from a RadUpload control. 
                <code lang="VB">
            &lt;radU:RadUpload OnClientDeletingSelected="myOnClientDeletingSelected" ... /&gt;
             
            &lt;script&gt;
            function myOnClientDeletingSelected()
            {
                var mustCancel = confirm("Are you sure?");
                return mustCancel;
            }
            &lt;/script&gt;
                </code>
            	<code lang="CS">
            &lt;radU:RadUpload OnClientDeletingSelected="myOnClientDeletingSelected" ... /&gt;
             
            &lt;script&gt;
            function myOnClientDeletingSelected()
            {
                var mustCancel = confirm("Are you sure?");
                return mustCancel;
            }
            &lt;/script&gt;
                </code>
            </example>
            <remarks>
            You can cancel the removing of the file input items by returning
            <strong>false</strong> in the javascript function.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">
            <summary>
            Gets or sets the value indicating whether RadUpload should overwrite existing files having same name in the <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see>.
            </summary>
            <value>
            	<strong>true</strong> when the existing files should be overwritten; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
            <remarks>
            When set to <strong>true</strong>, the existing files are overwritten, else no
            action is taken.
            </remarks>
            <seealso cref="E:Telerik.Web.UI.RadUpload.FileExists">FileExists Event</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetPhysicalFolder">TargetPhysicalFolder Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.ReadOnlyFileInputs">
            <summary>
            Gets or sets a value indicating if the file input fields should be read-only
            (e.g. no typing allowed).
            </summary>
            <value>
            	<strong>true</strong> when the file input fields should be read-only; otherwise
            <strong>false</strong>.
            </value>
            <remarks>
            When users type into the box and the filename is not valid, the form submission
            in Internet Explorer could not proceed or even display a javascript error. This
            behavior can be avoided by setting the ReadOnlyFileInputs property to true.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.TargetFolder">
            <summary>
            Gets or sets the virtual path of the folder, where RadUpload will automatically save the valid files after the upload completes.
            </summary>
            <value>
            A string containing the virtual path of the folder where RadUpload will automatically save the valid files
            after the upload completes. The default value is <strong>string.Empty</strong>.
            </value>
            <remarks>
            	<para>When set to <strong>string.Empty</strong>, the files must be saved manually to the desired location.</para>
            	<para>If both <see cref="P:Telerik.Web.UI.RadUpload.TargetPhysicalFolder">TargetPhysicalFolder</see> property and this property are set, the 
            	TargetPhysicalFolder will override the virtual path provided by TargetFolder.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">OverwriteExistingFiles Property</seealso>
            <seealso cref="E:Telerik.Web.UI.RadUpload.FileExists">FileExists Event</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetPhysicalFolder">TargetPhysicalFolder Property</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.TargetPhysicalFolder">
            <summary>
            Gets or sets the physical path of the folder, where RadUpload will automatically save the valid files after the upload completes.
            </summary>
            <value>
            A string containing the physical path of the folder where RadUpload will automatically save the valid files
            after the upload completes. The default value is <strong>string.Empty</strong>.
            </value>
            <remarks>
            	<para>When set to <strong>string.Empty</strong>, the files must be saved manually to the desired location.</para>
            	<para>If both <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see> property and this property are set, the 
            	TargetPhysicalFolder will override the virtual path provided by <see cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder</see>.</para>
            </remarks>
            <seealso cref="P:Telerik.Web.UI.RadUpload.TargetFolder">TargetFolder Property</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.OverwriteExistingFiles">OverwriteExistingFiles Property</seealso>
            <seealso cref="E:Telerik.Web.UI.RadUpload.FileExists">FileExists Event</seealso>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.UploadedFiles">
            <summary>
            Provides access to the valid files uploaded by the <strong>RadUpload</strong>
            instance.
            </summary>
            <value>
            	<strong>UploadedFileCollection</strong> containing all valid files uploaded using
            a <strong>RadUpload</strong> control.
            </value>
            <remarks>
            The collection contains only the files uploaded with the particular instance of
            the RadUpload control. If the RadUploadHttpModule is used, the
            uploaded files are removed from the <strong>Request.Files</strong> collection in order
            to conserve the server's memory. Else the Request.Files contains all uploaded files as
            a HttpPostedFile collection and each <strong>RadUpload</strong> instance has its own
            uploaded files as <strong>UploadedFileCollection</strong>.
            </remarks>
            <example>
                This example demonstrates how to save the valid uploaded files with a
                RadUpload control. 
                <code lang="VB">
            For Each file As Telerik.WebControls.UploadedFile In RadUpload1.UploadedFiles
                file.SaveAs(Path.Combine("c:\my files\", file.GetName()), True)
            Next
                </code>
            	<code lang="CS">
            foreach (Telerik.WebControls.UploadedFile file in RadUpload1.UploadedFiles)
            {
                file.SaveAs(Path.Combine(@"c:\my files\", file.GetName()), true);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.FocusOnLoad">
            <summary>Gets or sets the value indicating whether the first file input field of RadUpload should get
            the focus on itself on load.</summary>
            <value>
            	<strong>true</strong> when the first file input field of RadUpload should get
            the focus; otherwise <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadUpload.IsUploadModuleRegistered">
            <summary>
            Gets a value indicating whether the RadUpload HttpModule is registered in the current web.application
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.UploadedFileCollection">
            <summary>Provides access to and organizes files uploaded by a client.</summary>
            <remarks>
            Clients encode files and transmit them in the content body using multipart MIME
            format with an HTTP <b>Content-Type</b> header of <b>multipart/form-data</b>. RadUpload
            extracts the encoded file(s) from the content body into individual members of an
            <b>UploadedFileCollection</b>. Methods and properties of the
            <strong>UploadedFile</strong> class provide access to the contents and properties of
            each file.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.UploadedFileCollection.Item(System.Int32)">
            <summary>
            	<para>Gets an individual <strong>UploadedFile</strong> object from the file
                collection.</para>
            	<para>In C#, this property is the indexer for the
                <strong>UploadedFileCollection</strong> class.</para>
            </summary>
            <value>The <strong>UploadedFile</strong> specified by <i>index.</i></value>
            <example>
                The following example retrieves the first file object (index = 0) from the
                collection sent by the client and retrieves the name of the actual file represented
                by the object. 
                <code lang="VB">
            Dim MyUploadedFile As UploadedFile = RadUpload1.UploadedFiles(0)
            Dim MyFileName As String = UploadedFile.FileName
                </code>
            	<code lang="CS">
            HttpPostedFile MyUploadedFile = RadUpload1.UploadedFiles[0];
            String MyFileName = MyUploadedFile.FileName;
                </code>
            </example>
            <seealso cref="T:Telerik.Web.UI.UploadedFile">UploadedFile Class</seealso>
            <param name="index">The index of the item to get from the file collection.</param>
        </member>
        <member name="T:Telerik.Web.UI.Dialogs.UserControlResources">
            <summary>
            This class loads the dialog resources - localization, skins, base scripts, etc.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Dialogs.UserControlResources.Language">
            <summary>
            Gets or sets a string containing the localization language for the RadEditor UI
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadWindow">
            <summary>
            Telerik RadWindow
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadWindowBase.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous request that was saved with the System.Web.UI.WebControls.WebControl.SaveViewState() method.
            </summary>
            <param name="state">An object that represents the control state to restore.</param>     
        </member>
        <member name="M:Telerik.Web.UI.RadWindowBase.SaveViewState">
            <summary>
            Saves any state that was modified after the System.Web.UI.WebControls.Style.TrackViewState() method was invoked.
            </summary>
            <returns>An object that contains the current view state of the control; otherwise, if there is no view state associated with the control, null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadWindowBase.TrackViewState">
            <summary>
            Causes the control to track changes to its view state so they can be stored in the object's System.Web.UI.Control.ViewState property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.ClientCallBackFunction">
            <summary>
            Gets or sets the client callback function that will be called when a window
            dialog is being closed.
            This property is obsolete. Please use OnclientClose instead. For more information
            visit http://www.telerik.com/help/aspnet-ajax/window-programming-using-radwindow-as-dialog.html 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OffsetElementID">
            <summary>
            Gets or sets the id (ClientID if a runat=server is used) of a html element, whose
            left and top position will be used as 0,0 of the RadWindow object when it is first
            shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MinimizeZoneID">
            <summary>
            Gets or sets the id (ClientID if a runat=server is used) of a html element where
            the windows will be "docked" when minimized.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.IconUrl">
            <summary>
            Gets or sets the url of the icon in the upper left corner of the
            RadWindow titlebar.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MinimizeIconUrl">
            <summary>
            Gets or sets the url of the minimized icon of the
            RadWindow.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.EnableShadow">
            <summary>
            Gets or sets a value indicating whether the RadWindow should have shadow.
            </summary>
            <value>
            	<strong>True</strong> if there should be shadow; otherwise
            <strong>false</strong>. The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Localization">
            <summary>
            Gets or sets the localization strings for the RadWindow
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Shortcuts">
            <summary>
            	Gets the collection of shortcuts which are specified for the current RadWindow/RadWindowManager
            </summary>
            <value>
                By default
            	the collection is empty.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Behaviors">
            <summary>
            Gets or sets a value indicating the behavior of this object - if can be resized, has expand/collapse commands, closed command, etc.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.AutoSizeBehaviors">
            <summary>
            Get/Set the autosize behavior of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.InitialBehaviors">
            <summary>
            Gets or sets a value indicating the initial behavior of this object - most useful to specify an initially minimized, maximized or pinned window.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.ShowOnTopWhenMaximized">
            <summary>
            Gets or sets a value indicating whether the maximized window should have the biggest z-index
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Animation">
            <summary>
            Get/Set the animation effect of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.AnimationDuration">
            <summary>
            Sets/gets the duration of the slide animation in milliseconds.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Width">
            <summary>
            Get/Set the Width of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MinWidth">
            <summary>
            Get/Set the minimum Width of the window
            </summary>
            
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MaxWidth">
            <summary>
            Get/Set the maximum Width of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Height">
            <summary>
            Get/Set the Height of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MinHeight">
            <summary>
            Get/Set the minimum Height of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.MaxHeight">
            <summary>
            Get/Set the maximum Height of the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Title">
            <summary>
            Get/Set a title for the window
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Left">
            <summary>
            Gets or sets the horizontal distance from the browser origin, or from the top left corner of the OffsetElement
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Top">
            <summary>
            Gets or sets the vertical distance from the browser origin, or from the top left corner of the OffsetElement
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.RestrictionZoneID">
            <summary>
            Gets or sets the id (ClientID if a runat=server is used) of a html element in which
            the windows will be able to move.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.DestroyOnClose">
            <summary>
            Gets or sets a value indicating whether the window will be disposed and made inaccessible once it is closed.
            If property is set to true, the next time a window with this ID is requested, a new window with default settings is created and returned.
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.ReloadOnShow">
            <summary>
            Gets or sets a value indicating whether the page that is loaded in the window should be loaded everytime from the server or 
            will leave the browser default behaviour.
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.ShowContentDuringLoad">
            <summary>
            Gets or sets a value indicating whether the page that is loaded
            in the window should be shown during the loading process, or when it has finished loading.
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.VisibleOnPageLoad">
            <summary>
            Gets or sets a value indicating whether the window will open automatically when its parent [aspx] page is loaded on the client.
            </summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.VisibleTitlebar">
            <summary>Gets or sets a value indicating whether the window has a titlebar visible.</summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.VisibleStatusbar">
            <summary>
            Gets or sets a value indicating whether the window has a visible status bar or
            not.
            </summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Modal">
            <summary>Gets or sets a value indicating whether a dialog is modal or not.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Overlay">
            <summary>Gets or sets a value indicating whether the window will create an overlay element.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.EnableAriaSupport">
            <summary>
            When set to true enables support for WAI-ARIA
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.Opacity">
            <summary>Gets or sets a value indicating what should be the opacity of the RadWindow. The value must be between 0 (transparent) and 100 (opaque).</summary>
            <value>The default value is <strong>100</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.KeepInScreenBounds">
            <summary>Gets or sets a value indicating whether the window will stay in the visible viewport of the browser window.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.AutoSize">
            <summary>Gets or sets a value indicating whether the window will automatically resize itself acciording to its content page or not.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientCommand">
            <summary>
            Gets or sets the client-side script that executes when a RadWindow command (Restore, Minimize, Maximize, Pin On, Pin Off, Reload is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientResizeStart">
            <summary>
            Gets or sets the client-side script that executes when a RadWindow ResizeStart event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientResizeEnd">
            <summary>
            Gets or sets the client-side script that executes when a RadWindow Resize event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientDragStart">
            <summary>
            Gets or sets the client-side script that executes when a RadWindow DragStart event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientDragEnd">
            <summary>
            Gets or sets the client-side script that executes when a RadWindow DragEnd event is raised
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientAutoSizeEnd">
            <summary>
            Gets or sets the client-side script that executes when RadWindow AutoSize has finished
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientActivate">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadWindow</strong> control becomes the active visible window.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientActivate</strong>
            		<font color="black">client-side event handler is called when the <strong>RadWindow</strong>
                control becomes the active visible window </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientActivate</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnWindowActivateHandler(sender, args)<br/>
                         {<br/>
                         var window = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientActivate="OnWindowActivateHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientBeforeShow">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            just before the RadWindow is shown.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientBeforeShow</strong>
            		<font color="black">client-side event handler that is called 
            just before the window is shown.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientBeforeShow</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientBeforeShowHandler(sender, args)<br/>
                         {<br/>
                         var oWindow = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientBeforeShow="OnClientBeforeShowHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientShow">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called before
            the sliding is started.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientShow</strong>
            		<font color="black">client-side event handler is called after the window is shown
            </font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientShow</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientShowHandler(sender, args)<br/>
                         {<br/>
                         var window = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientShow="OnClientShowHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientPageLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when the page inside the RadWindow object completes loading.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientPageLoad</strong>
            		<font color="black">client-side event handler that is called 
            when the page inside the RadWindow object completes loading.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>        
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientPageLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnPageLoadHandler(sender, args)<br/>
                         {<br/>
                         var window = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientPageLoad="OnPageLoadHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientClose">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when slide has ended.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientClose</strong>
            		<font color="black">client-side event handler that is called 
            after the window is hidden.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientClose</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnCloseHandler(sender, args)<br/>
                         {<br/>
                         var window = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientClose="OnCloseHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowBase.OnClientBeforeClose">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when the RadWindow is closing.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientClosing</strong>
            		<font color="black">client-side event handler that is called 
            just before the window is hidden.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadWindow object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientClosing</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClosingHandler(sender, args)<br/>
                         {<br/>
                         var window = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;radsld:RadWindow ID="RadWindow1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientClosing="OnClosingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/radsld:RadWindow&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadWindow.OpenerElementID">
            <summary>
            Get/Set the control which will open the RadWindow
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindow.NavigateUrl">
            <summary>
            Specifies the URL that will originally be loaded in the
            RadWindow (can be changed on the client).
            </summary>
            <value>The default is an empty string - "".</value>
        </member>
        <member name="P:Telerik.Web.UI.RadWindow.ContentContainer">
            <summary>
            Gets the control, where the ContentTemplate will be instantiated in.
            </summary>
            <remarks>
            You can use this property to programmatically add controls to the content area. If you add controls
            to the ContentContainer the NavigateUrl property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWindow.ContentTemplate">
            <summary>
            Gets or sets the System.Web.UI.ITemplate that contains the controls which will be 
            placed in the control content area.
            </summary>
            <remarks>
            You cannot set this property twice, or when you added controls to the ContentContainer. If you set
            ContentTemplate the NavigateUrl property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowManager.Windows">
            <summary>
            Gets a collection of RadWindow objects 
            </summary>
            <value>
            Gets a collection of RadWindow objects 
            </value>        
        </member>
        <member name="P:Telerik.Web.UI.RadWindowManager.PreserveClientState">
            <summary>
            Gets or sets a value indicating whether window objects' state (size, location, behavior) will be
            persisted in a client cookie to restore state over page postbacks.		
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowManager.AlertTemplate">
            <summary>
            This property allows to specify the HTML for the alert popup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowManager.ConfirmTemplate">
            <summary>
            This property allows to specify the HTML for the confirm popup
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadWindowManager.PromptTemplate">
            <summary>
            This property allows to specify the HTML for the prompt popup
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.WindowAutoSizeBehaviors">
            <summary>
            Specifies the automatic resize behavior of a RadWindow.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.WindowBehaviors">
            <summary>
            Specifies the behaviors of the radWindow object
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.None">
            <summary>
            No behavior is specified.
            </summary>
            <value>0</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Resize">
            <summary>
            The object can be resized.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Minimize">
            <summary>
            The object can be minimized.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Close">
            <summary>
            The object can be closed.
            </summary>
            <value>4</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Pin">
            <summary>
            The objct can be pinned.
            </summary>
            <value>8</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Maximize">
            <summary>
            The object can be maximized.
            </summary>
            <value>16</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Move">
            <summary>
            The object can be moved.
            </summary>
            <value>32</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Reload">
            <summary>
            The object will have a reload button.
            </summary>
            <value>64</value>
        </member>
        <member name="F:Telerik.Web.UI.WindowBehaviors.Default">
            <summary>
            Default object behavior: all together.
            </summary>
            <value>(Minimize | Maximize | Close | Pin | Resize | Move | Reload)</value>
        </member>
        <member name="T:Telerik.Web.Apoc.ApocDriver">
            <summary>
                ApocDriver provides the client with a single interface to invoking Apoc XSL-FO.
            </summary>
            <remarks>
                The examples belows demonstrate several ways of invoking Apoc XSL-FO.  The 
                methodology is the same regardless of how Apoc is embedded in your 
                system (ASP.NET, WinForm, Web Service, etc).
            </remarks>
            <example>
            <code lang="csharp">
            // This example demonstrates rendering an XSL-FO file to a PDF file.
            ApocDriver driver = ApocDriver.Make();
            driver.Render(
                new FileStream("readme.fo", FileMode.Open), 
                new FileStream("readme.pdf", FileMode.Create));
            </code>
            <code lang="vb">
            // This example demonstrates rendering an XSL-FO file to a PDF file.
            Dim driver As ApocDriver = ApocDriver.Make
            driver.Render( _
                New FileStream("readme.fo", FileMode.Open), _
                New FileStream("readme.pdf", FileMode.Create))
            </code>
            <code lang="csharp">
            // This example demonstrates rendering the result of an XSLT transformation 
            // into a PDF file.
            ApocDriver driver = ApocDriver.Make();
            driver.Render(
                XslTransformer.Transform("readme.xml", "readme.xsl"),
                new FileStream("readme.pdf", FileMode.Create));
            </code>
            <code lang="vb">
            // This example demonstrates rendering the result of an XSLT transformation 
            // into a PDF file.
            Dim driver As ApocDriver = ApocDriver.Make
            driver.Render( _
                XslTransformer.Transform("readme.xml", "readme.xsl"), _
                New FileStream("readme.pdf", FileMode.Create))
            </code>
            <code lang="csharp">
            // This example demonstrates using an XmlDocument as the source of the 
            // XSL-FO tree.  The XmlDocument could easily be dynamically generated.
            XmlDocument doc = new XmlDocument()
            doc.Load("reader.fo");
                
            ApocDriver driver = ApocDriver.Make();
            driver.Render(doc, new FileStream("readme.pdf", FileMode.Create));
            </code>
            <code lang="vb">
            // This example demonstrates using an XmlDocument as the source of the 
            // XSL-FO tree.  The XmlDocument could easily be dynamically generated.
            Dim doc As XmlDocument = New XmlDocument()
            doc.Load("reader.fo")
                
            Dim driver As ApocDriver = ApocDriver.Make
            driver.Render(doc, New FileStream("readme.pdf", FileMode.Create))
            </code>
            </example>
        </member>
        <member name="T:Telerik.Web.Apoc.IDriver">
            <summary>
                This interface is implemented by the ApocDriver class to permit usage 
                from COM applications.  This is the recommended method of supporting 
                invocation from COM application as it permits interface versioning.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.renderEngine">
            <summary>
                Controls the output format of the renderer.
            </summary>
            <remarks>
                Defaults to PDF.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.closeOnExit">
            <summary>
                Determines if the output stream passed to <see cref="M:Telerik.Web.Apoc.ApocDriver.Render(System.String,System.IO.Stream)"/> 
                should be closed upon completion or if a fatal exception occurs.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.renderOptions">
            <summary>
                Options to supply to the renderer.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.credentials">
            <summary>
                Maps a set of credentials to an internet resource
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.rm">
            <summary>
                The ResourceManager embedded in the core dll.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.activeDriver">
            <summary>
                The active driver.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.productKey">
            <summary>
                Permits the product key to be specified using code, rather than
                the flakey licenses.licx method.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Make">
            <summary>
                Constructs a new ApocDriver and registers the newly created 
                driver as the active driver.
            </summary>
            <returns>An instance of ApocDriver</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.#ctor">
            <summary>
                Sets the the 'baseDir' property in the Configuration class using 
                the value returned by Directory.GetCurrentDirectory().
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.ApocDriver.imageHandler">
            <summary>
                An optional image handler that can be registered to load image
                data for external graphic formatting objects.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.Xml.XmlDocument,System.IO.Stream)">
            <summary>
                Executes the conversion reading the source tree from the supplied 
                XmlDocument, converting it to a format dictated by the renderer 
                and writing it to the supplied output stream.
            </summary>
            <param name="doc">
                An in-memory representation of an XML document (DOM).
            </param>
            <param name="outputStream">
                Any subclass of the Stream class.
            </param>
            <remarks>
                Any exceptions that occur during the render process are arranged 
                into three categories: information, warning and error.  You may 
                intercept any or all of theses exceptional states by registering 
                an event listener.  See <see cref="E:Telerik.Web.Apoc.ApocDriver.OnError"/> for an 
                example of registering an event listener.  If there are no 
                registered listeners, the exceptions are dumped to standard out - 
                except for the error event which is wrapped in a 
                <see cref="T:System.SystemException"/>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.IO.TextReader,System.IO.Stream)">
            <summary>
                Executes the conversion reading the source tree from the input 
                reader, converting it to a format dictated by the renderer and 
                writing it to the supplied output stream.
            </summary>
            <param name="inputReader">A character orientated stream</param>
            <param name="outputStream">Any subclass of the Stream class</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.String,System.String)">
            <summary>
                Executes the conversion reading the source tree from the file 
                <i>inputFile</i>, converting it to a format dictated by the 
                renderer and writing it to the file identified by <i>outputFile</i>.
            </summary>
            <remarks>
                If the file <i>outputFile</i> does not exist, it will created 
                otherwise it will be overwritten.  Creating a file may 
                generate a variety of exceptions.  See <see cref="T:System.IO.FileStream"/>
                for a complete list.<br/>
            </remarks>
            <param name="inputFile">Path to an XSL-FO file</param>
            <param name="outputFile">Path to a file</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.String,System.IO.Stream)">
            <summary>
                Executes the conversion reading the source tree from the file 
                <i>inputFile</i>, converting it to a format dictated by the 
                renderer and writing it to the supplied output stream.
            </summary>
            <param name="inputFile">Path to an XSL-FO file</param>
            <param name="outputStream">
                Any subclass of the Stream class, e.g. FileStream
            </param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.IO.Stream,System.IO.Stream)">
            <summary>
                Executes the conversion reading the source tree from the input 
                stream, converting it to a format dictated by the render and 
                writing it to the supplied output stream.
            </summary>
            <param name="inputStream">Any subclass of the Stream class, e.g. FileStream</param>
            <param name="outputStream">Any subclass of the Stream class, e.g. FileStream</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.Render(System.Xml.XmlReader,System.IO.Stream)">
            <summary>
                Executes the conversion reading the source tree from the input 
                reader, converting it to a format dictated by the render and 
                writing it to the supplied output stream.
            </summary>
            <remarks>
                The evaluation copy of this class will output an evaluation
                banner to standard out
            </remarks>
            <param name="inputReader">
                Reader that provides fast, non-cached, forward-only access 
                to XML data
            </param>
            <param name="outputStream">
                Any subclass of the Stream class, e.g. FileStream
            </param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.GetString(System.String)">
            <summary>
                Retrieves the string resource with the specific key using the 
                default culture
            </summary>
            <param name="key">A resource key</param>
            <returns>
                The resource string identified by <code>key</code> from the 
                current culture's setting
            </returns>
            <exception cref="T:System.ArgumentNullException">
                The <i>key</i> parameter is a null reference</exception>
            <exception cref="T:System.InvalidOperationException">
                The value of the specified resource is not a string</exception>
            <exception cref="T:System.Resources.MissingManifestResourceException">
                No usable set of resources has been found, and there are no 
                neutral culture resources
            </exception>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.FireApocError(System.String)">
            <summary>
                Sends an 'error' event to all registered listeners.
            </summary>
            <remarks>
                If there are no listeners, a <see cref="T:System.SystemException"/> is 
                thrown immediately halting execution
            </remarks>
            <param name="message">Any error message, which may be null</param>
            <exception cref="T:System.SystemException">
                If no listener is registered for this event, a SystemException
                will be thrown
            </exception>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.FireApocWarning(System.String)">
            <summary>
                Sends a 'warning' event to all registered listeners
            </summary>
            <remarks>
                If there are no listeners, <i>message</i> is written out 
                to the console instead
            </remarks>
            <param name="message">Any warning message, which may be null</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.FireApocInfo(System.String)">
            <summary>
                Sends an 'info' event to all registered lisetners
            </summary>
            <remarks>
                If there are no listeners, <i>message</i> is written out 
                to the console instead
            </remarks>
            <param name="message">An info message, which may be null</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.CreateXmlTextReader(System.String)">
            <summary>
                Utility method that creates an <see cref="T:System.Xml.XmlTextReader"/>
                for the supplied file
            </summary>
            <remarks>
                The returned <see cref="T:System.Xml.XmlReader"/> interprets all whitespace
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.CreateXmlTextReader(System.IO.Stream)">
            <summary>
                Utility method that creates an <see cref="T:System.Xml.XmlTextReader"/>
                for the supplied file
            </summary>
            <remarks>
                The returned <see cref="T:System.Xml.XmlReader"/> interprets all whitespace
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocDriver.CreateXmlTextReader(System.IO.TextReader)">
            <summary>
                Utility method that creates an <see cref="T:System.Xml.XmlTextReader"/>
                for the supplied file
            </summary>
            <remarks>
                The returned <see cref="T:System.Xml.XmlReader"/> interprets all whitespace
            </remarks>
        </member>
        <member name="E:Telerik.Web.Apoc.ApocDriver.OnError">
            <summary>
                A multicast delegate.  The error event Apoc publishes.
            </summary>
            <remarks>
                The method signature for this event handler should match 
                the following:
                <pre class="code"><span class="lang">
                void ApocError(object driver, ApocEventArgs e);
                </span></pre>
                The first parameter <i>driver</i> will be a reference to the 
                active ApocDriver instance.
            </remarks>
            <example>Subscribing to the 'error' event
                <pre class="code"><span class="lang">[C#]</span><br/>
                {
                ApocDriver driver = ApocDriver.Make();
                driver.OnError += new ApocDriver.ApocEventHandler(ApocError);
                ...
                }
                </pre>
            </example>
        </member>
        <member name="E:Telerik.Web.Apoc.ApocDriver.OnWarning">
            <summary>
                A multicast delegate.  The warning event Apoc publishes.
            </summary>
            <remarks>
                The method signature for this event handler should match 
                the following:
                <pre class="code"><span class="lang">
                void ApocWarning(object driver, ApocEventArgs e);
                </span></pre>
                The first parameter <i>driver</i> will be a reference to the 
                active ApocDriver instance.
            </remarks>
        </member>
        <member name="E:Telerik.Web.Apoc.ApocDriver.OnInfo">
            <summary>
                A multicast delegate.  The info event Apoc publishes.
            </summary>
            <remarks>
                The method signature for this event handler should match 
                the following:
                <pre class="code"><span class="lang">
                void ApocInfo(object driver, ApocEventArgs e);
                </span></pre>
                The first parameter <i>driver</i> will be a reference to the 
                active ApocDriver instance.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.CloseOnExit">
            <summary>
                Determines if the output stream should be automatically closed 
                upon completion of the render process.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.ActiveDriver">
            <summary>
                Gets or sets the active <see cref="T:Telerik.Web.Apoc.ApocDriver"/>.
            </summary>
            <value>
                An instance of <see cref="T:Telerik.Web.Apoc.ApocDriver"/> created via the factory method 
                <see cref="M:Telerik.Web.Apoc.ApocDriver.Make"/>.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.Renderer">
            <summary>
                Determines which rendering engine to use.
            </summary>
            <value>
                A value from the <see cref="T:Telerik.Web.Apoc.Render.RendererEngine"/> enumeration.
            </value>
            <remarks>
                The default value is 
                <see cref="F:Telerik.Web.Apoc.Render.RendererEngine.PDF"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.BaseDirectory">
            <summary>
                Gets or sets the base directory used to locate external 
                resourcs such as images.
            </summary>
            <value>
                Defaults to the current working directory.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.ImageHandler">
            <summary>
                Gets or sets the handler that is responsible for loading the image
                data for external graphics.
            </summary>
            <remarks>
                If null is returned from the image handler, then Apoc will perform 
                normal processing.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.Timeout">
            <summary>
                Gets or sets the time in milliseconds until an HTTP image request 
                times out.
            </summary>
            <remarks>
                The default value is 100000 milliseconds.
            </remarks>
            <value>
                The timeout value in milliseconds
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.Credentials">
            <summary>
                Gets a reference to a <see cref="T:System.Net.CredentialCache"/> object 
                that manages credentials for multiple Internet resources.
                <seealso cref="T:System.Net.CredentialCache"/>
            </summary>
            <remarks>
                The purpose of this property is to associate a set of credentials against 
                an Internet resource.  These credentials are then used by Apoc when 
                fetching images from one of the listed resources.
            </remarks>
            <example>
                ApocDriver driver = ApocDriver.Make();
                
                NetworkCredential nc1 = new NetworkCredential("foo", "password");
                driver.Credentials.Add(new Uri("http://www.chive.com"), "Basic", nc1);
                
                NetworkCredential nc2 = new NetworkCredential("john", "password", "UK");
                driver.Credentials.Add(new Uri("http://www.xyz.com"), "Digest", nc2);
            </example>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.ProductKey">
            <summary>
                Write only property that can be used to bypass licenses.licx
                and set a product key directly.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.InternalProductKey">
            <summary>
                Returns the product key.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.Options">
            <summary>
                Options that are passed to the rendering engine.
            </summary>
            <value>
                An object that implements the <see cref="T:Telerik.Web.Apoc.Render.IRendererOptions"/> marker interface.
                The default value is null, in which case all default options will be used.
            </value>
            <remarks>
                An instance of <see cref="T:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions"/>
                is typically passed to this property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.ApocDriver.IsEvaluation">
            <summary>
                True if the current license is an evaluation license.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.ApocDriver.ApocEventHandler">
            <summary>
                The delegate subscribers must implement to receive Apoc events.
            </summary>
            <remarks>
                The <paramref name="driver"/> parameter will be a reference to 
                the  active ApocDriver.  The <paramref name="e"/> parameter will 
                contain a human-readable error message.
            </remarks>
            <param name="driver">A reference to the active ApocDriver</param>
            <param name="e">Encapsulates a human readable error message</param>
        </member>
        <member name="T:Telerik.Web.Apoc.ApocDriver.ApocImageHandler">
            <summary>
                The delegat subscribers must implement to handle the loading 
                of image data in response to external-graphic formatting objects.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.ApocEventArgs">
            <summary>
                A class containing event data for the Error, Warning and Info 
                events defined in <see cref="T:Telerik.Web.Apoc.ApocDriver"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocEventArgs.#ctor(System.String)">
            <summary>
                Initialises a new instance of the <i>ApocEventArgs</i> class.
            </summary>
            <param name="message">The text of the event message.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocEventArgs.GetMessage">
            <summary>
                Retrieves the event message.
            </summary>
            <returns>A string which may be null.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocEventArgs.ToString">
            <summary>
                Converts this <i>ApocEventArgs</i> to a string.
            </summary>
            <returns>
                A string representation of this class which is identical 
                to <see cref="M:Telerik.Web.Apoc.ApocEventArgs.GetMessage"/>.
            </returns>
        </member>
        <member name="T:Telerik.Web.Apoc.ApocException">
            <summary>
                This exception is thrown by Apoc when an error occurs.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocException.#ctor(System.Exception)">
            <summary>
                Initialises a new instance of the ApocException class.
            </summary>
            <remarks>
                The <see cref="P:System.Exception.Message"/> property will be initialised 
                to <i>innerException.Message</i>
            </remarks>
            <param name="innerException">
                The exception that is the cause of the current exception
            </param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocException.#ctor(System.String)">
            <summary>
                Initialises a new instance of the ApocException class.
            </summary>
            <param name="message">
                The error message that explains the reason for this exception
            </param>
        </member>
        <member name="M:Telerik.Web.Apoc.ApocException.#ctor(System.String,System.Exception)">
            <summary>
                Initialises a new instance of the ApocException class.
            </summary>
            <param name="message">
                The error message that explains the reason for this exception
            </param>
            <param name="innerException">
                The exception that is the cause of the current exception
            </param>
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.AutoLength">
            <summary>
            A length quantity in XSL which is specified as "auto".
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.ColorType">
            a colour quantity in XSL
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.ColorType._red">
            the red component
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.ColorType._green">
            the green component
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.ColorType._blue">
            the blue component
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.ColorType._alpha">
            the alpha component
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.ColorType.#ctor(System.String)">
            set the colour given a particular String specifying either a
            colour name or #RGB or #RRGGBB
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.CondLength">
            a space quantity in XSL (space-before, space-after)
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.FixedLength">
            a length quantity in XSL
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.FixedLength.#ctor(System.Double,System.Int32)">
            Set the length given a number of relative units and the current
            font size in base units.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.FixedLength.#ctor(System.Double,System.String)">
            Set the length given a number of units and a unit name.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.FixedLength.#ctor(System.Int32)">
            set the length as a number of base units
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.FixedLength.Convert(System.Double,System.String)">
            Convert the given length to a dimensionless integer representing
            a whole number of base units (milli-points).
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.#ctor(System.String)">
             Constructor for IDNode
            
             @param idValue The value of the id for this node
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.SetPageNumber(System.Int32)">
             Sets the page number for this node
            
             @param number page number of node
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.GetPageNumber">
             Returns the page number of this node
            
             @return page number of this node
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.CreateInternalLinkGoTo(Telerik.Pdf.PdfObjectId)">
             creates a new GoTo object for an internal link
            
             @param objectNumber
             the number to be assigned to the new object
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.SetInternalLinkGoToPageReference(Telerik.Pdf.PdfObjectReference)">
             sets the page reference for the internal link's GoTo.  The GoTo will jump to this page reference.
            
             @param pageReference
             the page reference to which the internal link GoTo should jump
             ex. 23 0 R
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.GetInternalLinkGoToReference">
             Returns the reference to the Internal Link's GoTo object
            
             @return GoTo object reference
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.GetIDValue">
             Returns the id value of this node
            
             @return this node's id value
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.GetInternalLinkGoTo">
             Returns the PDFGoTo object associated with the internal link
            
             @return PDFGoTo object
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.IsThereInternalLinkGoTo">
             Determines whether there is an internal link GoTo for this node
            
             @return true if internal link GoTo for this node is set, false otherwise
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDNode.SetPosition(System.Int32,System.Int32)">
             Sets the position of this node
            
             @param x      the x position
             @param y      the y position
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.#ctor">
            Constructor for IDReferences
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.InitializeID(System.String,Telerik.Web.Apoc.Layout.Area)">
             Creates and configures the specified id.
            
             @param id     The id to initialize
             @param area   The area where this id was encountered
             @exception ApocException
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.CreateID(System.String)">
             Creates id entry
            
             @param id     The id to create
             @param area   The area where this id was encountered
             @exception ApocException
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.CreateUnvalidatedID(System.String)">
             Creates id entry that hasn't been validated
            
             @param id     The id to create
             @exception ApocException
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.AddToUnvalidatedIdList(System.String)">
             Adds created id list of unvalidated ids that have already
             been created. This should be used if it is unsure whether
             the id is valid but it must be anyhow.
            
             @param id     The id to create
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.RemoveFromUnvalidatedIDList(System.String)">
             Removes id from list of unvalidated ids.
             This should be used if the id has been determined
             to be valid.
            
             @param id     The id to remove
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.DoesUnvalidatedIDExist(System.String)">
             Determines whether specified id already exists in
             idUnvalidated
            
             @param id     The id to search for
             @return true if ID was found, false otherwise
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.ConfigureID(System.String,Telerik.Web.Apoc.Layout.Area)">
             Configures this id
            
             @param id     The id to configure
             @param area   The area where the id was encountered
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.AddToIdValidationList(System.String)">
             Adds id to validation list to be validated .  This should be used if it is unsure whether the id is valid
            
             @param id     id to be added
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.RemoveFromIdValidationList(System.String)">
             Removes id from validation list. This should be used if the id has been determined to be valid
            
             @param id     the id to remove
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.RemoveID(System.String)">
             Removes id from IDReferences
            
             @param id     The id to remove
             @exception ApocException
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.IsEveryIdValid">
             Determines whether all id's are valid
            
             @return true if all id's are valid, false otherwise
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.GetInvalidIds">
             Returns all invalid id's still remaining in the validation list
            
             @return invalid ids from validation list
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.doesIDExist(System.String)">
             Determines whether specified id already exists in IDReferences
            
             @param id     the id to search for
             @return true if ID was found, false otherwise
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.doesGoToReferenceExist(System.String)">
             Determines whether the GoTo reference for the specified id is defined
            
             @param id     the id to search for
             @return true if GoTo reference is defined, false otherwise
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.getInternalLinkGoTo(System.String)">
             Returns the reference to the GoTo object used for the internal link
            
             @param id     the id whose reference to use
             @return reference to GoTo object
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.createInternalLinkGoTo(System.String,Telerik.Pdf.PdfObjectId)">
            <summary>
                Creates an PdfGoto object that will 'goto' the passed Id.
            </summary>
            <param name="id">The ID of the link's target.</param>
            <param name="objectId">The PDF object id to use for the GoTo object.</param>
            <remarks>
                This method is a bit 'wrong'.  Passing in an objectId seems a bit
                dirty and I don't see why an IDNode should be responsible for
                keeping track of the GoTo object that points to it.  These decisions
                only seem to pollute this class with PDF specific code.
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.createNewId(System.String)">
             Adds an id to IDReferences
            
             @param id     the id to add
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.getPDFGoTo(System.String)">
             Returns the PDFGoTo object for the specified id
            
             @param id     the id for which the PDFGoTo to be retrieved is associated
             @return the PdfGoTo object associated with the specified id
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.setInternalGoToPageReference(System.String,Telerik.Pdf.PdfObjectReference)">
             sets the page reference for the internal link's GoTo.  The GoTo will jump to this page reference.
            
             @param pageReference
             the page reference to which the internal link GoTo should jump
             ex. 23 0 R
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.setPageNumber(System.String,System.Int32)">
             Sets the page number for the specified id
            
             @param id     The id whose page number is being set
             @param pageNumber The page number of the specified id
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.getPageNumber(System.String)">
             Returns the page number where the specified id is found
            
             @param id     The id whose page number to return
             @return the page number of the id, or null if the id does not exist
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.IDReferences.setPosition(System.String,System.Int32,System.Int32)">
             Sets the x and y position of specified id
            
             @param id     the id whose position is to be set
             @param x      x position of id
             @param y      y position of id
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.Keep">
            XSL FO Keep Property datatype (keep-together, etc)
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.Keep.ToString">
            What to do here? There isn't really a meaningful single value.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.KeepValue">
            Keep Value
            Stores the different types of keeps in a single convenient format.
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.LengthBase.parentFO">
            FO parent of the FO for which this property is to be calculated.
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.LengthBase.propertyList">
            PropertyList for the FO where this property is calculated.
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.LengthBase.iBaseType">
            One of the defined types of LengthBase
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LengthBase.GetParentFO">
            Accessor for parentFO object from subclasses which define
            custom kinds of LengthBase calculations.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LengthBase.getPropertyList">
            Accessor for propertyList object from subclasses which define
            custom kinds of LengthBase calculations.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.LengthPair">
            This datatype hold a pair of lengths, specifiying the dimensions in
            both inline and block-progression-directions.
            It is currently only used to specify border-separation in tables.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.LengthRange">
            a "progression-dimension" quantity
            ex. block-progression-dimension, inline-progression-dimension
            corresponds to the triplet min-height, height, max-height (or width)
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LengthRange.SetMinimum(Telerik.Web.Apoc.Fo.Property,System.Boolean)">
            Set minimum value to min.
            @param min A Length value specifying the minimum value for this
            LengthRange.
            @param bIsDefault If true, this is set as a "default" value
            and not a user-specified explicit value.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LengthRange.SetMaximum(Telerik.Web.Apoc.Fo.Property,System.Boolean)">
            Set maximum value to max if it is >= optimum or optimum isn't set.
            @param max A Length value specifying the maximum value for this
            @param bIsDefault If true, this is set as a "default" value
            and not a user-specified explicit value.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LengthRange.SetOptimum(Telerik.Web.Apoc.Fo.Property,System.Boolean)">
            Set the optimum value.
            @param opt A Length value specifying the optimum value for this
            @param bIsDefault If true, this is set as a "default" value
            and not a user-specified explicit value.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.LinearCombinationLength.ComputeValue">
            Return the computed value in millipoints.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.MixedLength">
            A length quantity in XSL which is specified with a mixture
            of absolute and relative and/or percent components.
            The actual value may not be computable before layout is done.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.PercentLength">
            a percent specified length quantity in XSL
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.PercentLength.#ctor(System.Double)">
            construct an object based on a factor (the percent, as a
            a factor) and an object which has a method to return the
            Length which provides the "base" for this calculation.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.PercentLength.ComputeValue">
            Return the computed value in millipoints. This assumes that the
            base length has been resolved to an absolute length value.
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.Space">
            <summary>
                A space quantity in XSL (space-before, space-after)
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.DataTypes.TableColLength">
            A table-column width specification, possibly including some
            number of proportional "column-units". The absolute size of a
            column-unit depends on the fixed and proportional sizes of all
            columns in the table, and on the overall size of the table.
            It can't be calculated until all columns have been specified and until
            the actual width of the table is known. Since this can be specified
            as a percent of its parent containing width, the calculation is done
            during layout.
            NOTE: this is only supposed to be allowed if table-layout=fixed.
        </member>
        <member name="F:Telerik.Web.Apoc.DataTypes.TableColLength.tcolUnits">
            Number of table-column proportional units
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.TableColLength.#ctor(System.Double)">
            Construct an object with tcolUnits of proportional measure.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.TableColLength.GetTableUnits">
            Override the method in Length to return the number of specified
            proportional table-column units.
        </member>
        <member name="M:Telerik.Web.Apoc.DataTypes.TableColLength.ResolveTableUnit(System.Double)">
            Calculate the number of millipoints and set it.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Property.specVal">
            The original specified value for properties which inherit
            specified values.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Property.GetLength">
            Accessor functions for all possible Property datatypes
        </member>
        <member name="P:Telerik.Web.Apoc.Fo.Property.SpecifiedValue">
            <summary>
                Gets or setd the original value specified for the property attribute.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.#ctor">
            <summary>
                Construct an instance of a PropertyMaker.
            </summary>
            <remarks>
                The property name is set to "UNKNOWN".
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.#ctor(System.String)">
            <summary>
                Construct an instance of a PropertyMaker for the given property.
            </summary>
            <param name="propName">The name of the property to be made.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.IsInherited">
            <summary>
                Default implementation of isInherited.
            </summary>
            <returns>A boolean indicating whether this property is inherited.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.InheritsSpecified">
            <summary>
                Return a boolean indicating whether this property inherits the
                "specified" value rather than the "computed" value. The default is 
                to inherit the "computed" value.
            </summary>
            <returns>If true, property inherits the value specified.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            <summary>
                Return an object implementing the PercentBase interface.  This is 
                used to handle properties specified as a percentage of some "base 
                length", such as the content width of their containing box.  
                Overridden by subclasses which allow percent specifications. See
                the documentation on properties.xsl for details.
            </summary>
            <param name="fo"></param>
            <param name="pl"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.GetSubpropMaker(System.String)">
            <summary>
                Return a Maker object which is used to set the values on components 
                of compound property types, such as "space".  Overridden by property 
                maker subclasses which handle compound properties.
            </summary>
            <param name="subprop">
                The name of the component for which a Maker is to returned, for 
                example "optimum", if the FO attribute is space.optimum='10pt'.
            </param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.GetSubpropValue(Telerik.Web.Apoc.Fo.Property,System.String)">
            <summary>
                Return a property value for the given component of a compound 
                property.
            </summary>
            <remarks>
                NOTE: this is only to ease porting when calls are made to 
                PropertyList.get() using a component name of a compound property,
                such as get("space.optimum"). 
                The recommended technique is: get("space").getOptimum().
                Overridden by property maker subclasses which handle compound properties.
            </remarks>
            <param name="p">A property value for a compound property type such as SpaceProperty.</param>
            <param name="subprop">The name of the component whose value is to be returned.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.Make(Telerik.Web.Apoc.Fo.Property,System.String,Telerik.Web.Apoc.Fo.PropertyList,System.String,Telerik.Web.Apoc.Fo.FObj)">
            <summary>
                Return a property value for a compound property. If the property
                value is already partially initialized, this method will modify it.
            </summary>
            <param name="baseProp">
                The Property object representing the compound property, such as 
                SpaceProperty.
            </param>
            <param name="partName">The name of the component whose value is specified.</param>
            <param name="propertyList">The propertyList being built.</param>
            <param name="value"></param>
            <param name="fo">The FO whose properties are being set.</param>
            <returns>A compound property object.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.SetSubprop(Telerik.Web.Apoc.Fo.Property,System.String,Telerik.Web.Apoc.Fo.Property)">
            <summary>
                Set a component in a compound property and return the modified
                compound property object.  This default implementation returns 
                the original base property without modifying it.  It is overridden 
                by property maker subclasses which handle compound properties.
            </summary>
            <param name="baseProp">
                The Property object representing the compound property, such as SpaceProperty.
            </param>
            <param name="partName">The name of the component whose value is specified.</param>
            <param name="subProp">
                A Property object holding the specified value of the component to be set.
            </param>
            <returns>The modified compound property object.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.Make(Telerik.Web.Apoc.Fo.PropertyList,System.String,Telerik.Web.Apoc.Fo.FObj)">
            <summary>
                Create a Property object from an attribute specification.
            </summary>
            <param name="propertyList">The PropertyList object being built for this FO.</param>
            <param name="value">The attribute value.</param>
            <param name="fo">The current FO whose properties are being set.</param>
            <returns>The initialized Property object.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.CheckValueKeywords(System.String)">
            <summary>
                Return a String to be parsed if the passed value corresponds to
                a keyword which can be parsed and used to initialize the property.
                For example, the border-width family of properties can have the
                initializers "thin", "medium", or "thick". The foproperties.xml
                file specifies a length value equivalent for these keywords,
                such as "0.5pt" for "thin". These values are considered parseable,
                since the Length object is no longer responsible for parsing
                unit expresssions.
            </summary>
            <param name="value">The string value of property attribute.</param>
            <returns>
                A string containging a parseable equivalent or null if the passed 
                value isn't a keyword initializer for this Property.
            </returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            <summary>
                Return a Property object based on the passed Property object.
                This method is called if the Property object built by the parser
                isn't the right type for this property.
                It is overridden by subclasses when the property specification in
                foproperties.xml specifies conversion rules.
            </summary>
            <param name="p">The Property object return by the expression parser</param>
            <param name="propertyList">The PropertyList object being built for this FO.</param>
            <param name="fo">The current FO whose properties are being set.</param>
            <returns>
                A Property of the correct type or null if the parsed value
                can't be converted to the correct type.
            </returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.Make(Telerik.Web.Apoc.Fo.PropertyList)">
            <summary>
                Return a Property object representing the initial value.
            </summary>
            <param name="propertyList">The PropertyList object being built for this FO.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.MakeCompound(Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            <summary>
                Return a Property object representing the initial value.
            </summary>
            <param name="propertyList">The PropertyList object being built for this FO.</param>
            <param name="parentFO">The parent FO for the FO whose property is being made.</param>
            <returns>
                A Property subclass object holding a "compound" property object
                initialized to the default values for each component.
            </returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyMaker.Compute(Telerik.Web.Apoc.Fo.PropertyList)">
            <summary>
                Return a Property object representing the value of this property,
                based on other property values for this FO.
                A special case is properties which inherit the specified value,
                rather than the computed value.
            </summary>
            <param name="propertyList">The PropertyList for the FO.</param>
            <returns>
                Property A computed Property value or null if no rules are 
                specified (in foproperties.xml) to compute the value.
            </returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Fo.PropertyMaker.PropName">
            <summary>
                Return the name of the property whose value is being set.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Extensions.ExtensionObj">
            base class for extension objects
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.FObj">
            base class for representation of formatting objects and their processing
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FONode.MarkerStart">
            <summary>
                Value of marker before layout begins
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FONode.MarkerBreakAfter">
            value of marker after break-after
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FONode.marker">
            where the layout was up to.
            for FObjs it is the child number
            for FOText it is the character number
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FONode.GetProperty(System.String)">
            lets outside sources access the property list
            first used by PageNumberCitation to find the "id" property
            returns null by default, overide this function when there is a property list
            @param name - the name of the desired property to obtain
            @returns the property
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FONode.getMarkerSnapshot(System.Collections.ArrayList)">
            At the start of a new span area layout may be partway through a
            nested FO, and balancing requires rollback to this known point.
            The snapshot records exactly where layout is at.
            @param snapshot a Vector of markers (Integer)
            @returns the updated Vector of markers (Integers)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FONode.Rollback(System.Collections.ArrayList)">
            When balancing occurs, the flow layout() method restarts at the
            point specified by the current marker snapshot, which is retrieved
            and restored using this method.
            @param snapshot the Vector of saved markers (Integers)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.AddCharacters(System.Char[],System.Int32,System.Int32)">
            adds characters (does nothing here)
            @param data text
            @param start start position
            @param length length of the text
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.Layout(Telerik.Web.Apoc.Layout.Area)">
             generates the area or areas for this formatting object
             and adds these to the area. This method should always be
             overridden by all sub classes
            
             @param area
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.GetName">
            returns the name of the formatting object
            @return the name of this formatting objects
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.Start">
            
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.End">
            
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.GetProperty(System.String)">
            lets outside sources access the property list
            first used by PageNumberCitation to find the "id" property
            @param name - the name of the desired property to obtain
            @return the property
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.GetContentWidth">
            Return the "content width" of the areas generated by this FO.
            This is used by percent-based properties to get the dimension of
            the containing block.
            If an FO has a property with a percentage value, that value
            is usually calculated on the basis of the corresponding dimension
            of the area which contains areas generated by the FO.
            NOTE: subclasses of FObj should implement this to return a reasonable
            value!
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.RemoveID(Telerik.Web.Apoc.DataTypes.IDReferences)">
            removes property id
            @param idReferences the id to remove
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FObj.SetWritingMode">
            Set writing mode for this FO.
            Find nearest ancestor, including self, which generates
            reference areas and use the value of its writing-mode property.
            If no such ancestor is found, use the value on the root FO.
        </member>
        <member name="M:Telerik.Web.Apoc.Extensions.ExtensionObj.#ctor(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            
             @param parent the parent formatting object
             @param propertyList the explicit properties of this object
        </member>
        <member name="M:Telerik.Web.Apoc.Extensions.ExtensionObj.Layout(Telerik.Web.Apoc.Layout.Area)">
             Called for extensions within a page sequence or flow. These extensions
             are allowed to generate visible areas within the layout.
            
            
             @param area
        </member>
        <member name="M:Telerik.Web.Apoc.Extensions.ExtensionObj.Format(Telerik.Web.Apoc.Layout.AreaTree)">
             Called for root extensions. Root extensions aren't allowed to generate
             any visible areas. They are used for extra items that don't show up in
             the page layout itself. For example: pdf outlines
            
             @param areaTree
        </member>
        <member name="F:Telerik.Web.Apoc.Extensions.Outline._parentOutline">
            The parent outline object if it exists
        </member>
        <member name="F:Telerik.Web.Apoc.Extensions.Outline._rendererObject">
            an opaque renderer context object, e.g. PDFOutline for PDFRenderer
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.ColorProfile">
            The fo:root formatting object. Contains page masters, root extensions,
            page-sequences.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.EnumProperty.Maker.CheckEnumValues(System.String)">
            Called by subclass if no match found.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.FunctionBase.GetPercentBase">
            By default, functions have no percent-based arguments.
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Expr.ApocPropValFunction">
            Return the specified or initial value of the property on this object.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.NCnameProperty.GetString">
            Return the name as a String (should be specified with quotes!)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.#ctor(System.Decimal)">
            Construct a Numeric object from a Number.
            @param num The number.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.#ctor(Telerik.Web.Apoc.DataTypes.FixedLength)">
            Construct a Numeric object from a Length.
            @param l The Length.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.#ctor(Telerik.Web.Apoc.DataTypes.PercentLength)">
            Construct a Numeric object from a PercentLength.
            @param pclen The PercentLength.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.#ctor(Telerik.Web.Apoc.DataTypes.TableColLength)">
            v         * Construct a Numeric object from a TableColLength.
                     * @param tclen The TableColLength.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.asLength">
            Return the current value as a Length if possible. This constructs
            a new Length or Length subclass based on the current value type
            of the Numeric.
            If the stored value has a unit dimension other than 1, null
            is returned.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.asNumber">
            Return the current value as a Number if possible.
            Calls asDouble().
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.isMixedType">
            Return a boolean value indiciating whether the currently stored
            value consists of different "types" of values (absolute, percent,
            and/or table-unit.)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.subtract(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Subtract the operand from the current value and return a new Numeric
            representing the result.
            @param op The value to subtract.
            @return A Numeric representing the result.
            @throws PropertyException If the dimension of the operand is different
            from the dimension of this Numeric.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.add(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Add the operand from the current value and return a new Numeric
            representing the result.
            @param op The value to add.
            @return A Numeric representing the result.
            @throws PropertyException If the dimension of the operand is different
            from the dimension of this Numeric.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.multiply(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Multiply the the current value by the operand and return a new Numeric
            representing the result.
            @param op The multiplier.
            @return A Numeric representing the result.
            @throws PropertyException If both Numerics have "mixed" type.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.divide(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Divide the the current value by the operand and return a new Numeric
            representing the result.
            @param op The divisor.
            @return A Numeric representing the result.
            @throws PropertyException If both Numerics have "mixed" type.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.abs">
            Return the absolute value of this Numeric.
            @return A new Numeric object representing the absolute value.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.max(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Return a Numeric which is the maximum of the current value and the
            operand.
            @throws PropertyException If the dimensions or value types of the
            object and the operand are different.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.Numeric.min(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Return a Numeric which is the minimum of the current value and the
            operand.
            @throws PropertyException If the dimensions or value types of the
            object and the operand are different.
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Expr.PropertyInfo">
            This class holds context information needed during property expression
            evaluation.
            It holds the Maker object for the property, the PropertyList being
            built, and the FObj parent of the FObj for which the property is being set.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyInfo.inheritsSpecified">
            Return whether this property inherits specified values.
            Propagates to the Maker.
            @return true if the property inherits specified values, false if it
            inherits computed values.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyInfo.GetPercentBase">
            Return the PercentBase object used to calculate the absolute value from
            a percent specification.
            Propagates to the Maker.
            @return The PercentBase object or null if percentLengthOK()=false.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyInfo.currentFontSize">
            Return the current font-size value as base units (milli-points).
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.#ctor(System.String)">
            Construct a new PropertyTokenizer object to tokenize the passed
            string.
            @param s The Property expressio to tokenize.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.next">
            Return the next token in the expression string.
            This sets the following package visible variables:
            currentToken  An enumerated value identifying the recognized token
            currentTokenValue  A string containing the token contents
            currentUnitLength  If currentToken = TOK_NUMERIC, the number of
            characters in the unit name.
            @throws PropertyException If un unrecognized token is encountered.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.scanName">
            Attempt to recognize a valid NAME token in the input expression.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.scanDigits">
            Attempt to recognize a valid sequence of decimal digits in the
            input expression.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.scanHexDigits">
            Attempt to recognize a valid sequence of hexadecimal digits in the
            input expression.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.followingParen">
            Return a bool value indicating whether the following non-whitespace
            character is an opening parenthesis.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.isDigit(System.Char)">
            Return a bool value indicating whether the argument is a
            decimal digit (0-9).
            @param c The character to check
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.isHexDigit(System.Char)">
            Return a bool value indicating whether the argument is a
            hexadecimal digit (0-9, A-F, a-f).
            @param c The character to check
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.isSpace(System.Char)">
            Return a bool value indicating whether the argument is whitespace
            as defined by XSL (space, newline, CR, tab).
            @param c The character to check
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.isNameStartChar(System.Char)">
            Return a  bool value indicating whether the argument is a valid name
            start character, ie. can start a NAME as defined by XSL.
            @param c The character to check
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyTokenizer.isNameChar(System.Char)">
            Return a  bool value indicating whether the argument is a valid name
            character, ie. can occur in a NAME as defined by XSL.
            @param c The character to check
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parse(System.String,Telerik.Web.Apoc.Fo.Expr.PropertyInfo)">
            Public entrypoint to the Property expression parser.
            @param expr The specified value (attribute on the xml element).
            @param propInfo A PropertyInfo object representing the context in
            which the property expression is to be evaluated.
            @return A Property object holding the parsed result.
            @throws PropertyException If the "expr" cannot be parsed as a Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.#ctor(System.String,Telerik.Web.Apoc.Fo.Expr.PropertyInfo)">
            Private constructor. Called by the static parse() method.
            @param propExpr The specified value (attribute on the xml element).
            @param propInfo A PropertyInfo object representing the context in
            which the property expression is to be evaluated.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parseProperty">
            Parse the property expression described in the instance variables.
            Note: If the property expression String is empty, a StringProperty
            object holding an empty String is returned.
            @return A Property object holding the parsed result.
            @throws PropertyException If the "expr" cannot be parsed as a Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parseAdditiveExpr">
            Try to parse an addition or subtraction expression and return the
            resulting Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parseMultiplicativeExpr">
            Try to parse a multiply, divide or modulo expression and return
            the resulting Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parseUnaryExpr">
            Try to parse a unary minus expression and return the
            resulting Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.expectRpar">
            Checks that the current token is a right parenthesis
            and throws an exception if this isn't the case.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parsePrimaryExpr">
            Try to parse a primary expression and return the
            resulting Property.
            A primary expression is either a parenthesized expression or an
            expression representing a primitive Property datatype, such as a
            string literal, an NCname, a number or a unit expression, or a
            function call expression.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.parseArgs(System.Int32)">
            Parse a comma separated list of function arguments. Each argument
            may itself be an expression. This method consumes the closing right
            parenthesis of the argument list.
            @param nbArgs The number of arguments expected by the function.
            @return An array of Property objects representing the arguments
            found.
            @throws PropertyException If the number of arguments found isn't equal
            to the number expected.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalAddition(Telerik.Web.Apoc.Fo.Expr.Numeric,Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Evaluate an addition operation. If either of the arguments is null,
            this means that it wasn't convertible to a Numeric value.
            @param op1 A Numeric object (Number or Length-type object)
            @param op2 A Numeric object (Number or Length-type object)
            @return A new NumericProperty object holding an object which represents
            the sum of the two operands.
            @throws PropertyException If either operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalSubtraction(Telerik.Web.Apoc.Fo.Expr.Numeric,Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Evaluate a subtraction operation. If either of the arguments is null,
            this means that it wasn't convertible to a Numeric value.
            @param op1 A Numeric object (Number or Length-type object)
            @param op2 A Numeric object (Number or Length-type object)
            @return A new NumericProperty object holding an object which represents
            the difference of the two operands.
            @throws PropertyException If either operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalNegate(Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Evaluate a unary minus operation. If the argument is null,
            this means that it wasn't convertible to a Numeric value.
            @param op A Numeric object (Number or Length-type object)
            @return A new NumericProperty object holding an object which represents
            the negative of the operand (multiplication by *1).
            @throws PropertyException If the operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalMultiply(Telerik.Web.Apoc.Fo.Expr.Numeric,Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Evaluate a multiplication operation. If either of the arguments is null,
            this means that it wasn't convertible to a Numeric value.
            @param op1 A Numeric object (Number or Length-type object)
            @param op2 A Numeric object (Number or Length-type object)
            @return A new NumericProperty object holding an object which represents
            the product of the two operands.
            @throws PropertyException If either operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalDivide(Telerik.Web.Apoc.Fo.Expr.Numeric,Telerik.Web.Apoc.Fo.Expr.Numeric)">
            Evaluate a division operation. If either of the arguments is null,
            this means that it wasn't convertible to a Numeric value.
            @param op1 A Numeric object (Number or Length-type object)
            @param op2 A Numeric object (Number or Length-type object)
            @return A new NumericProperty object holding an object which represents
            op1 divided by op2.
            @throws PropertyException If either operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.evalModulo(Telerik.Web.Apoc.DataTypes.Number,Telerik.Web.Apoc.DataTypes.Number)">
            Evaluate a modulo operation. If either of the arguments is null,
            this means that it wasn't convertible to a Number value.
            @param op1 A Number object
            @param op2 A Number object
            @return A new NumberProperty object holding an object which represents
            op1 mod op2.
            @throws PropertyException If either operand is null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.PropertyParser.ParseDouble(System.String)">
            <summary>
                Parses a double value using a culture insensitive locale.
            </summary>
            <param name="s">The double value as a string.</param>
            <returns>The double value parsed.</returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Expr.RGBColorFunction.GetPercentBase">
            Return an object which implements the PercentBase interface.
            Percents in arguments to this function are interpreted relative
            to 255.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.AbstractTableBody.startsAC(Telerik.Web.Apoc.Layout.Area)">
            Return true if the passed area is on the left edge of its nearest
            absolute AreaContainer (generally a page column).
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.FObjMixed">
            base class for representation of mixed content formatting objects
            and their processing
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Block.GetContentWidth">
            Return the content width of the boxes generated by this FO.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.BlockContainer.GetContentWidth">
            Return the content width of the boxes generated by this block
            container FO.
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Flow.Character">
             this class represents the flow object 'fo:character'. Its use is defined by
             the spec: "The fo:character flow object represents a character that is mapped to
             a glyph for presentation. It is an atomic unit to the formatter.
             When the result tree is interpreted as a tree of formatting objects,
             a character in the result tree is treated as if it were an empty
             element of type fo:character with a character attribute
             equal to the Unicode representation of the character.
             The semantics of an "auto" value for character properties, which is
             typically their initial value,  are based on the Unicode codepoint.
             Overrides may be specified in an implementation-specific manner." (6.6.3)
            
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Flow.pageSequence">
            PageSequence container
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Flow.markerSnapshot">
            Vector to store snapshot
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Flow._flowName">
            flow-name attribute
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Flow.contentWidth">
            Content-width of current column area during layout
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Flow.GetContentWidth">
            Return the content width of this flow (really of the region
            in which it is flowing).
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.InstreamForeignObject.GetMaker">
             returns the maker for this object.
            
             @return the maker for SVG objects
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.InstreamForeignObject.#ctor(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
             constructs an instream-foreign-object object (called by Maker).
            
             @param parent the parent formatting object
             @param propertyList the explicit properties of this object
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.InstreamForeignObject.Layout(Telerik.Web.Apoc.Layout.Area)">
             layout this formatting object.
            
             @param area the area to layout the object into
            
             @return the status of the layout
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Flow.InstreamForeignObject.Maker">
            inner class for making SVG objects.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.InstreamForeignObject.Maker.Make(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
             make an SVG object.
            
             @param parent the parent formatting object
             @param propertyList the explicit properties of this object
            
             @return the SVG object
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Flow.Leader">
            Implements fo:leader; main property of leader leader-pattern.
            The following patterns are treated: rule, space, dots.
            The pattern use-content is ignored, i.e. it still must be implemented.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Leader.AddLeader(Telerik.Web.Apoc.Layout.BlockArea,Telerik.Web.Apoc.Layout.FontState,System.Single,System.Single,System.Single,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
             adds a leader to current line area of containing block area
             the actual leader area is created in the line area
            
             @return int +1 for success and -1 for none
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.ListItem.GetContentWidth">
            Return the content width of the boxes generated by this FO.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Marker.releaseRegistryArea">
            <summary>
                The page the marker was registered is put into the renderer 
                queue. The marker is transferred to it's own marker list,
                release the area for GC. We also know now whether the area is
                first/last.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Marker.resetMarker">
            <summary>
                This has actually nothing to do with resseting this marker,
                but the 'marker' from FONode, marking layout status.
                Called in case layout is to be rolled back. Unregister this
                marker from the page, it isn't laid aout anyway.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Marker.resetMarkerContent">
            <summary>
                More hackery: reset layout status marker. Called before the
                content is laid out from RetrieveMarker.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Flow.PageNumberCitation">
             6.6.11 fo:page-number-citation
            
             Common Usage:
             The fo:page-number-citation is used to reference the page-number for the page containing the first normal area returned by
             the cited formatting object.
            
             NOTE:
             It may be used to provide the page-numbers in the table of contents, cross-references, and index entries.
            
             Areas:
             The fo:page-number-citation formatting object generates and returns a single normal inline-area.
             Constraints:
            
             The cited page-number is the number of the page containing, as a descendant, the first normal area returned by the
             formatting object with an id trait matching the ref-id trait of the fo:page-number-citation (the referenced formatting
             object).
            
             The cited page-number string is obtained by converting the cited page-number in accordance with the number to string
             conversion properties specified on the ancestor fo:page-sequence of the referenced formatting object.
            
             The child areas of the generated inline-area are the same as the result of formatting a result-tree fragment consisting of
             fo:character flow objects; one for each character in the cited page-number string and with only the "character" property
             specified.
            
             Contents:
            
             EMPTY
            
             The following properties apply to this formatting object:
            
             [7.3 Common Accessibility Properties]
             [7.5 Common Aural Properties]
             [7.6 Common Border, Padding, and Background Properties]
             [7.7 Common Font Properties]
             [7.10 Common Margin Properties-Inline]
             [7.11.1 "alignment-adjust"]
             [7.11.2 "baseline-identifier"]
             [7.11.3 "baseline-shift"]
             [7.11.5 "dominant-baseline"]
             [7.36.2 "id"]
             [7.17.4 "keep-with-next"]
             [7.17.5 "keep-with-previous"]
             [7.14.2 "letter-spacing"]
             [7.13.4 "line-height"]
             [7.13.5 "line-height-shift-adjustment"]
             [7.36.5 "ref-id"]
             [7.18.4 "relative-position"]
             [7.36.6 "score-spaces"]
             [7.14.4 "text-decoration"]
             [7.14.5 "text-shadow"]
             [7.14.6 "text-transform"]
             [7.14.8 "word-spacing"]
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.HasUnfinishedSpans">
            Return true if any column has an unfinished vertical span.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.FinishRow(System.Int32)">
            Done with a row.
            Any spans with only one row left are done
            This means that we can now set the total height for this cell box
            Loop over all cells with spans and find number of rows remaining
            if rows remaining  = 1, set the height on the cell area and
            then remove the cell from the list of spanned cells. For other
            spans, add the rowHeight to the spanHeight.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.GetRemainingHeight(System.Int32)">
            If the cell in this column is in the last row of its vertical
            span, return the height left. If it's not in the last row, or if
            the content height &lt;= the content height of the previous rows
            of the span, return 0.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.SetIgnoreKeeps(System.Boolean)">
            helper method to prevent infinite loops if
            keeps or spans are not fitting on a page
            @param <code>true</code> if keeps and spans should be ignored
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.IgnoreKeeps">
            helper method (i.e. hack ;-) to prevent infinite loops if
            keeps or spans are not fitting on a page
            @return true if keeps or spans should be ignored
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.RowSpanMgr.SpanInfo.heightRemaining">
            Return the height remaining in the span.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Table.optIPD">
            Optimum inline-progression-dimension 
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Table.minIPD">
            Minimum inline-progression-dimension 
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.Table.maxIPD">
            Maximum inline-progression-dimension 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Table.GetContentWidth">
            Return the content width of the boxes generated by this table FO.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.Table.SetIPD(System.Boolean,System.Int32)">
            Initialize table inline-progression-properties values
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.startOffset">
            Offset of content rectangle in inline-progression-direction,
            relative to table.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.width">
            Dimension of allocation rectangle in inline-progression-direction,
            determined by the width of the column(s) occupied by the cell
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.beforeOffset">
            Offset of content rectangle, in block-progression-direction,
            relative to the row.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.startAdjust">
            Offset of content rectangle, in inline-progression-direction,
            relative to the column start edge.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.widthAdjust">
            Adjust to theoretical column width to obtain content width
            relative to the column start edge.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.minCellHeight">
            Minimum ontent height of cell.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.bDone">
            Set to true if all content completely laid out.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Flow.TableCell.m_borderSeparation">
            Border separation value in the block-progression dimension.
            Used in calculating cells height.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableCell.GetHeight">
            Return the allocation height of the cell area.
            Note: called by TableRow.
            We adjust the actual allocation height of the area by the value
            of border separation (for separate borders) or border height
            adjustment for collapse style (because current scheme makes cell
            overestimate the allocation height).
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableCell.SetRowHeight(System.Int32)">
            Set the final size of cell content rectangles to the actual row height
            and to vertically align the actual content within the cell rectangle.
            @param h Height of this row in the grid  which is based on
            the allocation height of all the cells in the row, including any
            border separation values.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableCell.CalcBorders(Telerik.Web.Apoc.Layout.BorderAndPadding)">
            Calculate cell border and padding, including offset of content
            rectangle from the theoretical grid position.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableColumn.SetColumnWidth(System.Int32)">
            Set the column width value in base units which overrides the
            value from the column-width Property.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.SetRowSpanMgr(Telerik.Web.Apoc.Fo.Flow.RowSpanMgr)">
            Called by parent FO to initialize information about
            cells started in previous rows which span into this row.
            The layout operation modifies rowSpanMgr
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.InitCellArray">
            Before starting layout for the first time, initialize information
            about spanning rows, empty cells and spanning columns.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.CellArray.GetNextFreeCell(System.Int32)">
            Return column which doesn't already contain a span or a cell
            If past the end or no free cells after colNum, return -1
            Otherwise return value >= input value.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.CellArray.GetCellType(System.Int32)">
            Return type of cell in colNum (1 based)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.CellArray.GetCell(System.Int32)">
            Return cell in colNum (1 based)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Flow.TableRow.CellArray.StoreCell(Telerik.Web.Apoc.Fo.Flow.TableCell,System.Int32,System.Int32)">
            Store cell starting at cellColNum (1 based) and spanning numCols
            If any of the columns is already occupied, return false, else true
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Flow.Wrapper">
             Implementation for fo:wrapper formatting object.
             The wrapper object serves as
             a property holder for it's children objects.
            
             Content: (#PCDATA|%inline;|%block;)*
             Properties: id
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.FOTreeBuilder">
            <summary>
                Builds the formatting object tree.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.fobjTable">
            <summary>
                Table mapping element names to the makers of objects
                representing formatting objects.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.propertylistTable">
            <summary>
                Class that builds a property list for each formatting object.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.currentFObj">
            <summary>
                Current formatting object being handled.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.rootFObj">
            <summary>
                The root of the formatting object tree.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.unknownFOs">
            <summary>
                Set of names of formatting objects encountered but unknown.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.FOTreeBuilder.streamRenderer">
            <summary>
                The class that handles formatting and rendering to a stream.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FOTreeBuilder.SetStreamRenderer(Telerik.Web.Apoc.StreamRenderer)">
            <summary>
                Sets the stream renderer that will be used as output.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FOTreeBuilder.AddElementMapping(System.String,System.Collections.Hashtable)">
            <summary>
                Add a mapping from element name to maker.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.FOTreeBuilder.AddPropertyMapping(System.String,System.Collections.Hashtable)">
            <summary>
                Add a mapping from property name to maker.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.LengthProperty.length">
            This object may be also be a subclass of Length, such
            as PercentLength, TableColLength.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.NumberProperty.GetObject">
            public Double getDouble() {
            return new Double(this.number.doubleValue());
            }
            public Integer getInteger() {
            return new Integer(this.number.intValue());
            }
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.ConditionalPageMasterReference.GetMasterName">
            Returns the "master-reference" attribute of this page master reference
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.LayoutMasterSet.regionNameExists(System.String)">
            Checks whether or not a region name exists in this master set
            @returns true when the region name specified has a region in this LayoutMasterSet
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.PageMasterReference">
            Base PageMasterReference class. Provides implementation for handling the
            master-reference attribute and containment within a PageSequenceMaster
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.SubSequenceSpecifier">
            Classes that implement this interface can be added to a PageSequenceMaster,
            and are capable of looking up an appropriate PageMaster.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.SubSequenceSpecifier.Reset">
            Called before a new page sequence is rendered so subsequences can reset
            any state they keep during the formatting process.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageMasterReference.GetElementName">
             Gets the formating object name for this object. Subclasses must provide this.
            
             @return the element name of this reference. e.g. fo:repeatable-page-master-reference
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageMasterReference.validateParent(Telerik.Web.Apoc.Fo.FObj)">
            Checks that the parent is the right element. The default implementation
            checks for fo:page-sequence-master
        </member>
        <member name="P:Telerik.Web.Apoc.Fo.Pagination.PageMasterReference.MasterName">
            Returns the "master-reference" attribute of this page master reference
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.PageNumberGenerator">
            This class uses the 'format', 'groupingSeparator', 'groupingSize',
            and 'letterValue' properties on fo:page-sequence to return a string
            corresponding to the supplied integer page number.
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.PageSequence">
            This provides pagination of flows onto pages. Much of the logic for paginating
            flows is contained in this class. The main entry point is the format method.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.root">
            The parent root object
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.layoutMasterSet">
            the set of layout masters (provided by the root object)
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence._flowMap">
            Map of flows to their flow name (flow-name, Flow)
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.masterName">
            the "master-reference" attribute,
            which specifies the name of the page-sequence-master or
            page-master to be used to create pages in the sequence
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.pageNumberType">
            specifies page numbering type (auto|auto-even|auto-odd|explicit)
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.thisIsFirstPage">
            used to determine whether to calculate auto, auto-even, auto-odd
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.currentSubsequence">
            the current subsequence while formatting a given page sequence
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.currentSubsequenceNumber">
            the current index in the subsequence list
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.PageSequence.currentPageMasterName">
            the name of the current page master
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.Format(Telerik.Web.Apoc.Layout.AreaTree)">
            Runs the formatting of this page sequence into the given area tree
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.MakePage(Telerik.Web.Apoc.Layout.AreaTree,System.Int32,System.Boolean,System.Boolean)">
            Creates a new page area for the given parameters
            @param areaTree the area tree the page should be contained in
            @param firstAvailPageNumber the page number for this page
            @param isFirstPage true when this is the first page in the sequence
            @param isEmptyPage true if this page will be empty (e.g. forced even or odd break)
            @return a Page layout object based on the page master selected from the params
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.FormatStaticContent(Telerik.Web.Apoc.Layout.AreaTree)">
            Formats the static content of the current page
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.GetNextSubsequence(Telerik.Web.Apoc.Fo.Pagination.PageSequenceMaster)">
            Returns the next SubSequenceSpecifier for the given page sequence master. The result
            is bassed on the current state of this page sequence.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.GetNextSimplePageMaster(Telerik.Web.Apoc.Fo.Pagination.PageSequenceMaster,System.Int32,System.Boolean,System.Boolean)">
            Returns the next simple page master for the given sequence master, page number and
            other state information
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.FlowsAreIncomplete">
            Returns true when there is more flow elements left to lay out.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.PageSequence.GetCurrentFlow(System.String)">
            Returns the flow that maps to the given region class for the current
            page master.
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.Region">
            This is an abstract base class for pagination regions
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Region.MakeRegionArea(System.Int32,System.Int32,System.Int32,System.Int32)">
            Creates a Region layout object for this pagination Region.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Region.GetDefaultRegionName">
            Returns the default region name (xsl-region-before, xsl-region-start,
            etc.)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Region.GetElementName">
            Returns the element name ("fo:region-body", "fo:region-start",
            etc.)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Region.getRegionName">
            Returns the name of this region
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Region.isReserved(System.String)">
             Checks to see if a given region name is one of the reserved names
            
             @param name a region name to check
             @return true if the name parameter is a reserved region name
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.RepeatablePageMasterAlternatives.maximumRepeats">
            Max times this page master can be repeated.
            INFINITE is used for the unbounded case
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Pagination.Root">
            The fo:root formatting object. Contains page masters, root extensions,
            page-sequences.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.Root.runningPageNumberCounter">
            keeps count of page number from over PageSequence instances
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Pagination.Root.getSucceedingPageSequence(Telerik.Web.Apoc.Fo.Pagination.PageSequence)">
            Some properties, such as 'force-page-count', require a
            page-sequence to know about some properties of the next.
            @returns succeeding PageSequence; null if none
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.Pagination.SimplePageMaster._regions">
            Page regions (regionClass, Region)
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.BlockProgressionDimensionMaker.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.BlockProgressionDimensionMaker.SP_MinimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.BlockProgressionDimensionMaker.SP_OptimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.BlockProgressionDimensionMaker.SP_MaximumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.GenericCondBorderWidth.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.BorderSeparationMaker.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.FontSizeMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.GenericCondLength.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.GenericKeep.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.GenericSpace.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.InlineProgressionDimensionMaker.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.InlineProgressionDimensionMaker.SP_MinimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.InlineProgressionDimensionMaker.SP_OptimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.InlineProgressionDimensionMaker.SP_MaximumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderLengthMaker.ConvertProperty(Telerik.Web.Apoc.Fo.Property,Telerik.Web.Apoc.Fo.PropertyList,Telerik.Web.Apoc.Fo.FObj)">
            Set the appropriate components when the "base" property is set. 
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderLengthMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderLengthMaker.SP_MinimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderLengthMaker.SP_OptimumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderLengthMaker.SP_MaximumMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LeaderPatternWidthMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.LineHeightMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.Properties.WidthMaker.GetPercentBase(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
            Return object used to calculate base Length
            for percent specifications.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetExplicitOrShorthandProperty(System.String)">
            Return the value explicitly specified on this FO.
            @param propertyName The name of the property whose value is desired.
            It may be a compound name, such as space-before.optimum.
            @return The value if the property is explicitly set or set by
            a shorthand property, otherwise null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetExplicitProperty(System.String)">
            Return the value explicitly specified on this FO.
            @param propertyName The name of the property whose value is desired.
            It may be a compound name, such as space-before.optimum.
            @return The value if the property is explicitly set, otherwise null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetExplicitBaseProperty(System.String)">
            Return the value explicitly specified on this FO.
            @param propertyName The name of the base property whose value is desired.
            @return The value if the property is explicitly set, otherwise null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetInheritedProperty(System.String)">
            Return the value of this property inherited by this FO.
            Implements the inherited-property-value function.
            The property must be inheritable!
            @param propertyName The name of the property whose value is desired.
            @return The inherited value, otherwise null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetSpecifiedProperty(System.String)">
            Return the property on the current FlowObject if it is specified, or if a
            corresponding property is specified. If neither is specified, it returns null.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetProperty(System.String)">
            Return the property on the current FlowObject. If it isn't set explicitly,
            this will try to compute it based on other properties, or if it is
            inheritable, to return the inherited value. If all else fails, it returns
            the default value.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetProperty(System.String,System.Boolean,System.Boolean)">
            Return the property on the current FlowObject. Depending on the passed flags,
            this will try to compute it based on other properties, or if it is
            inheritable, to return the inherited value. If all else fails, it returns
            the default value.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetNearestSpecifiedProperty(System.String)">
            Return the "nearest" specified value for the given property.
            Implements the from-nearest-specified-value function.
            @param propertyName The name of the property whose value is desired.
            @return The computed value if the property is explicitly set on some
            ancestor of the current FO, else the initial value.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.GetFromParentProperty(System.String)">
            Return the value of this property on the parent of this FO.
            Implements the from-parent function.
            @param propertyName The name of the property whose value is desired.
            @return The computed value on the parent or the initial value if this
            FO is the root or is in a different namespace from its parent.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.wmAbsToRel(System.Int32)">
            Given an absolute direction (top, bottom, left, right),
            return the corresponding writing model relative direction name
            for the flow object. Uses the stored writingMode.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.wmRelToAbs(System.Int32)">
            Given a writing mode relative direction (start, end, before, after)
            return the corresponding absolute direction name
            for the flow object. Uses the stored writingMode.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyList.SetWritingMode(System.Int32)">
            Set the writing mode traits for the FO with this property list.
        </member>
        <member name="F:Telerik.Web.Apoc.Fo.PropertyListBuilder.FONTSIZEATTR">
            Name of font-size property attribute to set first.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyListBuilder.MakeProperty(Telerik.Web.Apoc.Fo.PropertyList,System.String)">
            <summary>
                This seems to be just a helper method that looks up a property maker and
                creates the property.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.PropertyListBuilder.FindMaker(System.String)">
            <summary>
                Convenience function to return the Maker for a given property.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Status">
            classes representating the status of laying out a formatting object
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.Unknown">
            This represents an unknown element.
            For example with unsupported namespaces.
            This prevents any further problems arising from the unknown
            data.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.UnknownXMLObj.GetMaker(System.String,System.String)">
             returns the maker for this object.
            
             @return the maker for an unknown xml object
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.UnknownXMLObj.#ctor(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList,System.String,System.String)">
             constructs an unknown xml object (called by Maker).
            
             @param parent the parent formatting object
             @param propertyList the explicit properties of this object
        </member>
        <member name="T:Telerik.Web.Apoc.Fo.UnknownXMLObj.Maker">
            inner class for making unknown xml objects.
        </member>
        <member name="M:Telerik.Web.Apoc.Fo.UnknownXMLObj.Maker.Make(Telerik.Web.Apoc.Fo.FObj,Telerik.Web.Apoc.Fo.PropertyList)">
             make an unknown xml object.
            
             @param parent the parent formatting object
             @param propertyList the explicit properties of this object
            
             @return the unknown xml object
        </member>
        <member name="T:Telerik.Web.Apoc.Image.ApocImage">
            <summary>
                A bitmap image that will be referenced by fo:external-graphic.
            </summary>
            <remarks>
                This class and the associated ColorSpace class are PDF specific ideally 
                will be moved to the PDF library project at some point in the future.  
                Internally, Apoc should handle images using the standard framework 
                Bitmap class.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Image.ApocImage.filter">
            <summary>
                Filter that will be applied to image data
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.ApocImage.#ctor(System.String,System.Byte[])">
            <summary>
                Constructs a new ApocImage using the supplied bitmap.
            </summary>
            <remarks>
                Does not hold a reference to the passed bitmap.  Instead the
                image data is extracted from <b>bitmap</b> on construction.
            </remarks>
            <param name="href">The location of <i>bitmap</i></param>
            <param name="imageData">The image data</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.ApocImage.ExtractImage(System.Drawing.Bitmap)">
            <summary>
                Extracts the raw data from the image into a byte array suitable
                for including in the PDF document.  The image is always extracted
                as a 24-bit RGB image, regardless of it's original colour space
                and colour depth.
            </summary>
            <param name="bitmap">The <see cref="T:System.Drawing.Bitmap"/> from which the data is extracted</param>
            <returns>A byte array containing the raw 24-bit RGB data</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.Uri">
            <summary>
                Return the image URL.
            </summary>
            <returns>the image URL (as a string)</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.Width">
            <summary>
                Return the image width. 
            </summary>
            <returns>the image width</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.Height">
            <summary>
                Return the image height. 
            </summary>
            <returns>the image height</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.BitsPerPixel">
            <summary>
                Return the number of bits per pixel. 
            </summary>
            <returns>number of bits per pixel</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.BitmapsSize">
            <summary>
                Return the image data size
            </summary>
            <returns>The image data size</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.Bitmaps">
            <summary>
                Return the image data (uncompressed). 
            </summary>
            <returns>the image data</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.ColorSpace">
            <summary>
                Return the image color space. 
            </summary>
            <returns>the image color space (Apoc.Datatypes.ColorSpace)</returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Image.ApocImage.Filter">
            <summary>
                Returns the <see cref="T:Telerik.Pdf.Filter.IFilter"/> implementation 
                that should be applied to the bitmap data.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Image.ApocImageFactory">
            <summary>
                Creates ApocImage instances.
            </summary>
            
        </member>
        <member name="F:Telerik.Web.Apoc.Image.ApocImageFactory.tempDirEnvVars">
            <summary>Returns temporary directory</summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.ApocImageFactory.Make(System.String)">
            <summary>
                Creates a ApocImage from the supplied resource locator.  The 
                ApocImageFactory does cache images, therefore this method may 
                return a reference to an existing ApocImage
            </summary>
            <param name="href">A Uniform Resource Identifier</param>
            <returns>A reference to a  ApocImage</returns>
            <exception cref="T:Telerik.Web.Apoc.Image.ApocImageException"></exception>
            
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.Area.currentHeight">
            Total height of content of this area.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.#ctor(Telerik.Web.Apoc.Layout.FontState,System.Int32,System.Int32)">
             Creates a new <code>Area</code> instance.
            
             @param fontState a <code>FontState</code> value
             @param allocationWidth the inline-progression dimension of the content
             rectangle of the Area
             @param maxHeight the maximum block-progression dimension available
             for this Area (its allocation rectangle)
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.setAllocationWidth(System.Int32)">
            Set the allocation width.
            @param w The new allocation width.
            This sets content width to the same value.
            Currently only called during layout of Table to set the width
            to the total width of all the columns. Note that this assumes the
            column widths are explicitly specified.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.hasNonSpaceChildren">
            <summary>
                Tell whether this area contains any children which are not 
                DisplaySpace. This is used in determining whether to honour keeps.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.getContentHeight">
             Returns content height of the area.
            
             @return Content height in millipoints
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.GetHeight">
             Returns allocation height of this area.
             The allocation height is the sum of the content height plus border
             and padding in the vertical direction.
            
             @return allocation height in millipoints
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.getAbsoluteHeight">
            <summary>
                Return absolute Y position of the current bottom of this area,
                not counting any bottom padding or border.
            </summary>
            <remarks>
                This is used to set positions for link hotspots.
                In fact, the position is not really absolute, but is relative
                to the Ypos of the column-level AreaContainer, even when the
                area is in a page header or footer!
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.setAbsoluteHeight(System.Int32)">
            <summary>
                Set "absolute" Y position of the top of this area.
            </summary>
            <remarks>
                In fact, the position is not really absolute, but relative to 
                the Ypos of the column-level AreaContainer, even when the area 
                is in a page header or footer! 
                It is set from the value of getAbsoluteHeight() on the parent 
                area, just before adding this area. 
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.spaceLeft">
            Return space remaining in the vertical direction (height).
            This returns maximum available space - current content height
            Note: content height should be based on allocation height of content!
            @return space remaining in base units (millipoints)
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Area.SetHeight(System.Int32)">
             Set the content height to the passed value if that value is
             larger than current content height. If the new content height
             is greater than the maximum available height, set the content height
             to the max. available (!!!)
            
             @param height allocation height of content in millipoints
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.Inline.InlineArea.xOffset">
            amount of space added since the original layout - needed by links
        </member>
        <member name="T:Telerik.Web.Apoc.Image.JpegParser">
            <summary>
                Parses the contents of a JPEG image header to infer the colour 
                space and bits per pixel.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Image.JpegParser.ms">
            <summary>
                JPEG image data
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Image.JpegParser.headerInfo">
            <summary>
                Contains number of bitplanes, color space and optional ICC Profile
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Image.JpegParser.iccProfileData">
            <summary>
                Raw ICC Profile
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.#ctor(System.Byte[])">
            <summary>
                Class constructor.
            </summary>
            <param name="data"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadHeader">
            <summary>
                
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadInt">
            <summary>
                Reads a 16-bit integer from the underlying stream
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadByte">
            <summary>
                Reads a 32-bit integer from the underlying stream
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadString(System.Int32)">
            <summary>
                Reads the specified number of bytes from theunderlying stream 
                and converts them to a string using the ASCII encoding.
            </summary>
            <param name="numBytes"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadFirstMarker">
            <summary>
                Reads the initial marker which should be SOI.
            </summary>
            <remarks>
                After invoking this method the stream will point to the location 
                immediately after the fiorst marker.
            </remarks>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.ReadNextMarker">
            <summary>
                Reads the next JPEG marker and returns its marker code.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Image.JpegParser.SkipVariable">
            <summary>
                Skips over the parameters for any marker we don't want to process.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Image.UriSpecificationParser">
            <summary>
                Parses a &lt;uri-specification&gt; as defined by 
                section 5.11 of the XSL specification.
            </summary>
            <remarks>
                This class may be better expressed as a datatype residing in 
                Telerik.Web.Apoc.DataTypes.
            </remarks>
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.AbsolutePositionProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.AccessibilityProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.AreaTree.fontInfo">
            object containing information on available fonts, including
            metrics
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.AreaTree.rootExtensions">
            List of root extension objects
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.AreaTree.GetDocumentMarkers">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.AreaTree.GetCurrentPageSequence">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.AreaTree.GetCurrentPageSequenceMarkers">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.AuralProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.BlockArea">
             This class represents a Block Area.
             A block area is made up of a sequence of Line Areas.
            
             This class is used to organise the sequence of line areas as
             inline areas are added to this block it creates and ands line areas
             to hold the inline areas.
             This uses the line-height and line-stacking-strategy to work
             out how to stack the lines.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BlockArea.addLineArea(Telerik.Web.Apoc.Layout.LineArea)">
             Add a Line Area to this block area.
             Used internally to add a completed line area to this block area
             when either a new line area is created or this block area is
             completed.
            
             @param la the LineArea to add
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BlockArea.getCurrentLineArea">
             Get the current line area in this block area.
             This is used to get the current line area for adding
             inline objects to.
             This will return null if there is not enough room left
             in the block area to accomodate the line area.
            
             @return the line area to be used to add inlie objects
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BlockArea.createNextLineArea">
             Create a new line area to add inline objects.
             This should be called after getting the current line area
             and discovering that the inline object will not fit inside the current
             line. This method will create a new line area to place the inline
             object into.
             This will return null if the new line cannot fit into the block area.
            
             @return the new current line area, which will be empty.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BlockArea.end">
            Notify this block that the area has completed layout.
            Indicates the the block has been fully laid out, this will
            add (if any) the current line area.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BlockArea.spaceLeft">
            Return the maximum space remaining for this area's content in
            the block-progression-dimension.
            Remove top and bottom padding and spacing since these reduce
            available space for content and they are not yet accounted for
            in the positioning of the object.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.getNextArea(Telerik.Web.Apoc.Fo.FObj)">
            Depending on the column-count of the next FO, determine whether
            a new span area needs to be constructed or not, and return the
            appropriate ColumnArea.
            The next cut of this method should also inspect the FO to see
            whether the area to be returned ought not to be the footnote
            or before-float reference area.
            @param fo The next formatting object
            @returns the next column area (possibly the current one)
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.addSpanArea(System.Int32)">
            Add a new span area with specified number of column areas.
            @param numColumns The number of column areas
            @returns AreaContainer The next column area
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.isBalancingRequired(Telerik.Web.Apoc.Fo.FObj)">
            This almost does what getNewArea() does, without actually
            returning an area. These 2 methods can be reworked.
            @param fo The next formatting object
            @returns bool True if we need to balance.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.resetSpanArea">
            This is where the balancing algorithm lives, or gets called.
            Right now it's primitive: get the total content height in all
            columns, divide by the column count, and add a heuristic
            safety factor.
            Then the previous (unbalanced) span area is removed, and a new
            one added with the computed max height.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.GetRemainingHeight">
            Determine remaining height for new span area. Needs to be
            modified for footnote and before-float reference areas when
            those are supported.
            @returns int The remaining available height in millipoints.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.resetHeights">
            Used by resetSpanArea() and addSpanArea() to adjust the main
            reference area height before creating a new span.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.isLastColumn">
            Used in Flow when layout returns incomplete.
            @returns bool Is this the last column in this span?
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BodyAreaContainer.isNewSpanArea">
            This variable is unset by getNextArea(), is set by addSpanArea(),
            and <i>may</i> be set by resetSpanArea().
            @returns bool Is the span area new or not?
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.BorderAndPadding.Clone">
            Return a full copy of the BorderAndPadding information. This clones all
            padding and border information.
            @return The copy.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.FontInfo.CreateFontKey(System.String,System.String,System.String)">
            Creates a key from the given strings
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.FontState.#ctor(Telerik.Web.Apoc.Layout.FontInfo,System.String,System.String,System.String,System.Int32,System.Int32)">
            <summary>
                Class constructor
            </summary>
            <remarks>
                Defaults the letter spacing to 0 millipoints.
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.FontState.GetWidth(System.Int32)">
            <summary>
                Gets width of given character identifier plus <see cref="F:Telerik.Web.Apoc.Layout.FontState.letterSpacing"/> 
                in millipoints (1/1000ths of a point).
            </summary>
            <param name="charId"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.FontState.MapCharacter(System.Char)">
            <summary>
                Map a Unicode character to a code point
            </summary>
            <param name="c">Any Unicode character.</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.HyphenationProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.IFontDescriptor">
            <summary>
                A font descriptor specifies metrics and other attributes of a 
                font, as distinct from the metrics of individual glyphs.
            </summary>
            <remarks>
                See page 355 of PDF 1.4 specification for more information.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.Flags">
            <summary>
                Gets a collection of flags providing various font characteristics.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.FontBBox">
            <summary>
                Gets the smallest rectangle that will encompass the shape that 
                would result if all glyhs of the font were placed with their 
                origins coincident.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.ItalicAngle">
            <summary>
                Gets the main italic angle of the font expressed in tenths of 
                a degree counterclockwise from the vertical.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.StemV">
            <summary>
                TODO: The thickness, measured horizontally, of the dominant vertical 
                stems of the glyphs in the font.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.HasKerningInfo">
            <summary>
                Gets a value that indicates whether this font has kerning support.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.IsEmbeddable">
            <summary>
                Gets a value that indicates whether this font program may be legally 
                embedded within a document.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.IsSubsettable">
            <summary>
                Gets a value that indicates whether this font program my be subsetted.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.FontData">
            <summary>
                Gets a byte array representing a font program to be embedded 
                in a document.
            </summary>
            <remarks>
                If <see cref="P:Telerik.Web.Apoc.Layout.IFontDescriptor.IsEmbeddable"/> is <b>false</b> it is acceptable 
                for this method to return null.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontDescriptor.KerningInfo">
            <summary>
                Gets kerning information for this font.
            </summary>
            <remarks>
                If <see cref="P:Telerik.Web.Apoc.Layout.IFontDescriptor.HasKerningInfo"/> is <b>false</b> it is acceptable 
                for this method to return null.
            </remarks>
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.IFontMetric">
            <summary>
                Interface for font metric classes
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.IFontMetric.GetWidth(System.Int32)">
            <summary>
                Gets the width of a character in 1/1000ths of a point size 
                located at the supplied codepoint.
            </summary>
            <remarks>
                For a type 1 font a code point is an octal code obtained from a 
                character encoding scheme (WinAnsiEncoding, MacRomaonEncoding, etc).
                For example, the code point for the space character is 040 (octal).
                For a type 0 font a code point represents a GID (Glyph index).
            </remarks>
            <param name="charIndex">A character code point.</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.Ascender">
            <summary>
                Specifies the maximum distance characters in this font extend 
                above the base line. This is the typographic ascent for the font. 
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.Descender">
            <summary>
                Specifies the maximum distance characters in this font extend 
                below the base line. This is the typographic descent for the font. 
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.CapHeight">
            <summary>
                Gets the vertical coordinate of the top of flat captial letters.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.FirstChar">
            <summary>
                Gets the value of the first character used in the font
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.LastChar">
            <summary>
                Gets the value of the last character used in the font
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.Descriptor">
            <summary>
                Gets a reference to a font descriptor.  A descriptor is akin to 
                the PDF FontDescriptor object (see page 355 of PDF 1.4 spec).
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Layout.IFontMetric.Widths">
            <summary>
                Gets the widths of all characters in 1/1000ths of a point size.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Inline.ForeignObjectArea.getContentWidth">
            This is NOT the content width of the instream-foreign-object.
            This is the content width for a Box.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Inline.ForeignObjectArea.GetHeight">
            This is NOT the content height of the instream-foreign-object.
            This is the content height for a Box.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Inline.InlineSpace.setUnderlined(System.Boolean)">
            @param ul true if text should be underlined
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Inline.InlineSpace.setEatable(System.Boolean)">
            And eatable InlineSpace is discarded if it occurs
            as the first pending element in a LineArea
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addText(System.Char[],System.Int32,System.Int32,Telerik.Web.Apoc.Layout.LinkSet,Telerik.Web.Apoc.Layout.TextState)">
             adds text to line area
            
             @return int character position
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.AddLeader(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            adds a Leader; actually the method receives the leader properties
            and creates a leader area or an inline area which is appended to
            the children of the containing line area.
            leader pattern use-content is not implemented.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addPending">
            adds pending inline areas to the line area
            normally done, when the line area is filled and
            added as child to the parent block area
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.align(System.Int32)">
             aligns line area
            
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.verticalAlign">
            Balance (vertically) the inline areas within this line.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.changeHyphenation(Telerik.Web.Apoc.Layout.HyphenationProps)">
            sets hyphenation related traits: language, country, hyphenate, hyphenation-character
            and minimum number of character to remain one the previous line and to be on the
            next line.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.buildSimpleLeader(System.Char,System.Int32)">
            creates a leader as String out of the given char and the leader length
            and wraps it in an InlineArea which is returned
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.getLeaderAlignIndent(System.Int32,System.Int32)">
             calculates the width of space which has to be inserted before the
             start of the leader, so that all leader characters are aligned.
             is used if property leader-align is set. At the moment only the value
             for leader-align="reference-area" is supported.
            
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.getCurrentXPosition">
            calculates the used space in this line area
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.getHyphenationWord(System.Char[],System.Int32)">
            extracts a complete word from the character data
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.getWordWidth(System.String)">
            Calculates the wordWidth using the actual fontstate
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addCharacter(System.Char,Telerik.Web.Apoc.Layout.LinkSet,System.Boolean)">
            adds a single character to the line area tree
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addMapWord(System.Char,System.Text.StringBuilder)">
            Same as addWord except that characters in wordBuf is mapped
            to the current fontstate's encoding
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addWord(System.Char,System.Text.StringBuilder)">
            adds a InlineArea containing the String startChar+wordBuf to the line area children.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.canBreakMidWord">
            Checks if it's legal to break a word in the middle
            based on the current language property.
            @return true if legal to break word in the middle
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.getCharWidth(System.Char)">
            Helper method for getting the width of a unicode char
            from the current fontstate.
            This also performs some guessing on widths on various
            versions of space that might not exists in the font.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.isSpace(System.Char)">
            Helper method to determine if the character is a
            space with normal behaviour. Normal behaviour means that
            it's not non-breaking
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.isNBSP(System.Char)">
            Method to determine if the character is a nonbreaking
            space.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.isAnySpace(System.Char)">
            @return true if the character represents any kind of space
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.LineArea.addSpacedWord(System.String,Telerik.Web.Apoc.Layout.LinkSet,System.Int32,System.Int32,Telerik.Web.Apoc.Layout.TextState,System.Boolean)">
            Add a word that might contain non-breaking spaces.
            Split the word into WordArea and InlineSpace and add it.
            If addToPending is true, add to pending areas.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.LinkedRectangle">
            an object that stores a rectangle that is linked, and the LineArea
            that it is logically associated with
            @author Arved Sandstrom
            @author James Tauber
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.LinkedRectangle.link">
            the linked Rectangle
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.LinkedRectangle.lineArea">
            the associated LineArea
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.LinkedRectangle.inlineArea">
            the associated InlineArea
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.LinkSet">
            a set of rectangles on a page that are linked to a common
            destination
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.LinkSet.destination">
            the destination of the links
        </member>
        <member name="F:Telerik.Web.Apoc.Layout.LinkSet.rects">
            the set of rectangles
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.MarginInlineProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.MarginProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.Page.addBody(Telerik.Web.Apoc.Layout.BodyAreaContainer)">
            Ensure that page is set not only on B.A.C. but also on the
            three top-level reference areas.
            @param area The region-body area container (special)
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.RelativePositionProps">
            Store all hyphenation related properties on an FO.
            Public "structure" allows direct member access.
        </member>
        <member name="T:Telerik.Web.Apoc.Layout.TextState">
             This class holds information about text-decoration
            
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.TextState.getUnderlined">
            @return true if text should be underlined
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.TextState.setUnderlined(System.Boolean)">
            set text as underlined
        </member>
        <member name="M:Telerik.Web.Apoc.Layout.TextState.getOverlined">
            @return true if text should be overlined
        </member>
        <member name="T:Telerik.Pdf.BfEntryList">
            <summary>
                A collection of <see cref="T:Telerik.Pdf.BfEntry"/> instances.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.BfEntryList.Add(Telerik.Pdf.BfEntry)">
            <summary>
                Adds the supplied <see cref="T:Telerik.Pdf.BfEntry"/> to the end of the collection.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.BfEntryList.GetEnumerator">
            <summary>
                Returns an ArrayList enumerator that references a read-only version
                of the BfEntry list.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.Item(System.Int32)">
            <summary>
                Gets the <see cref="T:Telerik.Pdf.BfEntry"/> at <i>index</i>.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.Count">
            <summary>
                Gets the number of <see cref="T:Telerik.Pdf.BfEntry"/> objects contained by this 
                <see cref="T:Telerik.Pdf.BfEntryList"/>
            </summary>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.NumRanges">
            <summary>
                Returns the number of <see cref="T:Telerik.Pdf.BfEntry"/> instances that 
                represent bfrange's
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.Ranges">
            <summary>
                
            </summary>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.NumChars">
            <summary>
                Returns the number of <see cref="T:Telerik.Pdf.BfEntry"/> instances that 
                represent bfchar's
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.BfEntryList.Chars">
            <summary>
                
            </summary>
        </member>
        <member name="T:Telerik.Pdf.BfEntry">
            <summary>
                A <see cref="T:Telerik.Pdf.BfEntry"/> class can represent either a bfrange 
                or bfchar.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.BfEntry.#ctor(System.Int32,System.Int32)">
            <summary>
                Class cosntructor.
            </summary>
            <param name="startIndex"></param>
            <param name="unicodeValue"></param>
        </member>
        <member name="M:Telerik.Pdf.BfEntry.IncrementEndIndex">
            <summary>
                Increments the end index by one.
            </summary>
            <remarks>
                Incrementing the end index turns this BfEntry into a bfrange.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.BfEntry.IsRange">
            <summary>
                Returns <b>true</b> if this BfEntry represents a glyph range, i.e.
                the start index is not equal to the end index.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.BfEntry.IsChar">
            <summary>
                Returns <b>true</b> if this BfEntry represents a bfchar entry, i.e.
                the start index is equal to the end index.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.FileIdentifier">
            <summary>
                A File Identifier is described in section 8.3 of the PDF specification.
                The first string is a permanent identifier based on the contents of the file 
                at the time it was originally created, and does not change as the file is 
                incrementally updated.  The second string is a changing identifier based 
                on the file's contents the last time it was updated.
            </summary>
            <remarks>
                If this class were being use to update a PDF's file identifier, we'd need 
                to add a method to parse an existing file identifier.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.FileIdentifier.#ctor">
            <summary>
                Initialises the CreatedPart and ModifiedPart to a randomly generated GUID.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.FileIdentifier.#ctor(System.Byte[])">
            <summary>
                Initialises the CreatedPart and ModifiedPart to the passed string.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.FileIdentifier.CreatedPart">
            <summary>
                Returns the CreatedPart as a byte array.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.FileIdentifier.ModifiedPart">
            <summary>
                Returns the ModifiedPart as a byte array.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Pdf.FontLicenseException">
            <summary>
                Thrown during creation of PDF font object if the font's license
                is violated, e.g. attempting to subset a font that does not permit 
                subsetting.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.DirectoryEntry">
            <summary>
                Represents an entry in the directory table
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.DirectoryEntry.MakeTable(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Gets an instance of an <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> implementation that is 
                capable of parsing the table identified by <b>tab</b>.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.DirectoryEntry.TableName">
            <summary>
                Returns the table tag as a string
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.DirectoryEntry.Tag">
            <summary>
                Gets the table tag encoded as an unsigned 32-bite integer.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.DirectoryEntry.Offset">
            <summary>
                Gets or sets a value that represents a <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> 
                offset, i.e. the number of bytes from the beginning of the file.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.DirectoryEntry.Length">
            <summary>
                Gets or sets a value representing the number number of bytes
                a <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> object occupies in a stream.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.DirectoryEntry.CheckSum">
            <summary>
                Gets or sets value that represents a checksum of a <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/>.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontFileReader">
            <summary>
                Class designed to parse a TrueType font file.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileReader.stream">
            <summary>
                A Big Endian stream.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileReader.fontName">
            <summary>
                Used to identity a font within a TrueType collection.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileReader.header">
            <summary>
                Maps a table name (4-character string) to a <see cref="T:Telerik.Pdf.Gdi.Font.DirectoryEntry"/>
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileReader.tableCache">
            <summary>
                A dictionary of cached <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> instances.  
                The index is the table name.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileReader.mappings">
            <summary>
                Maps a glyph index to a subset index.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.#ctor(System.IO.MemoryStream)">
            <summary>
                Class constructor.
            </summary>
            <param name="stream">Font data stream.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.#ctor(System.IO.MemoryStream,System.String)">
            <summary>
                Class constructor.
            </summary>
            <param name="stream">Font data stream.</param>
            <param name="fontName">Name of a font in a TrueType collection.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.ContainsTable(System.String)">
            <summary>
                Gets a value indicating whether or not this font contains the 
                supplied table.
            </summary>
            <param name="tableName">A table name.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.GetTable(System.String)">
            <summary>
                Gets a reference to the table structure identified by <i>tableName</i>
            </summary>
            <remarks>
                Only the following tables are supported: 
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Head"/> - Font header,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Hhea"/> - Horizontal header,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Hmtx"/> - Horizontal metrics,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Maxp"/> - Maximum profile,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Loca"/> - Index to location, 
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Glyf"/> - Glyf data,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Cvt"/> - Control value,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Prep"/> - Control value program,
                <see cref="F:Telerik.Pdf.Gdi.Font.TableNames.Fpgm"/> - Font program
            </remarks>
            <param name="tableName">A 4-character code identifying a table.</param>
            <exception cref="T:System.ArgumentException">
                If <b>tableName</b> does not represent a table in this font.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.GetDictionaryEntry(System.String)">
            <summary>
                Gets a <see cref="T:Telerik.Pdf.Gdi.Font.DirectoryEntry"/> object for the supplied table.
            </summary>
            <param name="tableName">A 4-character code identifying a table.</param>
            <returns>
                A <see cref="T:Telerik.Pdf.Gdi.Font.DirectoryEntry"/> object or null if the table cannot 
                be located.
            </returns>
            <exception cref="T:System.ArgumentException">
                If <b>tag</b> does not represent a table in this font.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.ReadTableHeaders">
            <summary>
                Reads the Offset and Directory tables.  If the FontFileStream represents 
                a TrueType collection, this method will look for the aforementioned 
                tables belonging to <i>fontName</i>.
            </summary>
            <remarks>
                This method can handle a TrueType collection.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.ReadRequiredTables">
            <summary>
                Caches the following tables: 'head', 'hhea', 'maxp', 'loca'
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileReader.OffsetStream(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Sets the stream position to the offset in the supplied directory
                entry. Also ensures that the FontFileStream has enough bytes 
                available to read a font table.  Throws an exception if this 
                condition is not met.
            </summary>
            <param name="entry"></param>
            <exception cref="T:System.ArgumentException">
                If the supplied stream does not contain enough data.
            </exception>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileReader.IndexMappings">
            <summary>
                Gets or sets a dictionary containing glyph index to subset 
                index mappings.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileReader.Stream">
            <summary>
                Gets the underlying <see cref="T:Telerik.Pdf.Gdi.Font.FontFileStream"/>.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileReader.TableCount">
            <summary>
                Gets the number tables.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontFileStream">
            <summary>
                Class designed to read and write primitive datatypes from/to a 
                TrueType font file.
            </summary>
            <remarks>
                <p>All OpenType fonts use Motorola-style byte ordering (Big Endian).</p>
                <p>The following table lists the primitives and their definition. 
                Note the difference between the .NET CLR definition of certain 
                types and the TrueType definition.</p>
                <p>
                BYTE         8-bit unsigned integer. 
                CHAR         8-bit signed integer. 
                USHORT       16-bit unsigned integer. 
                SHORT        16-bit signed integer. 
                ULONG        32-bit unsigned integer. 
                LONG         32-bit signed integer. 
                Fixed        32-bit signed fixed-point number (16.16) 
                FWORD        16-bit signed integer (SHORT) that describes a 
                             quantity in FUnits. 
                UFWORD       16-bit unsigned integer (USHORT) that describes a 
                             quantity in FUnits. 
                F2DOT14      16-bit signed fixed number with the low 14 bits of 
                             fraction (2.14). 
                LONGDATETIME Date represented in number of seconds since 12:00 
                             midnight, January 1, 1904. The value is represented 
                             as a signed 64-bit integer. 
                Tag          Array of four uint8s (length = 32 bits) used to identify 
                             a script, language system, feature, or baseline 
                GlyphID      Glyph index number, same as uint16(length = 16 bits) 
                Offset       Offset to a table, same as uint16 (length = 16 bits), 
                             NULL offset = 0x0000 
                </p>
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.#ctor(System.Byte[])">
            <summary>
                Initialises a new instance of the <see cref="T:Telerik.Pdf.Gdi.Font.FontFileStream"/> 
                class using the supplied byte array as the underlying buffer.
            </summary>
            <param name="data">The font data encoded in a byte array.</param>
            <exception cref="T:System.ArgumentNullException">
                <i>data</i> is a null reference.
            </exception>
            <exception cref="T:System.ArgumentException">
                <i>data</i> is a zero-length array.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.#ctor(System.IO.Stream)">
            <summary>
                Initialises a new instance of the <see cref="T:Telerik.Pdf.Gdi.Font.FontFileStream"/>
                class using the supplied stream as the underlying buffer.
            </summary>
            <param name="stream">Reference to an existing stream.</param>
            <exception cref="T:System.ArgumentNullException">
                <i>stream</i> is a null reference.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadByte">
            <summary>
                Reads an unsigned byte from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteByte(System.Byte)">
            <summary>
                Writes an unsigned byte from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadChar">
            <summary>
                Reads an signed byte from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteChar(System.SByte)">
            <summary>
                Writes a signed byte from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadShort">
            <summary>
                Reads a short (16-bit signed integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteShort(System.Int32)">
            <summary>
                Writes a short (16-bit signed integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadFWord">
            <summary>
                Reads a short (16-bit signed integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteFWord(System.Int32)">
            <summary>
                Writes a short (16-bit signed integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadUShort">
            <summary>
                Reads a int (16-bit unsigned integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteUShort(System.Int32)">
            <summary>
                Writes a int (16-bit unsigned integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadUFWord">
            <summary>
                Reads a int (16-bit unsigned integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteUFWord(System.Int32)">
            <summary>
                Writes a int (16-bit unsigned integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadLong">
            <summary>
                Reads an int (32-bit signed integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteLong(System.Int32)">
            <summary>
                Writes an int (32-bit signed integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadULong">
            <summary>
                Reads a int (32-bit unsigned integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteULong(System.Int64)">
            <summary>
                Writes a int (32-bit unsigned integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadFixed">
            <summary>
                Reads an int (32-bit signed integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteFixed(System.Int32)">
            <summary>
                Writes an int (32-bit unsigned integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadLongDateTime">
            <summary>
                Reads a long (64-bit signed integer) from the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteDateTime(System.Int64)">
            <summary>
                Writes a long (64-bit signed integer) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.ReadTag">
            <summary>
                Reads a tag (array of four bytes) from the font stream.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.WriteTag(System.Byte[])">
            <summary>
                Writes a tab (array of four bytes) to the font file.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.Pad">
            <summary>
                Ensures the stream is padded on a 4-byte boundary.
            </summary>
            <remarks>
                This method will output between 0 and 3 bytes to the stream.
            </remarks>
            <returns>
                A value between 0 and 3 (inclusive).
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.Write(System.Byte[],System.Int32,System.Int32)">
            <summary>
                Writes a sequence of bytes to the underlying stream.
            </summary>
            <param name="buffer"></param>
            <param name="offset"></param>
            <param name="count"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.Read(System.Byte[],System.Int32,System.Int32)">
            <summary>
                Reads a block of bytes from the current stream and writes 
                the data to buffer.
            </summary>
            <param name="buffer">A byte buffer big enough to store <i>count</i> bytes.</param>
            <param name="offset">The byte offset in buffer to begin reading.</param>
            <param name="count">Number of bytes to read.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.Skip(System.Int64)">
            <summary>
                Offsets the stream position by the supplied number of bytes.
            </summary>
            <param name="offset"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.SetRestorePoint">
            <summary>
                Saves the current stream position onto a marker stack.
            </summary>
            <returns>
                Returns the current stream position.
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileStream.Restore">
            <summary>
                Sets the stream <see cref="P:Telerik.Pdf.Gdi.Font.FontFileStream.Position"/> using the marker at the 
                head of the marker stack.
            </summary>
            <returns>
                Returns the stream position before it was reset.
            </returns>
            <exception cref="T:System.InvalidOperationException">
                If the markers stack is empty.
            </exception>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileStream.Position">
            <summary>
                Gets or sets the current position of the font stream.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileStream.Length">
            <summary>
                Gets the length of the font stream in bytes.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontFileWriter">
            <summary>
                A specialised stream writer for creating OpenType fonts.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileWriter.OffsetTableSize">
            <summary>
                Size of the offset table in bytes.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileWriter.stream">
            <summary>
                The underlying stream.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontFileWriter.tables">
            <summary>
                List of font tables to write.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.#ctor(System.IO.Stream)">
            <summary>
                Creates a new instance of the <see cref="T:Telerik.Pdf.Gdi.Font.FontFileWriter"/> class
                using <i>stream</i> as the underlying stream object.
            </summary>
            <param name="stream"></param>
            <exception cref="T:System.ArgumentException">
                If <i>stream</i> is not writable.
            </exception>
            <exception cref="T:System.ArgumentNullException">
                If <i>streamm</i> is a null reference.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.Write(Telerik.Pdf.Gdi.Font.FontTable)">
            <summary>
                Queues the supplied <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> for writing 
                to the underlying stream.
            </summary>
            <remarks>
                The method will not immediately write the supplied font 
                table to the underlying stream.  Instead it queues the 
                font table since the offset table must be written out 
                before any tables.
            </remarks>
            <param name="table"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.Close">
            <summary>
                Writes the header and font tables to the underlying stream.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.WriteChecksumAdjustment">
            <summary>
                Updates the checkSumAdjustment field in the head table.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.WriteTables">
            <summary>
                Writes out each table to the font stream.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.WriteOffsetTable">
            <summary>
                Writes the offset table that appears at the beginning of 
                every TrueType/OpenType font.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.SkipTableDirectory">
            <summary>
                Does not actually write the table directory - simply "allocates"
                space for it in the stream.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.MaxPow2(System.Int32)">
            <summary>
                Returns the maximum power of 2 &lt;= max
            </summary>
            <param name="max"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.CalculateCheckSumAdjustment">
            <summary>
                Calculates the checksum of the entire font.
            </summary>
            <remarks>
                The underlying <see cref="T:Telerik.Pdf.Gdi.Font.FontFileStream"/> must be aligned on
                a 4-byte boundary.
            </remarks>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontFileWriter.CalculateCheckSum(System.Int64)">
            <summary>
                Calculates the checksum of a <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/>.
            </summary>
            <remarks>
                The supplied <i>stream</i> must be positioned at the beginning of 
                the table.
            </remarks>
            <param name="length"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontFileWriter.Stream">
            <summary>
                Gets the underlying <see cref="T:Telerik.Pdf.Gdi.Font.FontFileStream"/>.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontSubset">
            <summary>
                Generates a subset from a TrueType font.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontSubset.#ctor(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Creates a new instance of the FontSubset class.
            </summary>
            <param name="reader">TrueType font parser.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontSubset.Generate(System.IO.MemoryStream)">
            <summary>
                Writes the font subset to the supplied output stream.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyphReader.ReadGlyph(System.Int32)">
            <summary>
                Reads a glyph description from the specified offset.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyphReader.ReadCompositeGlyph(Telerik.Pdf.Gdi.Font.FontFileStream,Telerik.Pdf.Gdi.Font.Glyph)">
            <summary>
                Populate the <i>composites</i>IList containing all child glyphs 
                that this glyph uses.
            </summary>
            <remarks>
                The <i>stream</i> parameter must be positioned 10 bytes from 
                the beginning of the glyph description, i.e. the flags field.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyphReader.GetGlyphLength(System.Int32)">
            <summary>
                Gets the length of the glyph description in bytes at 
                index <i>index</i>.
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.BitMasks">
            <summary>
                Bit masks of the flags field in a composite glyph.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.IndexMappings">
            <summary>
                Utility class that stores a list of glyph indices and their 
                asociated subset indices.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.IndexMappings.glyphToSubset">
            <summary>
                Maps a glyph index to a subset index.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.IndexMappings.subsetToGlyph">
            <summary>
                Maps a subset index to glyph index.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.#ctor">
            <summary>
                Class constructor.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.HasMapping(System.Int32)">
            <summary>
                Determines whether a mapping exists for the supplied glyph index.
            </summary>
            <param name="glyphIndex"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.Map(System.Int32)">
            <summary>
                Returns the subset index for <i>glyphIndex</i>.  If a subset 
                index does not exist for <i>glyphIndex</i> one is generated.
            </summary>
            <param name="glyphIndex"></param>
            <returns>A subset index.</returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.Add(System.Int32[])">
            <summary>
                Adds the list of supplied glyph indices to the index mappings using 
                the next available subset index for each glyph index.
            </summary>
            <param name="glyphIndices"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.GetSubsetIndex(System.Int32)">
            <summary>
                Gets the subset index of <i>glyphIndex</i>.
            </summary>
            <param name="glyphIndex"></param>
            <returns>
                A glyph index or <b>-1</b> if a glyph to subset mapping does not exist.
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexMappings.GetGlyphIndex(System.Int32)">
            <summary>
                Gets the glyph index of <i>subsetIndex</i>.
            </summary>
            <param name="subsetIndex"></param>
            <returns>
                A subset index or <b>-1</b> if a subset to glyph mapping does not exist.
            </returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.IndexMappings.Count">
            <summary>
                Gets the number of glyph to subset index mappings.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.IndexMappings.GlyphIndices">
            <summary>
                Gets a list of glyph indices sorted in ascending order.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.IndexMappings.SubsetIndices">
            <summary>
                Gets a list of subset indices sorted in ascending order.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.KerningPairs.pairs">
            <summary>
                Key - Kerning pair identifier
                Value - Kerning amount
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningPairs.#ctor">
            <summary>
                Creates an instance of KerningPairs allocating space for 
                100 kerning pairs.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningPairs.#ctor(System.Int32)">
            <summary>
                Creates an instance of KerningPairs allocating space for 
                <i>numPairs</i> kerning pairs.
            </summary>
            <param name="numPairs"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningPairs.HasKerning(System.Int32,System.Int32)">
            <summary>
                Returns true if a kerning value exists for the supplied 
                glyph index pair.
            </summary>
            <param name="left">Glyph index for left-hand glyph.</param>
            <param name="right">Glyph index for right-hand glyph.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningPairs.Add(System.Int32,System.Int32,System.Int32)">
            <summary>
                Creates a new kerning pair.
            </summary>
            <remarks>
                This method will ignore duplicates.
            </remarks>
            <param name="left">The glyph index for the left-hand glyph in the kerning pair.</param>
            <param name="right">The glyph index for the right-hand glyph in the kerning pair. </param>
            <param name="value">The kerning value for the supplied pair.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningPairs.GetIndex(System.Int32,System.Int32)">
            <summary>
                Returns a kerning pair identifier.
            </summary>
            <param name="left"></param>
            <param name="right"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.KerningPairs.Item(System.Int32,System.Int32)">
            <summary>
                Gets the kerning amount for the supplied glyph index pair.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.KerningPairs.Length">
            <summary>
                Gets the number of kernings pairs.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.PrimitiveSizes">
            <summary>
                A helper designed that provides the size of each TrueType primitives.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.TableNames">
            <summary>
                List of all TrueType and OpenType tables
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.TableNames.ToUint(System.String)">
            <summary>
                Converts one of the predefined table names to an unsigned integer.
            </summary>
            <param name="tableName"></param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.ControlValueProgramTable">
            <summary>
                Class that represents the Control Value Program table ('prep').
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontTable">
            <summary>
                Class derived by all TrueType table classes.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontTable.directoryEntry">
            <summary>
                The dictionary entry for this table.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontTable.#ctor(System.String,Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Class constructor
            </summary>
            <param name="tableName">The table name.</param>
            <param name="entry">Table directory entry.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of a table from the current position in 
                the supplied stream.
            </summary>
            <param name="reader"></param>
            <exception cref="T:System.ArgumentException">
                If the supplied stream does not contain enough data.
            </exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes the contents of a table to the supplied writer.
            </summary>
            <remarks>
                This method should not be concerned with aligning the 
                table output on the 4-byte boundary.
            </remarks>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontTable.Entry">
            <summary>
                Gets or sets a directory entry for this table.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontTable.Name">
            <summary>
                Gets the unique name of this table as a 4-character string.
            </summary>
            <remarks>
                Note that some TrueType tables are only 3 characters long 
                (e.g. 'cvt').  In this case the returned string will be padded 
                with a extra space at the end of the string.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontTable.Tag">
            <summary>
                Gets the table name encoded as a 32-bit unsigned integer.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.ControlValueProgramTable.instructions">
            <summary>
                Set of instructions executed whenever point size or font 
                or transformation change.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueProgramTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.Gdi.Font.ControlValueProgramTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueProgramTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "prep" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueProgramTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes out the array of instructions to the supplied stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.ControlValueTable">
            <summary>
                Class that represents the Control Value table ('cvt').
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.ControlValueTable.values">
            <summary>
                List of N values referenceable by instructions. 
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.Gdi.Font.ControlValueTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "cvt" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.ControlValueTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes out the array of values to the supplied stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.ControlValueTable.Count">
            <summary>
                Gets the value representing the number of values that can 
                be referenced by instructions.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontProgramTable">
            <summary>
                Class that represents the Font Program table ('fpgm').
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.FontProgramTable.instructions">
            <summary>
                List of N instructions. 
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontProgramTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.Gdi.Font.FontProgramTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontProgramTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "fpgm" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontProgramTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes out the array of instructions to the supplied stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.FontProgramTable.Count">
            <summary>
                Gets the value representing the number of instructions 
                in the font program.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.FontTableFactory">
            <summary>
                Instantiates a font table from a table tag.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontTableFactory.#ctor">
            <summary>
                Prevent instantiation since this is a factory class.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.FontTableFactory.Make(System.String,Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Creates an instance of a class that implements the FontTable interface.
            </summary>
            <param name="tableName">
                One of the pre-defined TrueType tables from the <see cref="T:Telerik.Pdf.Gdi.Font.TableNames"/> class.
            </param>
            <param name="reader"></param>
            <returns>
                A subclass of <see cref="T:Telerik.Pdf.Gdi.Font.FontTable"/> that is capable of parsing 
                a TrueType table.
            </returns>
            <exception cref="T:System.ArgumentException">
                If a class capable of parsing <i>tableName</i> is not available.
            </exception>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.GlyfDataTable">
            <summary>
                Class that represents the Glyf Data table ('glyf').
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/glyf.htm
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.GlyfDataTable.glyphDescriptions">
            <summary>
                Maps a glyph index to a <see cref="T:Telerik.Pdf.Gdi.Font.Glyph"/> object.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyfDataTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.Gdi.Font.GlyfDataTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyfDataTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "glyf" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.GlyfDataTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes the contents of the glyf table to the supplied stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.GlyfDataTable.Item(System.Int32)">
            <summary>
                Gets the <see cref="T:Telerik.Pdf.Gdi.Font.Glyph"/> instance located at <i>glyphIndex</i>
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.GlyfDataTable.Count">
            <summary>
                Gets the number of glyphs.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.Glyph">
            <summary>
                Represents either a simple or composite glyph description from
                the 'glyf' table.
            </summary>
            <remarks>
                This class is nothing more than a wrapper around 
                a byte array.
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.Glyph.glyphIndex">
            <summary>
                The index of this glyph as obtained from the 'loca' table.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.Glyph.glyphData">
            <summary>
                Contains glyph description as raw data.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.Glyph.children">
            <summary>
                List of composite glyph indices.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.Glyph.#ctor(System.Int32)">
            <summary>
                Class constructor.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.Glyph.SetGlyphData(System.Byte[])">
            <summary>
                Sets the glyph data (duh!).
            </summary>
            <param name="glyphData"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.Glyph.AddChild(System.Int32)">
            <summary>
                Add the supplied glyph index to list of children.
            </summary>
            <param name="glyphIndex"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.Glyph.Write(Telerik.Pdf.Gdi.Font.FontFileStream)">
            <summary>
                Writes a glyph description to the supplied stream.
            </summary>
            <param name="stream"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.Glyph.Index">
            <summary>
                Gets or sets the index of this glyph.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.Glyph.Length">
            <summary>
                Gets the length of the glyph data buffer.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.Glyph.Children">
            <summary>
                Gets a ilst of child glyph indices.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.Glyph.IsComposite">
            <summary>
                Gets a value indicating whether or not this glyph represents 
                a composite glyph.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.HeaderTable">
            <summary>
                Class that represents the Font Header table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/head.htm
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HeaderTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Class constructor.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HeaderTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "head" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HeaderTable.GetDate(System.Int64)">
            <summary>
                Returns a DateTime instance which is the result of adding <i>seconds</i>
                to BaseDate.  If an exception occurs, BaseDate is returned.
            </summary>
            <param name="seconds"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HeaderTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Writes the contents of the head table to the supplied stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.HeaderTable.IsShortFormat">
            <summary>
                Gets a value that indicates whether glyph offsets in the 
                loca table are stored as a int or ulong.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable">
            <summary>
                Class that represents the Horizontal Header table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/hhea.htm
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.versionNo">
            <summary>
                Table version number 0x00010000 for version 1.0. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.ascender">
            <summary>
                Typographic ascent. (Distance from baseline of highest ascender).
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.decender">
            <summary>
                Typographic descent. (Distance from baseline of lowest descender).
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.lineGap">
            <summary>
                Typographic line gap.  Negative LineGap values are treated as zero 
                in Windows 3.1, System 6, and System 7. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.advanceWidthMax">
            <summary>
                Maximum advance width value in 'hmtx' table. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.minLeftSideBearing">
            <summary>
                Minimum left sidebearing value in 'hmtx' table.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.minRightSideBearing">
            <summary>
                Minimum right sidebearing value.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.xMaxExtent">
            <summary>
                Max(lsb + (xMax - xMin)).
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.caretSlopeRise">
            <summary>
                Used to calculate the slope of the cursor (rise/run); 1 for vertical.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.caretSlopeRun">
            <summary>
                0 for vertical.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.caretOffset">
            <summary>
                The amount by which a slanted highlight on a glyph needs to be 
                shifted to produce the best appearance. Set to 0 for non-slanted fonts.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.metricDataFormat">
            <summary>
                0 for current format.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.numberOfHMetrics">
            <summary>
                Number of hMetric entries in 'hmtx' table.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Class constructor.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "hhea" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.HorizontalHeaderTable.HMetricCount">
            <summary>
                Gets the number of horiztonal metrics.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.HorizontalMetric">
            <summary>
                Summary description for HorizontalMetric.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable">
            <summary>
                Class that represents the Horizontal Metrics ('hmtx') table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/hmtx.htm
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Initialises a new instance of the 
                <see cref="T:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry,System.Int32)">
            <summary>
                Initialises a new instance of the HorizontalMetricsTable class.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "hmtx" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable.Count">
            <summary>
                Returns the number of horizontal metrics stored in the 
                hmtx table.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.HorizontalMetricsTable.Item(System.Int32)">
            <summary>
                Gets the <see cref="T:Telerik.Pdf.Gdi.Font.HorizontalMetric"/> located at <i>index</i>.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.IndexToLocationTable">
            <summary>
                Class that represents the Index To Location ('loca') table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/loca.htm
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexToLocationTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Initialises a new instance of the 
                <see cref="T:Telerik.Pdf.Gdi.Font.IndexToLocationTable"/> class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexToLocationTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry,System.Int32)">
            <summary>
                Initialises a new instance of the IndexToLocationTable class.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexToLocationTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "loca" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexToLocationTable.Clear">
            <summary>
                Removes all offsets.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.IndexToLocationTable.AddOffset(System.Int32)">
            <summary>
                Includes the supplied offset.
            </summary>
            <param name="offset"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.IndexToLocationTable.Count">
            <summary>
                Gets the number of glyph offsets.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.IndexToLocationTable.Item(System.Int32)">
            <summary>
                Gets or sets the glyph offset at index <i>index</i>.
            </summary>
            <param name="index">A glyph index.</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.KerningTable">
            <summary>
                Class that represents the Kerning table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/kern.htm
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Class constructor.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "kern" table from the current position 
                in the supplied stream.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.KerningTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                No supported.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.KerningTable.HasKerningInfo">
            <summary>
                Gets a boolean value that indicates this font contains format 0
                kerning information.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.KerningTable.KerningPairs">
            <summary>
                Returns a collection of kerning pairs.
            </summary>
            <remarks>
                If <i>HasKerningInfo</i> returns <b>false</b>, this method will 
                always return null.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.MaximumProfileTable">
            <summary>
                Class that represents the Horizontal Metrics ('maxp') table.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/maxp.htm
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.versionNo">
            <summary>
                Table version number
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.numGlyphs">
            <summary>
                The number of glyphs in the font.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxPoints">
            <summary>
                Maximum points in a non-composite glyph. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxContours">
            <summary>
                Maximum contours in a non-composite glyph.  Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxCompositePoints">
            <summary>
                Maximum points in a composite glyph.  Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxCompositeContours">
            <summary>
                Maximum contours in a composite glyph.  Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxZones">
            <summary>
                1 if instructions do not use the twilight zone (Z0), or 
                2 if instructions do use Z0; should be set to 2 in most 
                cases.  Only set if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxTwilightPoints">
            <summary>
                Maximum points used in Z0.   Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxStorage">
            <summary>
                Number of Storage Area locations.  Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxFunctionDefs">
            <summary>
                Number of FDEFs.   Only set if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxInstructionDefs">
            <summary>
                Number of IDEFs.   Only set if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxStackElements">
            <summary>
                Maximum stack depth2.  Only set if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxSizeOfInstructions">
            <summary>
                Maximum byte count for glyph instructions.  Only set 
                if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxComponentElements">
            <summary>
                Maximum number of components referenced at "top level" 
                for any composite glyph.   Only set if 
                <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.MaximumProfileTable.maxComponentDepth">
            <summary>
                Maximum levels of recursion; 1 for simple components. 
                Only set if <i>versionNo</i> is 1.0.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.MaximumProfileTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Initialises a new instance of the <see cref="T:Telerik.Pdf.Gdi.Font.MaximumProfileTable"/>
                class.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.MaximumProfileTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "maxp" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.MaximumProfileTable.GlyphCount">
            <summary>
                Gets the number of glyphs
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.NameTable">
            <summary>
                Class that represents the Naming ('name') table
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/name.htm
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.NameTable.storageOffset">
            <summary>
                Offset to start of string storage (from start of table).
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.NameTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "name" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.NameTable.ReadString(Telerik.Pdf.Gdi.Font.FontFileStream,System.Int32,System.Int32)">
            <summary>
                Reads a string from the storage area beginning at <i>offset</i>
                consisting of <i>length</i> bytes.  The returned string will be 
                converted using the Unicode encoding.
            </summary>
            <param name="stream">Big-endian font stream.</param>
            <param name="stringOffset">
                The offset in bytes from the beginning of the string storage area.
             </param>
            <param name="length">The length of the string in bytes.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.NameTable.Write(Telerik.Pdf.Gdi.Font.FontFileWriter)">
            <summary>
                Not supported.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.NameTable.FamilyName">
            <summary>
                Get the font family name.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.NameTable.FullName">
            <summary>
                Gets the font full name composed of the family name and the 
                subfamily name.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.OS2Table">
            <summary>
                Class that represents the OS/2 ('OS/2') table
            </summary>
            <remarks>
                <p>For detailed information on the OS/2 table, visit the following link:
                http://www.microsoft.com/typography/otspec/os2.htm</p>
                <p>For more details on the Panose classification metrics, visit the following URL:
                http://www.panose.com/hardware/pan2.asp</p>
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.OS2Table.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "os/2" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsItalic">
            <summary>
                Gets a boolean value that indicates whether this font contains 
                italic characters.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsRegular">
            <summary>
                Gets a boolean value that indicates whether characters are 
                in the standard weight/style.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsBold">
            <summary>
                Gets a boolean value that indicates whether characters possess
                a weight greater than or equal to 700.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsMonospaced">
            <summary>
                Gets a boolean value that indicates whether this font contains 
                characters that all have the same width.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsSymbolic">
            <summary>
                Gets a boolean value that indicates whether this font contains 
                special characters such as dingbats, icons, etc.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsSerif">
            <summary>
                Gets a boolean value that indicates whether characters  
                do possess serifs
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsScript">
            <summary>
                Gets a boolean value that indicates whether characters 
                are designed to simulate hand writing.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsSansSerif">
            <summary>
                Gets a boolean value that indicates whether characters  
                do not possess serifs
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsEmbeddable">
            <summary>
                Gets a boolean value that indicates whether this font may be 
                legally embedded.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.OS2Table.IsSubsettable">
            <summary>
                Gets a boolean value that indicates whether this font may be 
                subsetted.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.PostTable">
            <summary>
                Class that represents the PostScript ('post') table
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/post.htm
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.version">
            <summary>
                0x00010000 for version 1.0 
                0x00020000 for version 2.0 
                0x00025000 for version 2.5 (deprecated) 
                0x00030000 for version 3.0 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.italicAngle">
            <summary>
                Italic angle in counter-clockwise degrees from the vertical. 
                Zero for upright text, negative for text that leans to the 
                right (forward). 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.underlinePosition">
            <summary>
                This is the suggested distance of the top of the underline from 
                the baseline (negative values indicate below baseline). 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.underlineThickness">
            <summary>
                Suggested values for the underline thickness. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.fixedPitch">
            <summary>
                Set to 0 if the font is proportionally spaced, non-zero if the 
                font is not proportionally spaced (i.e. monospaced). 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.minMemType42">
            <summary>
                Minimum memory usage when an OpenType font is downloaded. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.maxMemType42">
            <summary>
                Maximum memory usage when an OpenType font is downloaded. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.minMemType1">
            <summary>
                Minimum memory usage when an OpenType font is downloaded 
                as a Type 1 font. 
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.Font.PostTable.maxMemType1">
            <summary>
                Maximum memory usage when an OpenType font is downloaded 
                as a Type 1 font. 
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.PostTable.#ctor(Telerik.Pdf.Gdi.Font.DirectoryEntry)">
            <summary>
                Class constructor.
            </summary>
            <param name="entry"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.PostTable.Read(Telerik.Pdf.Gdi.Font.FontFileReader)">
            <summary>
                Reads the contents of the "post" table from the supplied stream 
                at the current position.
            </summary>
            <param name="reader"></param>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.PostTable.IsFixedPitch">
            <summary>
                Gets a boolean value that indicates whether this font is 
                proportionally spaced (fixed pitch) or not.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Font.TrueTypeHeader">
            <summary>
                Class that represents the Offset and Directory tables.
            </summary>
            <remarks>
                http://www.microsoft.com/typography/otspec/otff.htm
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Gdi.Font.TrueTypeHeader.Contains(System.String)">
            <summary>
                Gets a value indicating whether or not this font contains the 
                supplied table.
            </summary>
            <param name="tableName">A table name.</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.TrueTypeHeader.Item(System.String)">
            <summary>
                Gets a DirectoryEntry object for the supplied table.
            </summary>
            <param name="tableName">A 4-character code identifying a table.</param>
            <returns>
                A DirectoryEntry object or null if the table cannot be located.
            </returns>
            <exception cref="T:System.ArgumentException">
                If <b>tableName</b> does not represent a table in this font.
            </exception>
        </member>
        <member name="P:Telerik.Pdf.Gdi.Font.TrueTypeHeader.Count">
            <summary>
                Gets the number tables.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiDeviceContent">
            <summary>
                A very lightweight wrapper around a Win32 device context
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.GdiDeviceContent.hDC">
            <summary>
                Pointer to device context created by ::CreateDC()
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiDeviceContent.#ctor">
            <summary>
                Creates a new device context that matches the desktop display surface
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiDeviceContent.Finalize">
            <summary>
                Invokes <see cref="M:Telerik.Pdf.Gdi.GdiDeviceContent.Dispose"/>.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiDeviceContent.Dispose(System.Boolean)">
            <summary>
                Delete the device context freeing the associated memory.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiDeviceContent.SelectFont(Telerik.Pdf.Gdi.GdiFont)">
            <summary>
                Selects a font into a device context (DC). The new object 
                replaces the previous object of the same type. 
            </summary>
            <param name="font">Handle to object.</param>
            <returns>A handle to the object being replaced.</returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiDeviceContent.GetCurrentObject(Telerik.Pdf.Gdi.GdiDcObject)">
            <summary>
                Gets a handle to an object of the specified type that has been 
                selected into this device context. 
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiDeviceContent.Handle">
            <summary>
                Returns a handle to the underlying device context
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiFont">
            <summary>
                A thin wrapper around a handle to a font
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFont.#ctor(System.IntPtr,System.String,System.Int32)">
            <summary>
                Class constructor
            </summary>
            <param name="hFont">A handle to an existing font.</param>
            <param name="faceName">The typeface name of a font.</param>
            <param name="height">The height of a font.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFont.Finalize">
            <summary>
                Class destructor
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFont.CreateFont(System.String,System.Int32,System.Boolean,System.Boolean)">
            <summary>
                Creates a font based on the supplied typeface name and size.
            </summary>
            <param name="faceName">The typeface name of a font.</param>
            <param name="height">
                The height, in logical units, of the font's character 
                cell or character.
            </param>
            <param name="bold">
            </param>
            <param name="italic">
            </param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFont.CreateDesignFont(System.String,System.Boolean,System.Boolean,Telerik.Pdf.Gdi.GdiDeviceContent)">
            <summary>
                Creates a font whose height is equal to the negative value 
                of the EM Square
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiFontCreator">
            <summary>
                Retrieves all pertinent TrueType tables by invoking GetFontData.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiFontEnumerator">
            <summary>
                Summary description for GdiFontEnumerator.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontEnumerator.#ctor(Telerik.Pdf.Gdi.GdiDeviceContent)">
            <summary>
                Class constructor.
            </summary>
            <param name="dc">A non-null reference to a wrapper around a GDI device context.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontEnumerator.GetStyles(System.String)">
            <summary>
                Returns a list of font styles associated with <i>familyName</i>.
            </summary>
            <param name="familyName"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontEnumerator.FamilyNames">
            <summary>
                Returns a list of font family names sorted in ascending order.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiFontMetrics">
            <summary>
                Class that obtains OutlineTextMetrics for a TrueType font
            </summary>
            <example>
            </example>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontMetrics.GetFontData">
            <summary>
                Gets font metric data for a TrueType font or TrueType collection.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontMetrics.GetWidths">
            <summary>
                Retrieves the widths, in PDF units, of consecutive glyphs.
            </summary>
            <returns>
                An array of integers whose size is equal to the number of glyphs 
                specified in the 'maxp' table.
                The width at location 0 is the width of glyph with index 0, 
                The width at location 1 is the width of glyph with index 1, 
                etc...
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontMetrics.GetAnsiWidths">
            <summary>
                Returns the width, in PDF units, of consecutive glyphs for the 
                WinAnsiEncoding only.
            </summary>
            <returns>An array consisting of 256 elements.</returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiFontMetrics.MapCharacter(System.Char)">
            <summary>
                Translates the supplied character to a glyph index using the 
                currently selected font.
            </summary>
            <param name="c">A unicode character.</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.FaceName">
            <summary>
                Retrieves the typeface name of the font that is selected into the 
                device context supplied to the GdiFontMetrics constructor. 
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.EmSquare">
            <summary>
                Specifies the number of logical units defining the x- or y-dimension 
                of the em square for this font.  The common value for EmSquare is 2048.
            </summary>
            <remarks>
                The number of units in the x- and y-directions are always the same 
                for an em square.) 
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.ItalicAngle">
            <summary>
                Gets the main italic angle of the font expressed in tenths of 
                a degree counterclockwise from the vertical.
            </summary>
            <remarks>
                Regular (roman) fonts have a value of zero. Italic fonts typically 
                have a negative italic angle (that is, they lean to the right). 
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.Ascent">
            <summary>
                Specifies the maximum distance characters in this font extend 
                above the base line. This is the typographic ascent for the font. 
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.Descent">
            <summary>
                Specifies the maximum distance characters in this font extend 
                below the base line. This is the typographic descent for the font. 
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.CapHeight">
            <summary>
                Gets the distance between the baseline and the approximate 
                height of uppercase letters.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.XHeight">
            <summary>
                Gets the distance between the baseline and the approximate 
                height of non-ascending lowercase letters.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.StemV">
            <summary>
                TODO: The thickness, measured horizontally, of the dominant vertical 
                stems of the glyphs in the font.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.FirstChar">
            <summary>
                Gets the value of the first character defined in the font
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.LastChar">
            <summary>
                Gets the value of the last character defined in the font
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.AverageWidth">
            <summary>
                Gets the average width of glyphs in a font.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.MaxWidth">
            <summary>
                Gets the maximum width of glyphs in a font.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.IsEmbeddable">
            <summary>
                Gets a value indicating whether the font can be legally embedded 
                within a document.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.IsSubsettable">
            <summary>
                Gets a value indicating whether the font can be legally subsetted.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.BoundingBox">
            <summary>
                Gets the font's bounding box.
            </summary>
            <remarks>
                This is the smallest rectangle enclosing the shape that would 
                result if all the glyphs of the font were placed with their 
                origins cooincident and then filled.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.Flags">
            <summary>
                Gets a collection of flags defining various characteristics of 
                a font (e.g. serif or sans-serif, symbolic, etc).
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.KerningPairs">
            <summary>
                Gets a collection of kerning pairs.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiFontMetrics.AnsiKerningPairs">
            <summary>
                Gets a collection of kerning pairs for characters defined in 
                the WinAnsiEncoding scheme only.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiKerningPairs.#ctor(Telerik.Pdf.Gdi.Font.KerningPairs,Telerik.Pdf.Gdi.PdfUnitConverter)">
            <summary>
                Class constructor.
            </summary>
            <param name="pairs">Kerning pairs read from the TrueType font file.</param>
            <param name="converter">Class to convert from TTF to PDF units.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiKerningPairs.HasPair(System.Int32,System.Int32)">
            <summary>
                Returns true if a kerning value exists for the supplied 
                character index pair.
            </summary>
            <param name="left"></param>
            <param name="right"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiKerningPairs.Count">
            <summary>
                Gets the number of kerning pairs.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiKerningPairs.Item(System.Int32,System.Int32)">
            <summary>
                Gets the kerning amount for the supplied index pair or 0 if 
                a kerning pair does not exist.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiPrivateFontCollection">
            <summary>
                Installs a collection of private fonts on the system and uninstalls 
                them when disposed.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.GdiPrivateFontCollection.FR_PRIVATE">
            <summary>
                Specifies that only the process that called the AddFontResourceEx 
                function can use this font.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.GdiPrivateFontCollection.FR_NOT_ENUM">
            <summary>
                Specifies that no process, including the process that called the 
                AddFontResourceEx function, can enumerate this font.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.GdiPrivateFontCollection.fonts">
            <summary>
                Collection of absolute filenames.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiPrivateFontCollection.AddFontFile(System.String)">
            <summary>
                Adds <i>filename</i> to this private font collection.
            </summary>
            <param name="filename">
                Absolute path to a TrueType font or collection.
            </param>
            <seealso cref="M:Telerik.Pdf.Gdi.GdiPrivateFontCollection.AddFontFile(System.IO.FileInfo)"/>
            <exception cref="T:System.ArgumentNullException">If <i>filename</i> is null.</exception>
            <exception cref="T:System.ArgumentException">If <i>filename</i> is the empty string.</exception>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiPrivateFontCollection.AddFontFile(System.IO.FileInfo)">
            <summary>
                Adds <i>fontFile</i> to this private font collection.
            </summary>
            <param name="fontFile">
                Absolute path to a TrueType font or collection.
            </param>
            <exception cref="T:System.IO.FileNotFoundException">
                If <i>fontFile</i> does not exist.
            </exception>
            <exception cref="T:System.ArgumentException">
                If <i>fontFile</i> has already been added.
            </exception>
            <exception cref="T:System.ArgumentException">
                If <i>fontFile</i> cannot be added to the system font collection.
            </exception>
        </member>
        <member name="T:Telerik.Pdf.Gdi.GdiUnicodeRanges">
            <summary>
                Custom collection that maintains a list of Unicode ranges 
                a font supports and the glyph indices of each character.
                The list of ranges is obtained by invoking GetFontUnicodeRanges,
                however the associated glyph indices are lazily instantiated as 
                required to save memory.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.GdiUnicodeRanges.unicodeRanges">
            <summary>
                List of unicode ranges in ascending numerical order.  The order 
                is important since a binary search is used to locate and 
                uicode range from a charcater.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiUnicodeRanges.#ctor(Telerik.Pdf.Gdi.GdiDeviceContent)">
            <summary>
                Class constuctor.
            </summary>
            <param name="dc"></param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiUnicodeRanges.LoadRanges(Telerik.Pdf.Gdi.GdiDeviceContent)">
            <summary>
                Loads all the unicode ranges.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiUnicodeRanges.GetRange(System.Char)">
            <summary>
                Locates the <see cref="T:Telerik.Pdf.Gdi.UnicodeRange"/> for the supplied character.
            </summary>
            <param name="c"></param>
            <returns>
                The <see cref="T:Telerik.Pdf.Gdi.UnicodeRange"/> object housing <i>c</i> or null 
                if a range does not exist for <i>c</i>.
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.GdiUnicodeRanges.MapCharacter(System.Char)">
            <summary>
                Translates the supplied character to a glyph index.
            </summary>
            <param name="c">Any unicode character.</param>
            <returns>
                A glyph index for <i>c</i> or 0 the supplied character does 
                not exist in the font selected into the device context.
            </returns>
        </member>
        <member name="P:Telerik.Pdf.Gdi.GdiUnicodeRanges.Count">
            <summary>
                Gets the number of unicode ranges.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.PdfUnitConverter">
            <summary>
                Converts from logical TTF units to PDF units.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.PdfUnitConverter.#ctor(System.Int32)">
            <summary>
                Class constructor.
            </summary>
            <param name="emSquare">
                Specifies the number of logical units defining the x- or 
                y-dimension of the em square of a font.
            </param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.PdfUnitConverter.ToPdfUnits(System.Int32)">
            <summary>
                Convert the supplied integer from TrueType units to PDF units 
                based on the EmSquare
            </summary>
            <param name="value"></param>
            <returns>
                If the value of <i>emSquare</i> is zero, this method will 
                always return <i>value</i>.
            </returns>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Abc">
            <summary>
                The ABC structure contains the width of a character in a TrueType font. 
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.LogFont">
            <summary>
                TODO: Figure out why CreateFontIndirect fails when this class 
                is converted to a struct.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.OutlineTextMetric">
            <summary>
                The OUTLINETEXTMETRIC structure contains metrics describing 
                a TrueType font. 
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Panose">
            <summary>
                The PANOSE structure describes the PANOSE font-classification values 
                for a TrueType font. These characteristics are then used to associate 
                the font with other fonts of similar appearance but different names. 
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Point">
            <summary>
                The Point structure defines the x- and y- coordinates of a point. 
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.Rect">
            <summary>
                The Rect structure defines the coordinates of the upper-left 
                and lower-right corners of a rectangle
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.TextMetric">
            <summary>
                The TEXTMETRIC structure contains basic information about a physical 
                font.  All sizes are specified in logical units; that is, they depend 
                on the current mapping mode of the display context. 
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.UnicodeRange">
            <summary>
                Class that represents a unicode character range as returned 
                by the GetFontUnicodeRanges function.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.UnicodeRange.indices">
            <summary>
                Array of glyph indices for each character represented by 
                this range begining at <see cref="P:Telerik.Pdf.Gdi.UnicodeRange.Start"/>.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Gdi.UnicodeRange.#ctor(Telerik.Pdf.Gdi.GdiDeviceContent,System.Int32,System.Int32)">
            <summary>
                Class constructor.
            </summary>
            <param name="dc">GDI Device content</param>
            <param name="start">Value representing start of unicode range.</param>
            <param name="end">Value representing end of unicode range.</param>
        </member>
        <member name="M:Telerik.Pdf.Gdi.UnicodeRange.MapCharacter(System.Char)">
            <summary>
                Returns the glyph index of <i>c</i>.
            </summary>
            <param name="c"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Pdf.Gdi.UnicodeRange.LoadGlyphIndices">
            <summary>
                Populates the <i>indices</i> array with the glyph index of each 
                character represented by this rnage starting at <see cref="P:Telerik.Pdf.Gdi.UnicodeRange.Start"/>.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.UnicodeRange.Start">
            <summary>
                Gets a value representing the start of the unicode range.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Gdi.UnicodeRange.End">
            <summary>
                Gets a value representing the end of the unicode range.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.UnicodeRangeComparer">
            <summary>
            Summary description for UnicodeRangeComparer.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Gdi.WinAnsiMapping">
            <summary>
                Maps a Unicode character to a WinAnsi codepoint value.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.Gdi.WinAnsiMapping.winAnsiEncoding">
            <summary>
                First column is codepoint value.  Second column is unicode value.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfCatalog">
            <summary>
                The root of a document's object hierarchy is the catalog dictionary.
            </summary>
            <remarks>
                The document catalog is described in section 3.6.1 of the PDF specification.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfCIDFont">
            <summary>
                A dictionary that contains information about a CIDFont program.
            </summary>
            <remarks>
                A Type 0 CIDFont contains glyph descriptions based on Adobe's Type 
                1 font format, whereas those in a Type 2 CIDFont are based on the 
                TrueType font format.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfCIDSystemInfo">
            <summary>
                A dictionary containing entries that define the character collection
                of the CIDFont.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfCMap">
            <summary>
                Class that defines a mapping between character codes (CIDs) 
                to a character selector (Identity-H encoding)
            </summary>
        </member>
        <member name="M:Telerik.Pdf.PdfContentStream.Write(System.String)">
            <summary>
                TODO: This method is temporary.  I'm assuming that all string should 
                be represented as a PdfString object?
            </summary>
            <param name="s"></param>
        </member>
        <member name="M:Telerik.Pdf.PdfCMap.AddBfRanges(System.Collections.IDictionary)">
            <summary>
                Adds the supplied glyph -> unicode pairs.
            </summary>
            <remarks>
                Both the key and value must be a int.
            </remarks>
            <param name="map"></param>
        </member>
        <member name="M:Telerik.Pdf.PdfCMap.AddBfRange(System.Int32,System.Int32)">
            <summary>
                Adds the supplied glyph index to unicode value mapping.
            </summary>
            <param name="glyphIndex"></param>
            <param name="unicodeValue"></param>
        </member>
        <member name="M:Telerik.Pdf.PdfCMap.Write(Telerik.Pdf.PdfWriter)">
            <summary>
                Overriden to create CMap content stream.
            </summary>
            <param name="writer"></param>
        </member>
        <member name="M:Telerik.Pdf.PdfCMap.WriteBfChars(Telerik.Pdf.BfEntryList)">
            <summary>
                Writes the bfchar entries to the content stream in groups of 100.
            </summary>
            <param name="entries"></param>
        </member>
        <member name="M:Telerik.Pdf.PdfCMap.WriteBfRanges(Telerik.Pdf.BfEntryList)">
            <summary>
                Writes the bfrange entries to the content stream in groups of 100.
            </summary>
            <param name="entries"></param>
        </member>
        <member name="T:Telerik.Web.Apoc.Pdf.PdfCreator">
            <remarks>
                Was originally called PdfDocument, but this name is now in
                use by the Telerik.Pdf library. Eventually all code in this 
                class should either be moved to either the Telerik.Pdf library, 
                or to the PdfRenderer.
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfCreator.getOutlineRoot">
            Get the root Outlines object. This method does not write
            the outline to the Pdf document, it simply creates a
            reference for later.
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfCreator.makeOutline(Telerik.Pdf.PdfOutline,System.String,System.String)">
            Make an outline object and add it to the given outline
            @param parent parent PdfOutline object
            @param label the title for the new outline object
            @param action the PdfAction to reference
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfCreator.getResources">
             get the /Resources object for the document
            
             @return the /Resources object
        </member>
        <member name="T:Telerik.Pdf.PdfDate">
            <summary>
                PDF defines a standard date format. The PDF date format closely 
                follows the format defined by the international standard ASN.1.
            </summary>
            <remarks>
                The format of the PDF date is defined in section 3.8.2 of the 
                PDF specification.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfDocument">
            <summary>
                A class that enables a well structured PDF document to be generated.
            </summary>
            <remarks>
                Responsible for allocating object identifiers.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfFileTrailer">
            <summary>
                Class representing a file trailer.
            </summary>
            <remarks>
                File trailers are described in section 3.4.4 of the PDF specification.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.PdfFont.Name">
            <summary>
                Returns the internal name used for this font.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Pdf.PdfFontCreator">
            <summary>
                Creates all the necessary PDF objects required to represent 
                a font object in a PDF document.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Pdf.PdfFontCreator.creator">
            <summary>
                Generates object id's.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.#ctor(Telerik.Web.Apoc.Pdf.PdfCreator)">
            <summary>
                
            </summary>
            <param name="creator"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.MakeFont(System.String,Telerik.Web.Apoc.Render.Pdf.Fonts.Font)">
            <summary>
                Returns a subclass of the PdfFont class that may be one of
                PdfType0Font, PdfType1Font or PdfTrueTypeFont.  The type of 
                subclass returned is determined by the type of the <i>font</i>
                parameter.
            </summary>
            <param name="pdfFontID">The PDF font identifier, e.g. F15</param>
            <param name="font">Underlying font object.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.CreateCIDFont(System.String,Telerik.Web.Apoc.Render.Pdf.Fonts.Font,Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont)">
            <summary>
                Creates a character indexed font from <i>cidFont</i>
            </summary>
            <remarks>
                The <i>font</i> and <i>cidFont</i> will be different object 
                references since the <i>font</i> parameter will most likely 
                be a <see cref="T:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont"/>.
            </remarks>
            <param name="pdfFontID">The Pdf font identifier, e.g. F15</param>
            <param name="font">Required to access the font descriptor.</param>
            <param name="cidFont">The underlying CID font.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.NextObjectId">
            <summary>
                Returns the next available Pdf object identifier.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.CreateBase14Font(System.String,Telerik.Web.Apoc.Render.Pdf.Fonts.Base14Font)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.PdfType1Font"/> class
            </summary>
            <param name="pdfFontID">The Pdf font identifier, e.g. F15</param>
            <param name="base14"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.CreateTrueTypeFont(System.String,Telerik.Web.Apoc.Render.Pdf.Fonts.Font,Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont)">
            <summary>
                Creates an instance of the <see cref="T:Telerik.Pdf.PdfTrueTypeFont"/> class
                that defaults the font encoding to WinAnsiEncoding.
            </summary>
            <param name="pdfFontID"></param>
            <param name="font"></param>
            <param name="ttf"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.PdfFontCreator.GetFontMetrics(Telerik.Web.Apoc.Render.Pdf.Fonts.Font)">
            <remarks>
                A ProxyFont must first be resolved before getting the 
                IFontMetircs implementation of the underlying font.
            </remarks>
            <param name="font"></param>
        </member>
        <member name="T:Telerik.Pdf.PdfFontTypeEnum">
            <summary>
                An enumeration listing all the fonts types available in Pdf.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfFontSubTypeEnum">
            <summary>
                An enumeration listing all the font subtypes
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfICCStream">
            <summary>
                An International Color Code stream
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfIdentityHEncoding">
            <summary>
                Represents a Identity-H character encoding
            </summary>
            <remarks>
                Maps 2-byte character codes ranging from 0 to 65,535 to 
                the same 2-byte CID value, interpreted high-order byte first
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.PdfIdentityHEncoding.GetBytes(System.Char[],System.Int32,System.Int32,System.Byte[],System.Int32)">
            <summary>
                Do not call this method directly
            </summary>
        </member>
        <member name="M:Telerik.Pdf.PdfIdentityHEncoding.GetBytes(System.String,System.Int32,System.Int32,System.Byte[],System.Int32)">
            <summary>
                Do not call this method directly
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfInfo">
            <summary>
                Class representing a document information dictionary.
            </summary>
            <remarks>
                Document information dictionaries are described in section 9.2.1 of the
                PDF specification.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfName.Names">
            <summary>
                Well-known PDF name objects.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfOutline">
            <summary>
                This represents a single Outline object in a PDF, including the root Outlines
                object. Outlines provide the bookmark bar, usually rendered to the right of
                a PDF document in user agents such as Acrobat Reader
            </summary>
        </member>
        <member name="F:Telerik.Pdf.PdfOutline.subentries">
            <summary>
                List of sub-entries (outline objects)
            </summary>
        </member>
        <member name="F:Telerik.Pdf.PdfOutline.parent">
            <summary>
                Parent outline object. Root Outlines parent is null
            </summary>
        </member>
        <member name="F:Telerik.Pdf.PdfOutline.title">
            <summary>
                Title to display for the bookmark entry
            </summary>
        </member>
        <member name="M:Telerik.Pdf.PdfOutline.#ctor(Telerik.Pdf.PdfObjectId,System.String,Telerik.Pdf.PdfObjectReference)">
            <summary>
                Class constructor.
            </summary>
            <param name="objectId">The object id number</param>
            <param name="title">The title of the outline entry (can only be null for root Outlines obj)</param>
            <param name="action">The page which this outline refers to.</param>
        </member>
        <member name="M:Telerik.Pdf.PdfOutline.AddOutline(Telerik.Pdf.PdfOutline)">
            <summary>
                Add a sub element to this outline
            </summary>
            <param name="outline"></param>
        </member>
        <member name="T:Telerik.Pdf.PdfPageTree">
            <summary>
                The pages of a document are accessed through a structure known
                as the page tree.
            </summary>
            <remarks>
                The page tree is described in section 3.6.2 of the PDF specification.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.PdfString.ToPdfLiteral(System.Byte[],System.Byte[])">
            <summary>
                Returns this PdfString expressed using the 'literal' convention.
            </summary>
            <remarks>
                A literal string is written as an arbitrary number of characters 
                enclosed in parentheses.  Any characters may appear in a string 
                except unbalanced parentheses and the backslash, which must be 
                treated specially. Balanced pairs of parentheses within a string 
                require no special treatment.
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.PdfString.HexDigits">
            <summary>
                Used by ToPdfHexadecimal.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.PdfString.ToPdfHexadecimal(System.Byte[],System.Byte[])">
            <summary>
                Returns the PdfString expressed using the 'hexadecimal' convention.
            </summary>
            <remarks>
                Strings may also be written in hexadecimal form; this is useful for 
                including arbitrary binary data in a PDF file. A hexadecimal string 
                is written as a sequence of hexadecimal digits (0–9 and either A–F 
                or a–f) enclosed within angle brackets (&lt; and &gt;).
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.PdfString.Format">
            <summary>
                The convention used when outputing the string to the PDF document.
            </summary>
            <remarks>
               Defaults to <see cref="F:Telerik.Pdf.PdfStringFormat.Literal"/> format.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.PdfString.NeverEncrypt">
            <summary>
                Determines if the string should bypass encryption, even when 
                available.
            </summary>
            <remarks>
                Some PDF strings need to appear unencrypted in a secure PDF
                document.  Most noteably those in the encryption dictionary 
                itself.  This property allows those strings to be flagged.
            </remarks>
        </member>
        <member name="T:Telerik.Pdf.PdfStringFormat">
            <summary>
                The PDF specification describes two conventions that can be
                used to embed a string in a PDF document.  This enumeration,
                along with the <see cref="P:Telerik.Pdf.PdfString.Format"/> property 
                can be used to select how a string will be formatted in the
                PDF file.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.PdfTrueTypeFont.#ctor(Telerik.Pdf.PdfObjectId,System.String,System.String)">
            <param name="objectId">
                A unique object number.
            </param>
            <param name="fontName">
                The name by which the font is reference in the Font subdictionary 
            </param>
            <param name="baseFont">
                The PostScript name of the font.
            </param>
        </member>
        <member name="P:Telerik.Pdf.PdfTrueTypeFont.Encoding">
            <summary>
                Sets a value representing the character encoding.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.PdfTrueTypeFont.Descriptor">
            <summary>
                Sets the font descriptor.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.PdfTrueTypeFont.FirstChar">
            <summary>
                Sets the first character code defined in the font's widths array
            </summary>
            <value>
                The default value is 0.
            </value>
        </member>
        <member name="P:Telerik.Pdf.PdfTrueTypeFont.LastChar">
            <summary>
                Sets the last character code defined in the font's widths array
            </summary>
            <value>
                The default value is 255.
            </value>
        </member>
        <member name="P:Telerik.Pdf.PdfTrueTypeFont.Widths">
            <summary>
                Sets the array of character widths.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfType0Font">
            <summary>
                A Type 0 font is a composite font whose glyphs are obtained from a
                font like object called a CIDFont (a descendant font).
            </summary>
            <remarks>
                All versions of the PDF specification up to and including version 1.4
                only support a single descendant font.
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.PdfType0Font.ToUnicode">
            <summary>
                Sets the stream containing a CMap that maps character codes to 
                unicode values.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.PdfType0Font.Descendant">
            <summary>
                Sets the descendant font.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.PdfType0Font.Encoding">
            <summary>
                Sets a value representing the character encoding.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.PdfType1Font.Encoding">
            <summary>
                Sets a value representing the character encoding.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.PdfWArray">
            <summary>
                Array class used to represent the /W entry in the CIDFont dictionary.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Security.Arc4">
            <summary>
                ARC4 is a fast, simple stream encryption algorithm that is
                compatible with RSA Security's RC4 algorithm.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Security.Arc4.Initialise(System.Byte[])">
            <summary>
                Initialises internal state from the passed key.
            </summary>
            <remarks>
                Can be called again with a new key to reuse an Arc4 instance.
            </remarks>
            <param name="key">The encryption key.</param>
        </member>
        <member name="M:Telerik.Pdf.Security.Arc4.Encrypt(System.Byte[],System.Byte[])">
            <summary>
                Encrypts or decrypts the passed byte array.
            </summary>
            <param name="dataIn">
                The data to be encrypted or decrypted.
            </param>
            <param name="dataOut">
                The location that the encrypted or decrypted data is to be placed.
                The passed array should be at least the same size as dataIn.
                It is permissible for the same array to be passed for both dataIn
                and dataOut.
            </param>
        </member>
        <member name="M:Telerik.Pdf.Security.Arc4.Arc4Byte">
            <summary>
                Generates a pseudorandom byte used to encrypt or decrypt.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.Security.SecurityManager">
            <summary>
                Implements Adobe's standard security handler.  A security handler is 
                a software module that implements various aspects of the encryption 
                process.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.#ctor(Telerik.Pdf.Security.SecurityOptions,Telerik.Pdf.FileIdentifier)">
            <summary>
                Constructs a new standard security manager.
            </summary>
            <param name="options">
                The user supplied PDF options that provides access to the passwords and 
                the access permissions.
            </param>
            <param name="fileId">
                The PDF document's file identifier (see section 8.3 of PDF specification).
            </param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CreateMasterKey(Telerik.Pdf.Security.SecurityOptions,Telerik.Pdf.FileIdentifier)">
            <summary>
                Computes the master key that is used to encrypt string and stream data 
                in the PDF document.
            </summary>
            <param name="options">
                The user supplied PDF options that provides access to the passwords and
                the access permissions.
            </param>
            <param name="fileId">
                The PDF document's file identifier (see section 8.3 of PDF specification).
            </param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CreateOwnerEntry(Telerik.Pdf.Security.SecurityOptions)">
            <summary>
                Computes the O(owner) value in the encryption dictionary.
            </summary>
            <remarks>
                Corresponds to algorithm 3.3 on page 69 of the PDF specficiation.
            </remarks>
            <param name="options">
                The user supplied PDF options that provides access to the passwords.
            </param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CreateUserEntry(Telerik.Pdf.Security.SecurityOptions)">
            <summary>
                Computes the U(user) value in the encryption dictionary.
            </summary>
            <remarks>
                Corresponds to algorithm 3.4 on page 70 of the PDF specficiation.
            </remarks>
            <param name="options">
                The user supplied PDF options that provides access to the passwords.
            </param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.Encrypt(System.Byte[],Telerik.Pdf.PdfObjectId)">
            <summary>
                Encrypts the passed byte array using the ARC4 cipher.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.ComputeEncryptionKey31(System.Byte[],Telerik.Pdf.PdfObjectId)">
            <summary>
                Computes an encryption key that is used to encrypt string and stream data 
                in the PDF document.
            </summary>
            <remarks>
                Corresponds to algorithm 3.1 in section 3.5 of the PDF specficiation.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.ComputeEncryptionKey32(System.Byte[],System.Byte[],System.Int32,System.Byte[])">
            <summary>
                Computes an encryption key that is used to encrypt string and stream data 
                in the PDF document.
            </summary>
            <remarks>
                Corresponds to algorithm 3.2 in section 3.5 of the PDF specficiation.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.PadPassword(System.String)">
            <summary>
                Pads or truncates a password string to exactly 32-bytes.
            </summary>
            <remarks>
                Corresponds to step 1 of algorithm 3.2 on page 69 of the PDF 1.3 specficiation.
            </remarks>
            <param name="password">The password to pad or truncate.</param>
            <returns>
                A byte array of length 32 bytes containing the padded or truncated password.
            </returns>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CheckUserPassword(System.String,System.Byte[],System.Byte[],System.Int32,System.Byte[])">
            <summary>
                Determines if the passed password matches the user password
                used to initialise this security manager.
            </summary>
            <remarks>
                Used for testing purposes only.  Corresponds to algorithm 3.5 in the
                PDF 1.3 specification.
            </remarks>
            <returns>True if the password is correct.</returns>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CheckUserPassword(System.Byte[],System.Byte[],System.Byte[],System.Int32,System.Byte[])">
            <summary>
                Performs the actual checking of the user password.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CheckOwnerPassword(System.String,System.Byte[],System.Byte[],System.Int32,System.Byte[])">
            <summary>
                Checks the owner password.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityManager.CompareArray(System.Byte[],System.Byte[])">
            <summary>
                Compares two byte arrays and returns true if they are equal.
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityManager.UserEntry">
            <summary>
                Access to the raw user entry byte array.
            </summary>
            <remarks>
                Required for testing purposes;
            </remarks>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityManager.OwnerEntry">
            <summary>
                Access to the raw owner entry byte array.
            </summary>
            <remarks>
                Required for testing purposes;
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.Security.SecurityOptions.m_permissions">
            <summary>
                Collection of flags describing permissions granted to user who opens 
                a file with the user password.
            </summary>
            <remarks>
                The given initial value zero's out first two bits.
                The PDF specification dictates that these entries must be 0.
            </remarks>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityOptions.EnablePrinting(System.Boolean)">
            <summary>
                Enables or disables printing.
            </summary>
            <param name="enable">If true enables printing otherwise false</param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityOptions.EnableChanging(System.Boolean)">
            <summary>
                Enable or disable changing the document other than by adding or 
                changing text notes and AcroForm fields.
            </summary>
            <param name="enable"></param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityOptions.EnableCopying(System.Boolean)">
            <summary>
                Enable or disable copying of text and graphics from the document.
            </summary>
            <param name="enable"></param>
        </member>
        <member name="M:Telerik.Pdf.Security.SecurityOptions.EnableAdding(System.Boolean)">
            <summary>
                Enable or disable adding and changing text notes and AcroForm fields.
            </summary>
            <param name="enable"></param>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityOptions.m_ownerPassword">
            <summary>
                Password that disables all security permissions
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityOptions.m_userPassword">
            <summary>
                The user password 
            </summary>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityOptions.OwnerPassword">
            <summary>
                Returns the owner password as a string.
            </summary>
            <value>
                The default value is null
            </value>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityOptions.UserPassword">
            <summary>
                Returns the user password as a string.
            </summary>
            <value>
                The default value is null
            </value>
        </member>
        <member name="P:Telerik.Pdf.Security.SecurityOptions.Permissions">
            <summary>
                The document access privileges encoded in a 32-bit unsigned integer
            </summary>
            <value>
                The default access priviliges are:
                <ul>
                <li>Printing disallowed</li>
                <li>Modifications disallowed</li>
                <li>Copy and Paste disallowed</li>
                <li>Addition or modification of annotation/form fields disallowed</li>
                </ul>
                To override any of these priviliges see the <see cref="M:Telerik.Pdf.Security.SecurityOptions.EnablePrinting(System.Boolean)"/>,
                <see cref="M:Telerik.Pdf.Security.SecurityOptions.EnableChanging(System.Boolean)"/>, <see cref="M:Telerik.Pdf.Security.SecurityOptions.EnableCopying(System.Boolean)"/>, 
                <see cref="M:Telerik.Pdf.Security.SecurityOptions.EnableAdding(System.Boolean)"/> methods
            </value>
        </member>
        <member name="T:Telerik.Pdf.XRefSection">
            <summary>
                A single section in a PDF file's cross-reference table.
            </summary>
            <remarks>
                The cross-reference table is described in section 3.4.3 of
                the PDF specification.
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.XRefSection.subsection">
            <summary>
                Right now we only support a single subsection.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSection.Add(Telerik.Pdf.PdfObjectId,System.Int64)">
            <summary>
                Adds an entry to the section.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSection.Write(Telerik.Pdf.PdfWriter)">
            <summary>
                Writes the cross reference section to the passed PDF writer.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.XRefSubSection">
            <summary>
                A sub-section in a PDF file's cross-reference table.
            </summary>
            <remarks>
                The cross-reference table is described in section 3.4.3 of
                the PDF specification.
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.XRefSubSection.entries">
            <summary>
                This entries contained in this subsection.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSubSection.#ctor">
            <summary>
                Creates a new blank sub-section, that initially contains no entries.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSubSection.Add(Telerik.Pdf.PdfObjectId,System.Int64)">
            <summary>
                Adds an entry to the sub-section.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSubSection.Write(Telerik.Pdf.PdfWriter)">
            <summary>
                Writes the cross reference sub-section to the passed PDF writer.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.XRefSubSection.Entry">
            <summary>
                Structure representing a single cross-reference entry.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.XRefSubSection.Entry.objectId">
            <summary>
                The object number and generation number.
            </summary>
        </member>
        <member name="F:Telerik.Pdf.XRefSubSection.Entry.offset">
            <summary>
                The number of bytes from the beginning of the file to
                the beginning of the object.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefSubSection.Entry.CompareTo(System.Object)">
            <summary>
                Implementation of IComparable.
            </summary>
        </member>
        <member name="T:Telerik.Pdf.XRefTable">
            <summary>
                A PDF file's cross-reference table.
            </summary>
            <remarks>
                The cross-reference table is described in section 3.4.3 of
                the PDF specification.
            </remarks>
        </member>
        <member name="F:Telerik.Pdf.XRefTable.section">
            <summary>
                Right now we only support a single section.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefTable.Add(Telerik.Pdf.PdfObjectId,System.Int64)">
            <summary>
                Adds an entry to the table.
            </summary>
        </member>
        <member name="M:Telerik.Pdf.XRefTable.Write(Telerik.Pdf.PdfWriter)">
            <summary>
                Writes the cross reference table to the passed PDF writer.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.IRendererOptions">
            <summary>
                A marker interface to indicate an object can be passed to
                the <see cref="P:Telerik.Web.Apoc.ApocDriver.Options"/> property.
            </summary>
            <remarks>
                <seealso cref="T:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions"/>
            </remarks>
        </member>
        <member name="T:Telerik.Web.Apoc.Pdf.FontSetup">
            <summary>
                Sets up the PDF fonts.
            </summary>
            <remarks>
                Assigns the font (with metrics) to internal names like "F1" and
                assigns family-style-weight triplets to the fonts.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Pdf.FontSetup.startIndex">
            <summary>
                First 16 indices are used by base 14 and generic fonts
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Pdf.FontSetup.fontInfo">
            <summary>
                Handles mapping font triplets to a IFontMetric implementor
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.FontSetup.AddSystemFonts(Telerik.Web.Apoc.Render.Pdf.FontType)">
            <summary>
                Adds all the system fonts to the FontInfo object.
            </summary>
            <remarks>
                Adds metrics for basic fonts and useful family-style-weight
                triplets for lookup.
            </remarks>
            <param name="fontType">Determines what type of font to instantiate.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.FontSetup.IsBase14FontName(System.String)">
            <summary>
                Returns <b>true</b> is <i>familyName</i> represents one of the 
                base 14 fonts; otherwise <b>false</b>.
            </summary>
            <param name="familyName"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.FontSetup.GetNextAvailableName">
            <summary>
                Gets the next available font name.  A font name is defined as an 
                integer prefixed by the letter 'F'.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Pdf.FontSetup.AddToResources(Telerik.Web.Apoc.Pdf.PdfFontCreator,Telerik.Pdf.PdfResources)">
            <summary>
                Add the fonts in the font info to the PDF document.
            </summary>
            <param name="fontCreator">Object that creates PdfFont objects.</param>
            <param name="resources">Resources object to add fonts too.</param>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.Base14Font">
            <summary>
                Base class for the standard 14 fonts as defined in the PDF spec.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.Font">
            <summary>
                Base class for PDF font classes
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.MapCharacter(System.Char)">
            <summary>
                Maps a Unicode character to a character index.
            </summary>
            <param name="c">A Unicode character.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.GetWidth(System.Int32)">
            <summary>
                See <see cref="M:Telerik.Web.Apoc.Layout.IFontMetric.GetWidth(System.Int32)"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Encoding">
            <summary>
                Get the encoding of the font.
            </summary>
            <remarks>
                A font encoding defines a mapping between a character code 
                and a code point.  
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.FontName">
            <summary>
                Gets the base font name.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Type">
            <summary>
                Gets the type of font, e.g. Type 0, Type 1, etc.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.SubType">
            <summary>
                Gets the font subtype.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Descriptor">
            <summary>
                Gets a reference to a FontDescriptor
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.MultiByteFont">
            <summary>
                Gets a boolean value indicating whether this font supports 
                multi-byte characters
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Ascender">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.Ascender"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Descender">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.Descender"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.CapHeight">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.CapHeight"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.FirstChar">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.FirstChar"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.LastChar">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.LastChar"/>
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.Widths">
            <summary>
                See <see cref="P:Telerik.Web.Apoc.Layout.IFontMetric.Widths"/>
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Base14Font.#ctor(System.String,System.String,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32[],Telerik.Web.Apoc.Render.Pdf.CodePointMapping)">
            <summary>
                Class constructor.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Base14Font.Descriptor">
            <summary>
                Will always return null since the standard 14 fonts do not 
                have a FontDescriptor.
            </summary>
            <remarks>
                It is possible to override the default metrics, but the 
                current version of Apoc does not support this feature.
            </remarks>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont">
            <summary>
                Base class for a CID (Character Indexed) font.
            </summary>
            <remarks>
                There are two types of CIDFont: Type 0 and Type 2.  A Type 0 CIDFont
                contains glyph description based on Adobe Type 1 font format; a 
                Type 2 CIDFont contains glyph descriptions based on the TrueType 
                font format.
                See page 338 of the Adode PDF 1.4 specification for futher details.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.CidBaseFont">
            <summary>
                Gets the PostScript name of the font.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.CMapEntries">
            <summary>
                Gets a dictionary mapping character codes to unicode values
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.Type">
            <summary>
                Returns <see cref="F:Telerik.Pdf.PdfFontTypeEnum.CIDFont"/>.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.Registry">
            <summary>
                Gets a string identifying the issuer of the character collections.
            </summary>
            <remarks>
                The default implementation returns <see cref="F:Telerik.Pdf.PdfCIDSystemInfo.DefaultRegistry"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.Ordering">
            <summary>
                Gets a string that uniquely names the character collection.
            </summary>
            <remarks>
                The default implementation returns <see cref="F:Telerik.Pdf.PdfCIDSystemInfo.DefaultOrdering"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.Supplement">
            <summary>
                Gets the supplement number of the character collection.
            </summary>
            <remarks>
                The default implementation returns <see cref="F:Telerik.Pdf.PdfCIDSystemInfo.DefaultSupplement"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.DefaultWidth">
            <summary>
                Gets the default width for all glyphs.
            </summary>
            <remarks>
                The default implementation returns <see cref="F:Telerik.Web.Apoc.Render.Pdf.Fonts.CIDFont.DefaultWidthConst"/>
            </remarks>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.FontDescriptorFlags">
            <summary>
                Represents a collection of font descriptor flags specifying 
                various characterisitics of a font.
            </summary>
            <remarks>
                The following lists the bit positions and associated flags:
                1  - FixedPitch
                2  - Serif
                3  - Symbolic
                4  - Script
                6  - Nonsymbolic
                7  - Italic
                17 - AllCap
                18 - SmallCap
                19 - ForceBold
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.FontDescriptorFlags.#ctor">
            <summary>
                Default class constructor.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.FontDescriptorFlags.#ctor(System.Int32)">
            <summary>
                Class constructor.  Initialises the flags BitVector with the 
                supplied integer.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.FontDescriptorFlags.Flags">
            <summary>
                Gets the font descriptor flags as a 32-bit signed integer.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.FontDescriptorFlags.FontDescriptorFlagsEnum">
            <summary>
                Handy enumeration used to reference individual bit positions
                in the BitVector32.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties">
            <summary>
                Collection of font properties such as face name and whether the 
                a font is bold and/or italic.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties.#ctor(System.String,System.Boolean,System.Boolean)">
            <summary>
                Class constructor.
            </summary>
            <remarks>
                Regular    : bold=false, italic=false
                Bold       : bold=true,  italic=false
                Italic     : bold=false, italic=true
                BoldItalic : bold=true,  italic=true
            </remarks>
            <param name="faceName">Font face name, e.g. Arial.</param>
            <param name="bold">Bold flag.</param>
            <param name="italic">Italic flag.</param>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont">
            <summary>
                A proxy object that delegates all operations to a concrete 
                subclass of the Font class.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.fontLoaded">
            <summary>
                Flag that indicates whether the underlying font has been loaded.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.properties">
            <summary>
                Font details such as face name, bold and italic flags
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.realFont">
            <summary>
                The font that does all the work.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.fontType">
            <summary>
                Determines what type of "real" font to instantiate.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.#ctor(Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties,Telerik.Web.Apoc.Render.Pdf.FontType)">
            <summary>
                Class constructor.
            </summary>
            <param name="properties"></param>
            <param name="fontType"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.LoadIfNecessary">
            <summary>
                Loads the underlying font.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.ProxyFont.RealFont">
            <summary>
                Gets the underlying font.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont">
            <summary>
                Represents a TrueType font program.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.dc">
            <summary>
                Wrapper around a Win32 HDC.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.metrics">
            <summary>
                Provides font metrics using the Win32 Api.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.kerning">
            <summary>
                List of kerning pairs.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.widths">
            <summary>
                Maps a glyph index to a PDF width
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.properties">
            <summary>
                
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.#ctor(Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties)">
            <summary>
                Class constructor
            </summary>
            <param name="properties"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.ObtainFontMetrics">
            <summary>
                Creates a <see cref="T:Telerik.Pdf.Gdi.GdiFontMetrics"/> object from <b>baseFontName</b>
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.GetWidth(System.Int32)">
            <summary>
                See <see cref="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Font.GetWidth(System.Int32)"/>
            </summary>
            <param name="charIndex">A WinAnsi codepoint.</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.TrueTypeFont.SubType">
            <summary>
                Returns <see cref="F:Telerik.Pdf.PdfFontSubTypeEnum.TrueType"/>.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont">
            <summary>
                A Type 2 CIDFont is a font whose glyph descriptions are based on the 
                TrueType font format.
            </summary>
            <remarks>
                TODO: Support font subsetting
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.dc">
            <summary>
                Wrapper around a Win32 HDC.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.metrics">
            <summary>
                Provides font metrics using the Win32 Api.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.kerning">
            <summary>
                List of kerning pairs.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.widths">
            <summary>
                Maps a glyph index to a PDF width
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.baseFontName">
            <summary>
                Windows font name, e.g. 'Arial Bold'
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.properties">
            <summary>
                
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.usedGlyphs">
            <summary>
                Maps a glyph index to a character code.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.unicodeRanges">
            <summary>
                Maps character code to glyph index.  The array is based on the 
                value of <see cref="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.FirstChar"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.#ctor(Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties)">
            <summary>
                Class constructor.
            </summary>
            <param name="properties"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.ObtainFontMetrics">
            <summary>
                Creates a <see cref="T:Telerik.Pdf.Gdi.GdiFontMetrics"/> object from <b>baseFontName</b>
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.Finalize">
            <summary>
                Class destructor.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDFont.SubType">
            <summary>
                Returns <see cref="F:Telerik.Pdf.PdfFontSubTypeEnum.CIDFontType2"/>.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont">
            <summary>
                A subclass of Type2CIDFont that generates a subset of a 
                TrueType font.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont.indexMappings">
            <summary>
                Maps a glyph index to a subset index.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont.namePrefix">
            <summary>
                Quasi-unique six character name prefix.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont.#ctor(Telerik.Web.Apoc.Render.Pdf.Fonts.FontProperties)">
            <summary>
                Class constructor.
            </summary>
            <param name="properties"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.Fonts.Type2CIDSubsetFont.InsertNotdefGlyphs">
            <summary>
                Creates the index mappings list and adds the .notedef glyphs
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.FontType">
            <summary>
                Enumeration that dictates how Apoc should treat fonts when 
                producing a PDF document.
            </summary>
            <remarks>
                <p>Each of the three alernatives has particular advantages and 
                disadvantages, which will be explained here.</p>
                <p>The <see cref="F:Telerik.Web.Apoc.Render.Pdf.FontType.Link"/> member specifies that all fonts 
                should be linked.  This option will produce the smallest PDF 
                document because the font program required to render individual 
                glyphs is not embedded in the PDF document.  However, this 
                option does possess two distinct disadvantages:
                <ol>
                  <li>Only characters in the WinAnsi character encoding are 
                  supported (i.e. Latin)</li>
                  <li>The PDF document will not render correctly if the linked 
                  font is not installed.</li>
                </ol>///     </p>
                <p>The <see cref="F:Telerik.Web.Apoc.Render.Pdf.FontType.Embed"/> option will copy the contents of 
                the entire font program into the PDF document.  This will guarantee 
                correct rendering of the document on any system, however certain 
                fonts - especially CJK fonts - are extremely large.  The MS Gothic 
                TrueType collection, for example, is 8MB.  Embedding this font file 
                would produce a ridicuously large PDF.</p>
                <p>Finally, the <see cref="F:Telerik.Web.Apoc.Render.Pdf.FontType.Subset"/> option will only copy the required 
                glyphs required to render a PDF document.  This option will ensure that 
                a PDF document is rendered correctly on any system, but does incur a 
                slight processing overhead to subset the font.</p>
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.FontType.Link">
            <summary>
                Fonts are linked.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.FontType.Embed">
            <summary>
                The entire font program is embedded.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.FontType.Subset">
            <summary>
                The font program is subsetted and embedded.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentYPosition">
            <summary>
                The current vertical position in millipoints from bottom.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentXPosition">
            <summary>
                The current horizontal position in millipoints from left.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentAreaContainerXPosition">
            <summary>
                The horizontal position of the current area container.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.pdfDoc">
            <summary>
                The PDF Document being created.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.pdfResources">
            <summary>
                The /Resources object of the PDF document being created.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentStream">
            <summary>
                The current stream to add PDF commands to.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentAnnotList">
            <summary>
                The current annotation list to add annotations to.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentPage">
            <summary>
                The current page to add annotations to.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.textOpen">
            <summary>
                True if a TJ command is left to be written.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevWordY">
            <summary>
                The previous Y coordinate of the last word written.
            </summary>
            <remarks>
                Used to decide if we can draw the next word on the same line.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevWordX">
            <summary>
                The previous X coordinate of the last word written.
            </summary>
            <remarks>
                Used to calculate how much space between two words.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevWordWidth">
            <summary>
            The  width of the previous word.
            </summary>
            <remarks>
                Used to calculate space between.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer._wordAreaPDF">
            <summary>
                Reusable word area string buffer to reduce memory usage.
            </summary>
            <remarks>
                TODO: remove use of this.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.options">
            <summary>
                User specified rendering options.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentFontName">
            <summary>
                The current (internal) font name.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentFontSize">
            <summary>
                The current font size in millipoints.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.currentFill">
            <summary>
                The current color/gradient to fill shapes with.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevUnderlineXEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevUnderlineYEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevUnderlineSize">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevUnderlineColor">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevOverlineXEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevOverlineYEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevOverlineSize">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevOverlineColor">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevLineThroughXEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevLineThroughYEndPos">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevLineThroughSize">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.prevLineThroughColor">
            <summary>
                Previous values used for text-decoration drawing.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.fontInfo">
            <summary>
                Provides triplet to font resolution.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.fontSetup">
            <summary>
                Handles adding base 14 and all system fonts.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.idReferences">
            <summary>
                The IDReferences for this document.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.#ctor(System.IO.Stream)">
            <summary>
                Create the PDF renderer.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.SetupFontInfo(Telerik.Web.Apoc.Layout.FontInfo)">
            <summary>
            </summary>
            <param name="fontInfo"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.AddLine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Render.Pdf.PdfColor)">
             add a line to the current stream
            
             @param x1 the start x location in millipoints
             @param y1 the start y location in millipoints
             @param x2 the end x location in millipoints
             @param y2 the end y location in millipoints
             @param th the thickness in millipoints
             @param r the red component
             @param g the green component
             @param b the blue component
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.AddLine(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Render.Pdf.PdfColor)">
             add a line to the current stream
            
             @param x1 the start x location in millipoints
             @param y1 the start y location in millipoints
             @param x2 the end x location in millipoints
             @param y2 the end y location in millipoints
             @param th the thickness in millipoints
             @param rs the rule style
             @param r the red component
             @param g the green component
             @param b the blue component
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.AddRect(System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Render.Pdf.PdfColor)">
             add a rectangle to the current stream
            
             @param x the x position of left edge in millipoints
             @param y the y position of top edge in millipoints
             @param w the width in millipoints
             @param h the height in millipoints
             @param stroke the stroke color/gradient
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.AddRect(System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Render.Pdf.PdfColor,Telerik.Web.Apoc.Render.Pdf.PdfColor)">
             add a filled rectangle to the current stream
            
             @param x the x position of left edge in millipoints
             @param y the y position of top edge in millipoints
             @param w the width in millipoints
             @param h the height in millipoints
             @param fill the fill color/gradient
             @param stroke the stroke color/gradient
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.AddFilledRect(System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Render.Pdf.PdfColor)">
             add a filled rectangle to the current stream
            
             @param x the x position of left edge in millipoints
             @param y the y position of top edge in millipoints
             @param w the width in millipoints
             @param h the height in millipoints
             @param fill the fill color/gradient
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderImageArea(Telerik.Web.Apoc.Image.ImageArea)">
             render image area to PDF
            
             @param area the image area to render
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderForeignObjectArea(Telerik.Web.Apoc.Layout.Inline.ForeignObjectArea)">
            render a foreign object area
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderWordArea(Telerik.Web.Apoc.Layout.Inline.WordArea)">
             render inline area to PDF
            
             @param area inline area to render
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.GetUnicodeString(System.Int32)">
            Convert a char to a multibyte hex representation
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.CloseText">
            Checks to see if we have some text rendering commands open
            still and writes out the TJ command to the stream if we do
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderPage(Telerik.Web.Apoc.Layout.Page)">
             render page into PDF
            
             @param page page to render
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.SetRuleStylePattern(System.Int32)">
            defines a string containing dashArray and dashPhase for the rule style
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.DoBackground(Telerik.Web.Apoc.Layout.Area,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
                Renders an area's background.
            </summary>
            <param name="area">The area whose background is to be rendered.</param>
            <param name="x">The x position of the left edge in millipoints.</param>
            <param name="y">The y position of top edge in millipoints.</param>
            <param name="w">The width in millipoints.</param>
            <param name="h">The height in millipoints.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.DrawImage(System.Int32,System.Int32,Telerik.Web.Apoc.Image.ApocImage)">
            <summary>
                Renders an image, rendered at the image's intrinsic size.
                This by default calls drawImageScaled() with the image's
                intrinsic width and height, but implementations may
                override this method if it can provide a more efficient solution.
            </summary>
            <param name="x">The x position of left edge in millipoints.</param>
            <param name="y">The y position of top edge in millipoints.</param>
            <param name="image">The image to be rendered.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.DrawImageScaled(System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Image.ApocImage)">
            <summary>
                Renders an image, scaling it to the given width and height.
                If the scaled width and height is the same intrinsic size 
                of the image, the image is not scaled
            </summary>
            <param name="x">The x position of left edge in millipoints.</param>
            <param name="y">The y position of top edge in millipoints.</param>
            <param name="w">The width in millipoints.</param>
            <param name="h">The height in millipoints.</param>
            <param name="image">The image to be rendered.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.DrawImageClipped(System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Web.Apoc.Image.ApocImage)">
            <summary>
                Renders an image, clipping it as specified.
            </summary>
            <param name="x">The x position of left edge in millipoints.</param>
            <param name="y">The y position of top edge in millipoints.</param>
            <param name="clipX">The left edge of the clip in millipoints.</param>
            <param name="clipY">The top edge of the clip in millipoints.</param>
            <param name="clipW">The clip width in millipoints.</param>
            <param name="clipH">The clip height in millipoints.</param>
            <param name="image">The image to be rendered.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderDisplaySpace(Telerik.Web.Apoc.Layout.DisplaySpace)">
             render display space
            
             @param space the display space to render
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderInlineSpace(Telerik.Web.Apoc.Layout.Inline.InlineSpace)">
             render inline space
            
             @param space space to render
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.RenderLeaderArea(Telerik.Web.Apoc.Layout.Inline.LeaderArea)">
             render leader area
            
             @param area area to render
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRenderer.Options">
            <summary>
                Assigns renderer options to this PdfRenderer
            </summary>
            <remarks>
                This property will only accept an instance of the PdfRendererOptions class
            </remarks>
            <exception cref="T:System.ArgumentException">
                If <i>value</i> is not an instance of PdfRendererOptions
            </exception>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions">
            <summary>
                This class can be used to control various properties of PDF files
                created by Apoc XSL-FO.
            </summary>
            <remarks>
                Can be used to control certain values in the generated PDF's information
                dictionary.  These values are typically displayed in a document summary 
                dialog of PDF viewer applications.
                This class also allows security settings to be specified that will 
                cause generated PDF files to be encrypted and optionally password protected.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.permissions">
            <remarks>
                The given initial value zero's out first two bits.
                The PDF specification dictates that these entries must be 0.
            </remarks>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.AddKeyword(System.String)">
            <summary>
                Adds a keyword to the PDF document.
            </summary>
            <remarks>
                Keywords are embedded in the PDF information dictionary.
            </remarks>
            <param name="keyword">The keyword to be added.</param>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.AddPrivateFont(System.IO.FileInfo)">
            <summary>
                Adds <i>fileInfo</i> to the private font collection.
            </summary>
            <param name="fileInfo">
                Absolute path to a TrueType font or collection.
            </param>
            <exception cref="T:System.ArgumentNullException">
                If <i>fileInfo</i> is null.
            </exception>
            <exception cref="T:System.IO.FileNotFoundException">
                If <i>fileInfo</i> does not exist.
            </exception>
            <exception cref="T:System.ArgumentException">
                If <i>fileInfo</i> has already been added.
            </exception>
            <exception cref="T:System.ArgumentException">
                If <i>fileInfo</i> cannot be added to the system font collection.
            </exception>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Title">
            <summary>
                Specifies the Title of the PDF document.
            </summary>
            <value>
                The default value is null.
            </value>
            <remarks>
                This value will be embedded in the PDF information dictionary.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.DefaultFontFamily">
            <summary>
            Specifices the default font
            </summary>
            <value>
            The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Subject">
            <summary>
                Specifies the Subject of the PDF document.
            </summary>
            <value>
                The default value is null.
            </value>
            <remarks>
                This value will be embedded in the PDF information dictionary.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Author">
            <summary>
                Specifies the Author of the PDF document.
            </summary>
            <value>
                The default value is null.
            </value>
            <remarks>
                This value will be embedded in the PDF information dictionary.
            </remarks>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Creator">
            <summary>
                Returns the Creator of the PDF document.
            </summary>
            <value>
                This method will always return "XSL-FO http://www.w3.org/1999/XSL/Format".
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Producer">
            <summary>
                Returns the Producer of the PDF document.
            </summary>
            <value>
                This method will return the assembly name and version of Apoc.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Keywords">
            <summary>
                Returns a list of keywords as a comma-separated string
            </summary>
            <value>
                If no keywords exist the empty string <see cref="F:System.String.Empty"/> is returned
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.OwnerPassword">
            <summary>
                Specifies the owner password that will protect full access to any generated PDF documents.
            </summary>
            <remarks>
                If either the owner or the user password is specified, 
                then the document will be encrypted.
            </remarks>
            <value>
                The default value is null.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.UserPassword">
            <summary>
                Specifies the user password that will protect access to any generated PDF documents.
            </summary>
            <remarks>
                If either the owner or the user password is specified, 
                then the document will be encrypted.
            </remarks>
            <value>
                The default value is null.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.HasPermissions">
            <summary>
                Returns true if any permissions have been set.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Permissions">
            <summary>
                Returns the PDF permissions encoded as an 32-bit integer.
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.EnablePrinting">
            <summary>
                Enables or disables printing.
            </summary>
            <value>
                The default value is true.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.EnableModify">
            <summary>
                Enables or disables modifying document contents (other than text annotations and 
                interactive form fields).
            </summary>
            <value>
                The default value is true.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.EnableCopy">
            <summary>
                Enables or disables copying of text and graphics.
            </summary>
            <value>
                The default value is true.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.EnableAdd">
            <summary>
                Enables or disables adding or modifying text annotations and interactive
                form fields.
            </summary>
            <value>
                The default value is true.
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.FontType">
            <summary>
                Specifies how Apoc should treat fonts.
            </summary>
            <value>
                The default value is FontType.Link
            </value>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Pdf.PdfRendererOptions.Kerning">
            <summary>
                Gets or sets a value that indicates whether to enable kerning.
            </summary>
            <value>
                The default value is <b>false</b>
            </value>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.RendererEngine">
            <summary>
                Specifies the output format that Apoc XSL-FO should render to.
            </summary>
            <remarks>
                Currently the only useful format supported is PDF.  The
                XML format is intended for informational/debugging purposes
                only.
                <seealso cref="P:Telerik.Web.Apoc.ApocDriver.Renderer"/>
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.RendererEngine.XML">
            <summary>
                Instructs Apoc to output an XML representation.
            </summary>
            <remarks>
                This format is useful only for informational/debugging purposes.
            </remarks>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.RendererEngine.PDF">
            <summary>
                Instructs Apoc to output PDF.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.Render.Xml.XMLRenderer.Dispose">
            <summary>
            Clean up used resources.
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.Render.Xml.XmlRendererOptions">
            <summary>
                This class can be used to control various properties of PDF files
                created by the XML tree renderer.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.Render.Xml.XmlRendererOptions.Default">
            <summary>
                Default XML renderer properties
            </summary>
        </member>
        <member name="P:Telerik.Web.Apoc.Render.Xml.XmlRendererOptions.FineDetail">
            <summary>
                Determines if the XMLRenderer should use verbose output
            </summary>
        </member>
        <member name="T:Telerik.Web.Apoc.StreamRenderer">
            <summary>
                This class acts as a bridge between the XML:FO parser and the 
                formatting/rendering classes. It will queue PageSequences up until 
                all the IDs required by them are satisfied, at which time it will 
                render the pages.
                StreamRenderer is created by Driver and called from FOTreeBuilder 
                when a PageSequence is created, and AreaTree when a Page is formatted.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.pageCount">
            <summary>
                Keep track of the number of pages rendered.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.renderer">
            <summary>
                The renderer being used.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.results">
            <summary>
                The formatting results to be handed back to the caller.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.fontInfo">
            <summary>
                The FontInfo for this renderer.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.renderQueue">
            <summary>
                The list of pages waiting to be renderered.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.idReferences">
            <summary>
                The current set of IDReferences, passed to the areatrees 
                and pages. This is used by the AreaTree as a single map of 
                all IDs.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.extensions">
            <summary>
                The list of extensions.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.documentMarkers">
            <summary>
                The list of markers.
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.Render(Telerik.Web.Apoc.Fo.Pagination.PageSequence)">
            <summary>
                Format the PageSequence. The PageSequence formats Pages and adds 
                them to the AreaTree, which subsequently calls the StreamRenderer
                instance (this) again to render the page.  At this time the page 
                might be printed or it might be queued. A page might not be 
                renderable immediately if the IDReferences are not all valid. In 
                this case we defer the rendering until they are all valid.
            </summary>
            <param name="pageSequence"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.ProcessQueue(System.Boolean)">
            <summary>
                Try to process the queue from the first entry forward.  If an 
                entry can't be processed, then the queue can't move forward, 
                so return.
            </summary>
            <param name="force"></param>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.GetDocumentMarkers">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.GetCurrentPageSequence">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.GetCurrentPageSequenceMarkers">
            <summary>
                Auxillary function for retrieving markers.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.Apoc.StreamRenderer.RenderQueueEntry">
            <summary>
                A RenderQueueEntry consists of the Page to be queued, plus a list 
                of outstanding ID references that need to be resolved before the 
                Page can be renderered.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.RenderQueueEntry.page">
            <summary>
                The Page that has outstanding ID references.
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.RenderQueueEntry.outer">
            <summary>
                MG - to replace the outer this Java nonsense */
            </summary>
        </member>
        <member name="F:Telerik.Web.Apoc.StreamRenderer.RenderQueueEntry.unresolvedIdReferences">
            <summary>
                A list of ID references (names).
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.StreamRenderer.RenderQueueEntry.isResolved">
            <summary>
                See if the outstanding references are resolved in the current 
                copy of IDReferences.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.Apoc.XslTransformer">
            <summary>
                Provides a static method that applies an 
                XSL stylesheet to an XML document
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.XslTransformer.#ctor">
            <summary>
                Private constructor to prevent instantiation
            </summary>
        </member>
        <member name="M:Telerik.Web.Apoc.XslTransformer.Transform(System.String,System.String)">
            <summary>
                Applies the style sheet <i>xslFile</i> to the XML document 
                identified by <i>xmlFile</i>.    
            </summary>
            <param name="xmlFile">Path to an XML document</param>
            <param name="xslFile">Path to an XSL stylesheet</param>
            <returns>A Stream representing a sequence of XSL:FO elements</returns>
            <exception cref="T:Telerik.Web.Apoc.ApocException">
                The files <i>xmlFile</i> and <i>xslFile</i> do not exist or are 
                inaccessible.  The XSL file cannot be compiled
            </exception>
            <remarks>
                This method will create a temporary filename in the system's 
                temporary directory, which is automatically deleted when the 
                returned stream is closed.
                <seealso cref="T:System.Xml.Xsl.XslTransform"/>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.AsyncUpload.RadAsyncUploadClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Upload.RadUploadClientSide">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.BinaryImageFilter.ProcessImage(System.Byte[])">
            <summary>
            Process image data by applying the filter transformations
            </summary>
            <param name="input">data to be processed</param>
            <returns>processed data</returns>
        </member>
        <member name="P:Telerik.Web.UI.BinaryImageFilter.Name">
            <summary>
            Gets the filter's name
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.BinaryImageFilterProcessor">
            <exclude/>
            <excludetoc/>
            <summary>
            Intended for internal use only
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IPersistenMedia">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.CachePersistenMedia">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadBinaryImage">
            <summary>
            Represents a control which is capable of displaying images from a binary data
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadBinaryImage.RenderContents(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadBinaryImage.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds HTML attributes and styles that need to be rendered to the specified 
            <see cref="T:System.Web.UI.HtmlTextWriterTag"/>. This method is used primarily
            by control developers.
            </summary>
            <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter"/> that
            represents the output stream to render HTML content on the client. 
                            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadBinaryImage.SaveViewState">
            <summary>
            Saves any state that was modified after the 
            <see cref="M:System.Web.UI.WebControls.Style.TrackViewState"/> method was
            invoked.
            </summary>
            <returns>
            An object that contains the current view state of the control; otherwise, if
            there is no view state associated with the control, null.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.TagKey">
            <summary>
            Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag"/> value that corresponds
            to this Web server control. This property is used primarily by control
            developers.
            </summary>
            <returns>
            One of the <see cref="T:System.Web.UI.HtmlTextWriterTag"/> enumeration values.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.ImageAlign">
            <summary>
            Gets or sets the alignment of the <see cref="T:Telerik.Web.UI.RadBinaryImage"/> control in relation to other elements on
            the Web page.
            </summary>
            <exception cref="T:System.ArgumentOutOfRangeException"></exception>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.AlternateText">
            <summary>
            Gets or sets the alternate text displayed in the Image control when the image
            is unavailable. Browsers that support the ToolTips feature display this text as
            a <c>ToolTip</c>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.DescriptionUrl">
            <summary>
            The URL for the file that contains a detailed description for the image. The
            default is an empty string ("").
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.GenerateEmptyAlternateText">
            <summary>
            Gets or sets a value indicating whether the control generates an alternate text
            attribute for an empty string value. The default value is false
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.PersistDataIfNotVisible">
            <summary>
            Gets or sets a value indicating whether the image data will 
            be persisted if control is invisible
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.ImageUrl">
            <summary>
            Gets or sets the location of an image to display in the 
            <see cref="T:Telerik.Web.UI.RadBinaryImage"/> control.
            </summary>
             <remarks>
             Applicable only when <see cref="P:Telerik.Web.UI.RadBinaryImage.DataValue"/> property is not set.
             </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler from which the image will be served
            </summary>
            <exception cref="T:System.ArgumentException"></exception>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.ImagePersister">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.IRadImagePersister"/> instance which is responsible for
            saving and loading image's data 
            </summary>
             <remarks>
             This should be an instance of same type as <see cref="T:Telerik.Web.UI.RadBinaryImageHandler"/>
             's ImagePersister
             </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.DataValue">
            <summary>
            Gets or sets binary data to which control will be bound to
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.Filters">
            <summary>
            Contains collections of <see cref="T:Telerik.Web.UI.BinaryImageFilter"/> which will be applied to image's data
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.SavedImageName">
            <summary>
            Get or set the name of the file which will appear inside of the SaveAs
            browser dialog 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImage.AutoAdjustImageControlSize">
            <summary>
            Specifies if the HTML image element's dimensions are inferred from image's binary data
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadBinaryImageHandler">
            <summary>
            Represents an object which can server <see cref="T:Telerik.Web.UI.RadBinaryImage"/>'s content
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadBinaryImageHandler.ProcessRequest(System.Web.HttpContext)">
            <summary>
            Enables processing of HTTP Web requests by a custom HttpHandler that implements
            the <see cref="T:System.Web.IHttpHandler"/> interface.
            </summary>
            <param name="context">An <see cref="T:System.Web.HttpContext"/> object that
            provides references to the intrinsic server objects (for example, Request,
            Response, Session, and Server) used to service HTTP requests. 
                            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadBinaryImageHandler.ImagePersister">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.IRadImagePersister"/> instance which is responsible for
            saving and loading image's data 
            </summary>
             <remarks>
             This should be an instance of same type as <see cref="T:Telerik.Web.UI.RadBinaryImage"/>'s
             ImagePersister
             </remarks>
        </member>
        <member name="T:Telerik.Web.UI.ImageHttpResponseWrapper">
            <exclude/>
            <excludetoc/>
            <summary>
            Intended for internal use only
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IRadImagePersister">
            <summary>
            Represents an object which can handle image data's storage and retrieval
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IRadImagePersister.GenerateBinaryImageUrl(System.String)">
            <summary>
            Generates an Uri at which the image's data can be accessed
            </summary>
            <param name="imageHandlerUrl">URL of the HTTPHandler from which image data
            should be served</param>
            <returns>Generated Uri</returns>
        </member>
        <member name="M:Telerik.Web.UI.IRadImagePersister.SaveImage(System.Byte[])">
            <summary>
            Saves a image's data to storage
            </summary>
            <param name="image">Image's binary data</param>
        </member>
        <member name="M:Telerik.Web.UI.IRadImagePersister.LoadImage">
            <summary>
            Retrieves image binary data from storage 
            </summary>
            <returns>image's data</returns>
        </member>
        <member name="T:Telerik.Web.UI.BinarImageDataContainer">
            <summary>
            Represents an object which contains RadBinaryImage's data content
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadImageHttpCachePersister">
            <summary>
            Represents an object which can handle image data's storage and retrieval using HTTPCache
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageHttpCachePersister.#ctor">
            <summary>
            Construct object instance
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadImageHttpCachePersister.GenerateBinaryImageUrl(System.String)">
            <summary>
            Generates an Uri at which the image's data can be accessed
            </summary>
            <param name="imageHandlerUrl">URL of the HTTPHandler from which image data
            should be served</param>
            <returns>Generated Uri</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadImageHttpCachePersister.SaveImage(System.Byte[])">
            <summary>
            Saves a image's data to storage
            </summary>
            <param name="image">Image's binary data</param>
        </member>
        <member name="M:Telerik.Web.UI.RadImageHttpCachePersister.LoadImage">
            <summary>
            Retrieves image binary data from storage 
            </summary>
            <returns>image's data</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadImageHttpCachePersister.ImageKey">
            <summary>
            Gets portion of generated Uri which represents image's identification key value
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageHttpCachePersister.UrlKey">
            <summary>
            Gets portion of generated Uri which represents image's identification key name
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadImageHttpCachePersister.CurrentContext">
            <summary>
            Gets current <see cref="T:System.Web.HttpContext"/> instance
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.BinaryImageUrlHelper">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.CalendarAnimationSettings.Duration">
            <summary>Gets or sets the animation duration in milliseconds.</summary>
            <value>
            	An integer representing the animation duration in milliseconds. 
            	The default value is 300 milliseconds.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.CalendarAnimationSettings.Type">
            <summary>
            Gets or sets the calendar animation type
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CalendarAnimationType">
            <summary>
            Summary description for CalendarAnimationType.
            Fade - The calendar or timeview fades in and out
            Slide - The calendar or timeview slides in and out
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.CalendarAnimationType.Fade">
            <summary>
            The calendar or timeview fades in and out
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.CalendarAnimationType.Slide">
            <summary>
            The calendar or timeview slides in and out
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AutoBotDiscoveryProtector">
            <summary>
            This spam protector implements different startegies for automatic
            robot discovery.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ISpamProtector">
            <summary>
            Interface defining a spam protector
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ISpamProtector.AddChildControls(System.Web.UI.Control)">
            <summary>
            Add the child controls for this spam protector to the main contrainer with controls
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.ISpamProtector.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Load the post back data for the spam protector
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.ISpamProtector.ValidatePostBackData">
            <summary>
            Validate the post back data
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ISpamProtector.PreRenderHandler">
            <summary>
            Customize ASP.NET PreRender event
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISpamProtector.IsValid">
            <summary>
            Gets an indicator wherher the user is validated ot not
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISpamProtector.Visible">
            <summary>
            Is the spam protector visible in the captcha control or not.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AutoBotDiscoveryProtector.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.AutoBotDiscoveryProtector"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AutoBotDiscoveryProtector.AddChildControls(System.Web.UI.Control)">
            <summary>
            Add the child controls for this spam protector to the main contrainer with controls
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.AutoBotDiscoveryProtector.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Load the post back data for the spam protector
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.AutoBotDiscoveryProtector.ValidatePostBackData">
            <summary>
            Validate the post back data
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AutoBotDiscoveryProtector.AutoBotFindStrats">
            <summary>
            List of all enabled automatic robot discovery strategies
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.AutoBotDiscoveryProtector.IsValid">
            <summary>
            Gets an indicator whether the user is validated ot not
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.AutoBotDiscoveryProtector.InvisibleTextBoxStrat">
            <summary>
            Gets or sets the hidden text box strategy.
            </summary>
            <value>The hidden text box strat.</value>
        </member>
        <member name="P:Telerik.Web.UI.AutoBotDiscoveryProtector.MinSubmTimeStrat">
            <summary>
            Gets or sets the minimum submission time strategy.
            </summary>
            <value>The minimum submission time strategy.</value>
        </member>
        <member name="T:Telerik.Web.UI.IAutoBotDiscoveryStrategy">
            <summary>
            Interface defining an auto bot discovery strategy
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLink.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.BotTrapLink"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLink.AddChildControls(System.Web.UI.Control)">
            <summary>
            Add the child controls for this spam protector to the main contrainer with controls
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLink.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Load the post back data for the spam protector
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLink.ValidatePostBackData">
            <summary>
            Validate the post back data
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLink.RemoveGuidFromCache">
            <summary>
            Removes the GUID from cache.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.BotTrapLink.IsValid">
            <summary>
            Gets an indicator wherher the user is validated ot not
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.BotTrapLink.ErrorMessage">
            <summary>
            Gets or sets an error message displayed when the user is not validated
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.BotTrapLink.LabelText">
            <summary>
            Gets or sets the label text.
            </summary>
            <value>The label text.</value>
        </member>
        <member name="P:Telerik.Web.UI.BotTrapLink.PrevGuid">
            <summary>
            Gets or sets the GUID of the previous session.
            </summary>
            <value>The GUID of the previous session.</value>
        </member>
        <member name="T:Telerik.Web.UI.BotTrapLinkHandler">
            <summary>
            Bot trap stream HttpModule. Adds Bot Guids to the cache.
            <remarks>
            You *MUST* enable this HttpHandler in your web.config, like so:
                &lt;httpHandlers&gt;
                    &lt;add verb="GET" path="BotHandler.axd" type="Telerik.Web.UI.BotTrapLinkHandler, Telerik.Web.UI" /&gt;
                &lt;/httpHandlers&gt;
            </remarks>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.BotTrapLinkHandler.ProcessRequest(System.Web.HttpContext)">
            <summary>
            Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"></see> interface.
            </summary>
            <param name="context">An <see cref="T:System.Web.HttpContext"></see> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
        </member>
        <member name="P:Telerik.Web.UI.BotTrapLinkHandler.IsReusable">
            <summary>
            Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"></see> instance.
            </summary>
            <value></value>
            <returns>true if the <see cref="T:System.Web.IHttpHandler"></see> instance is reusable; otherwise, false.</returns>
        </member>
        <member name="T:Telerik.Web.UI.InvisibleTextBox">
            <summary>
            Auto bot discovery strategy relying on whether a hidden textbox in the form
            will be filled or not in order to determine the session as being from a human or not.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.InvisibleTextBox.AddChildControls(System.Web.UI.Control)">
            <summary>
            Add the child controls for this spam protector to the main contrainer with controls
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.InvisibleTextBox.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Load the post back data for the spam protector
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.InvisibleTextBox.ValidatePostBackData">
            <summary>
            Validate the post back data
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InvisibleTextBox.IsValid">
            <summary>
            Gets an indicator whether the user is validated ot not
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.InvisibleTextBox.LabelText">
            <summary>
            Gets or sets the label text.
            </summary>
            <value>The label text.</value>
        </member>
        <member name="T:Telerik.Web.UI.MinimumSubmissionTime">
            <summary>
            This automatic robot discovery strategy relies on the submission time of the form.
            If it is less than a predefined time, then this session is considered to be from a robot.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.MinimumSubmissionTime.AddChildControls(System.Web.UI.Control)">
            <summary>
            Adds the child controls.
            </summary>
            <param name="container">The container.</param>
        </member>
        <member name="M:Telerik.Web.UI.MinimumSubmissionTime.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Loads the post back data.
            </summary>
            <param name="container">The container.</param>
        </member>
        <member name="M:Telerik.Web.UI.MinimumSubmissionTime.ValidatePostBackData">
            <summary>
            Validates the post back data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.MinimumSubmissionTime.IsValid">
            <summary>
            Gets an indicator whether the user is validated ot not
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.MinimumSubmissionTime.MinTimeout">
            <summary>
            Gets or sets the minimum time in which the form should not be submitted.
            </summary>
            <value>The minimum time in which the form should not be submitted.</value>
        </member>
        <member name="P:Telerik.Web.UI.MinimumSubmissionTime.RenderedAt">
            <summary>
            Gets or sets the time this instance was rendered at.
            </summary>
            <value>The time this instance was rendered at.</value>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaBaseValidator.EvaluateIsValid">
            <summary>
            Determines whether the RadCaptcha control is valid.
            </summary>
            <returns>The bool value indicating whether the Captcha is valid.</returns>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaBaseValidator.ValidationGroup">
            <summary>
            Gets or sets the name of the validation group to which this validation control belongs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaBaseValidator.ParentCaptcha">
            <summary>
            The parent captcha control, which the custom validator belongs to.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaAudioHandler">
            <summary>
            Captcha audio stream HttpModule. "Speaks" the Captcha code,
            renders them to memory and streams it to the browser.
            <remarks>
            To use this handler, add it in your web.config, like so:
                &lt;httpHandlers&gt;
                    &lt;add verb="GET" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /&gt;
                &lt;/httpHandlers&gt;
            </remarks>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaAudioHandler.ProcessRequest(System.Web.HttpContext)">
            <summary>
            Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"></see> interface.
            </summary>
            <param name="context">An <see cref="T:System.Web.HttpContext"></see> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaAudioHandler.IsReusable">
            <summary>
            Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"></see> instance.
            </summary>
            <value></value>
            <returns>true if the <see cref="T:System.Web.IHttpHandler"></see> instance is reusable; otherwise, false.</returns>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaFontWarpFactor">
            <summary>
            Amount of random font warping to apply to rendered text
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaBackgroundNoiseLevel">
            <summary>
            Amount of background noise to add to rendered image
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaLineNoiseLevel">
            <summary>
            Amount of curved line noise to add to rendered image
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaImage">
            <summary>
            RadCaptcha image generation class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.RenderImage">
            <summary>
            Forces a new Captcha image to be generated using current property value settings.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.RandomFontFamily">
            <summary>
            Returns a random font family from the font whitelist
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.IsOffensiveWord">
            <summary>
            Checks whether the current code is an offensive word.
            </summary>
            <returns>True if the word is offensive.</returns>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.GenerateCode(System.Boolean)">
            <summary>
            Generates a new RadCaptcha code.
            </summary>
            <param name="filterWords">Bool value that indicates whether or not bad words will be filtered. 
            RadCaptcha has a built-in list of words that should not appear on the image.</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.GenerateCode">
            <summary>
            Generates a new RadCaptcha code.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.GenerateRandomText">
            <summary>
            generate random text for the RadCaptcha
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.RandomPoint(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Returns a random point within the specified x and y ranges
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.RandomPoint(System.Drawing.Rectangle)">
            <summary>
            Returns a random point within the specified rectangle
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.TextPath(System.String,System.Drawing.Font,System.Drawing.Rectangle)">
            <summary>
            Returns a GraphicsPath containing the specified string and font
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.GetFont">
            <summary>
            Returns the RadCaptcha font in an appropriate size 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.GenerateImagePrivate">
            <summary>
            Renders the RadCaptcha image
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.WarpText(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Rectangle)">
            <summary>
            Warp the provided text GraphicsPath by a variable amount
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.AddNoise(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
            Add a variable level of graphic noise to the image
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImage.AddLine(System.Drawing.Graphics,System.Drawing.Rectangle)">
            <summary>
            Add variable level of curved lines to the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.UniqueId">
            <summary>
            Gets a GUID that uniquely identifies this RadCaptcha
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.RenderedAt">
            <summary>
            Gets the date and time this image was last rendered
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.RenderImageOnly">
            <summary>
            Gets or sets bool value that indicates
            whether the RadCaptcha Image will only be rendered on the page (without the textbox and Label).
            </summary>
            <value>Bool value indicating whether the RadCaptcha will only be rendered on the page.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.FontFamily">
            <summary>
            Gets or sets the font used to render RadCaptcha text. 
            </summary>
            <value>The name of the font used to render RadCaptcha text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.UseRandomFont">
            <summary>
            Gets or sets a bool value indicating 
            whether a random font will be used to generate the CaptchaImage text.
            </summary>
            <value>Bool value indicating whether a random font will be used to generate the CaptchaImage text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.FontWarp">
            <summary>
            Gets or sets the amount of random font warping used on the RadCaptcha text.
            </summary>
            <value>The amount of random font warping used on the RadCaptcha text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.BackgroundNoise">
            <summary>
            Gets or sets the amount of background noise to generate in the RadCaptcha image.
            </summary>
            <value>The amount of background noise to generate in the RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.LineNoise">
            <summary>
            Gets or sets the line noise level to the RadCaptcha image.
            </summary>
            <value>The line noise level to the RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.TextChars">
            <summary>
            Gets or sets the characters used to render RadCaptcha text. 
            A character will be picked randomly from the string.
            </summary>
            <value>The characters used to render RadCaptcha text. 
            A character will be picked randomly from the string.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.CharSet">
            <summary>
            Gets or sets a custom Character Set, from which the characters 
            used to render RadCaptcha, are randomly chosen. The <see cref="P:Telerik.Web.UI.CaptchaImage.TextChars">TextChars</see> property must be set to CustomCharSet. 
            </summary>
            <value>The custom characters used to RadCaptcha text.
            A character will be picked randomly from the string.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.TextColor">
            <summary>
            Gets or sets the color of the RadCaptcha text.
            </summary>
            <value>The color of the RadCaptcha text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.BackgroundColor">
            <summary>
            Gets or sets the background color of the CaptchaImage.
            </summary>
            <value>The background color of the CaptchaImage.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.TextLength">
            <summary>
            Gets or sets the number of CaptchaChars used in the RadCaptcha text.
            </summary>
            <value>Number of CaptchaChars used in the RadCaptcha text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.Text">
            <summary>
            Gets the randomly generated RadCaptcha text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.Width">
            <summary>
            Gets or sets the width of the RadCaptcha image.
            </summary>
            <value>The width of the RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.Height">
            <summary>
            Gets or sets the height of the RadCaptcha image.
            </summary>
            <value>The height of the RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.FontWhitelist">
            <summary>
            Gets or sets a semicolon-delimited list of valid fonts to use when no font is provided.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.ImageAlternativeText">
            <summary>
            Gets or sets the RadCaptcha image alternative text.
            </summary>
            <value>The RadCaptcha image alternative text.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.ImageCssClass">
            <summary>
            Gets or sets the RadCaptcha image CSS class.
            </summary>
            <value>The RadCaptcha image CSS class.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.EnableCaptchaAudio">
            <summary>
            Gets or sets the bool value indicating whether the CaptchaAudio will be enabled.
            </summary>
            <value>Gets or sets the bool value indicating whether the CaptchaAudio will be enabled.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.AudioFilesPath">
            <summary>
            Gets or sets the path to the directory where the audio (.wav) files are located.
            The default value is <strong>~/App_Data/RadCaptcha</strong>.
            </summary>
            <value>The path to the directory where the audio (.wav) files are located.</value>
            <remarks>
            Use the <strong>AudioFilesPath</strong> property to specify the directory where the audio (*.wav) files are located, and from which the 
            audio code is generated. The audio files must be named "[Char]".wav (i.e. A.wav, B.wav, C.wav, 1.wav, 2.wav) and should contain the audio that
            corresponds to the specific character. Place the RadCaptcha folder (provided with the installation) in the App_Data directory of your WebSite.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.UseAudioFiles">
            <summary>
            Gets or sets a bool value indicating whether the audio code will be generated by concatenation of the audio files from a given folder.
            </summary>
            <value>The bool value indicating whether the audio code will be generated by concatenation of the audio files from a given folder.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.PreviousText">
            <summary>
            Gets the previous text of the CaptchaImage.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImage.PersistCodeDuringAjax">
            <summary>
            Gets or sets a bool value that indicates whether or not the Captcha will persist the code during Ajax requests that do not affect
            the RadCaptcha control. The default is <strong>false</strong>, which means a new code will be generated on <strong>every</strong> trip to the server (no matter if full or partial postback).
            Note: This property is useful when there is another Ajax panel on the page that does not update the Captcha. Setting it to true will cause the RadCaptcha control to persist its code during the Ajax requests.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaImageHandler">
            <summary>
            Captcha image stream HttpModule. Retrieves RadCaptcha objects from cache (or session), 
            renders them to memory, and streams them to the browser.
            <remarks>
            To use this handler, add it in your web.config, like so:
                &lt;httpHandlers&gt;
                    &lt;add verb="GET" path="Telerik.Web.UI.WebResource.axd" type="Telerik.Web.UI.WebResource" /&gt;
                &lt;/httpHandlers&gt;
            </remarks>
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaImageHandler.ProcessRequest(System.Web.HttpContext)">
            <summary>
            Enables processing of HTTP Web requests by a custom HttpHandler that implements the <see cref="T:System.Web.IHttpHandler"></see> interface.
            </summary>
            <param name="context">An <see cref="T:System.Web.HttpContext"></see> object that provides references to the intrinsic server objects (for example, Request, Response, Session, and Server) used to service HTTP requests.</param>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaImageHandler.IsReusable">
            <summary>
            Gets a value indicating whether another request can use the <see cref="T:System.Web.IHttpHandler"></see> instance.
            </summary>
            <value></value>
            <returns>true if the <see cref="T:System.Web.IHttpHandler"></see> instance is reusable; otherwise, false.</returns>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaImageHelper">
            <summary>
            Internal helper class that retrieves the CaptchaImage form the Cache or Session. 
            Used in CaptchaImageHandler and CaptchaAudioHandler classes.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaImageStorage">
            <summary>
            Storage medium of the RadCaptcha Image
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.CaptchaProtector">
            <summary>
            This spam protector represents a RadCaptcha image with obfuscated text.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.CaptchaProtector"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.AddChildControls(System.Web.UI.Control)">
            <summary>
            Add the child controls for this spam protector to the main contrainer with controls
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.ProcessVisibleControls(System.Boolean)">
            <summary>
            Makes sure the correct controls are shown on the RadCaptcha.
            </summary>
            <param name="value">To show or not the controls.</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.GetAudioHandlerUrl">
            <summary>
            Returns the handler URL that points to the Captcha Audio code
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.LoadPostBackData(System.Web.UI.Control)">
            <summary>
            Load the post back data for the spam protector
            </summary>
            <param name="container">The main container with controls</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.ValidatePostBackData">
            <summary>
            Validate the post back data
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.GetCachedCaptcha(System.String)">
            <summary>
            Gets the cached RadCaptcha.
            </summary>
            <param name="guid">The GUID indicating the generated RadCaptcha.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.RemoveCachedCaptcha(System.String)">
            <summary>
            Removes the cached RadCaptcha.
            </summary>
            <param name="guid">The GUID indicating the generated RadCaptcha.</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.ValidateCaptcha(System.String)">
            <summary>
            Validate the user's text against the RadCaptcha text
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaProtector.GenerateNewCaptcha">
            <summary>
            Generate a new RadCaptcha and store it in the ASP.NET Cache by unique GUID
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.IsValid">
            <summary>
            Indicator whether the user is validated ot not
            </summary>
            <value></value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.PrevGuid">
            <summary>
            Gets or sets the previous GUID of the RadCaptcha image.
            </summary>
            <value>The previous GUID of the RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.MaxTimeout">
            <summary>
            Gets or sets the maximum number of minutes RadCaptcha will be cached and valid. 
            If you're too slow, you may be a RadCaptcha hack attempt. Set to zero to disable.
            </summary>
            <value>The maximum number of minutes RadCaptcha will be cached and valid. 
            If you're too slow, you may be a RadCaptcha hack attempt. Set to zero to disable.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadCaptcha input textbox.
            </summary>
            <value>The CSS class applied to the RadCaptcha input textbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.CaptchaImage">
            <summary>
            Gets or sets the RadCaptcha image.
            </summary>
            <value>The RadCaptcha image.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxTabIndex">
            <summary>
            Gets or sets the tabindex of the RadCaptcha input text box.
            </summary>
            <value>The tabindex of the RadCaptcha input text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxAccessKey">
            <summary>
            Gets or sets the RadCaptcha input text box access key.
            </summary>
            <value>The RadCaptcha input text box access key.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxTitle">
            <summary>
            Gets or sets the RadCaptcha input text box title.
            </summary>
            <value>The RadCaptcha input text box title.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxLabel">
            <summary>
            Gets or sets the label which explains that the user needs to input the RadCaptcha text box.
            </summary>
            <value>The label which explains that the user needs to input this text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.TextBoxLabelCssClass">
            <summary>
            Gets or sets the CSS class to the label which explains that the user needs to input the RadCaptcha text box.
            </summary>
            <value>The CSS class to the label which explains that the user needs to input the RadCaptcha text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.IsCaseIgnored">
            <summary>
            Gets or sets a bool value indicating whether the RadCaptcha should ignore  
            the case of the letters or not.
            </summary>
            <value>Bool value indicating whether the RadCaptcha should ignore the case or not.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.CaptchaImageStoredIn">
            <summary>
            Gets or sets the storage medium for the CaptchaImage.
            </summary>
            <value>Gets or sets a value indication where the CaptchaImage is stored.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.EnableRefreshImage">
            <summary>
            Gets or sets a bool value indicating whether or not the RadCaptchaImage can be refreshed.
            </summary>
            <value>Gets or sets a bool value indicating whether or not the RadCaptchaImage can be refreshed.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.RefreshImageAccessKey">
            <summary>
            Gets or sets the access key for generating new captcha image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.AudioAccessKey">
            <summary>
            Gets or sets the access key for the Get Audio Code link
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.LinkButtonText">
            <summary>
            Gets or sets the text of the LinkButton that generates new CaptchaImage.
            </summary>
            <value>Gets or sets the text of the LinkButton that generates new CaptchaImage</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.UserEntry">
            <summary>
            Gets or sets the code entered by the user when custom textbox is used (internal).
            </summary>
            <value>Gets or sets the code entered by the user when custom textbox is used.</value>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaProtector.IsDesignMode">
            <summary>
            Gets a value indicating whether this instance is in design mode.
            </summary>
            <value>
            	<c>true</c> if this instance is in design mode; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaAudio.SpeakText">
            <summary>
            Speaks the currently saved text in the TextToSpeak property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaAudio.AudioMemoryStream">
            <summary>
            Gets the Memory stream to which the wave will be outputted.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaAudio.TextToSpeak">
            <summary>
            Gets the Text (code) to be spoken by the RadCaptcha.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CaptchaAudio.CanSpeak">
            <summary>
            Gets or sets a bool value indicating whether the Text (code)should be spoken or concatenated from the provided wav files.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaCombineAudio.ReadWaveHeader(System.String)">
            <summary>
            Get information about every audio file.
            </summary>
            <param name="filePath">The physical path to the file.</param>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaCombineAudio.WriteHeaderToOutputStream">
            <summary>
            Ouputs an empty wave file by writing its header.
            </summary>
            <returns>The memory stream of the empty file.</returns>
        </member>
        <member name="M:Telerik.Web.UI.CaptchaCombineAudio.Concatenate(System.String[])">
            <summary>
            Concatenates Audio Files (wav) into a single file.
            </summary>
            <param name="filePaths">The string array containing the physical path to each file.</param>
            <returns>The MemoryStream of the concatenated audio files.</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadCaptcha">
            <summary>
            This control serves as spam protection mechanism.
            It implements 3 strategies:
            1. Auto-detection - if this strategy is chosen, then we use predefined rules
            which decide whether the input comes from a robot or not. This strategy is not
            100% secure and some sophisticated robots may pass it so it should be used in
            personal websites with low traffic and where spam robots are not very likely to
            drop by. If such robots are found to visit the site, the use of the more secure
            strategy is more advisable.
            2. RadCaptcha - if this strategy is chosen, then an image with obfuscated
            text is displayed and the user is required to input this text in a
            textbox thus allowing the control to validate whether s/he is a robot
            or not. This is the most secure method to protect from spam but it is
            considered to be inaccessible because disabled people may not see the
            text in the image!
            TODO in future release: 3. Subscribe to anti-spam services. This last spam protection
            mechanism is used to validate the input against public or private web services
            which given the input return whether or not it is considered to be spam.
            Some services claim that they catch more than 90% of the spam so
            this type of protection is fairly secure and can be used in small to medium
            websites but not in large-scale websites.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.FindTextBox">
            <summary>
            Searches for the validated Text control
            </summary>
            <returns>A control that gets validated.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.LoadPostData(System.String,System.Collections.Specialized.NameValueCollection)">
            <summary>
            Retrieve the user's RadCaptcha input from the posted data
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.RaisePostDataChangedEvent">
            <summary>
            When implemented by a class, signals the server control to notify the ASP.NET application that the state of the control has changed.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.SaveControlState">
            <summary>
            Saves any server control state changes that have occurred since the time the page was posted back to the server.
            </summary>
            <returns>
            Returns the server control's current state. If there is no state associated with the control, this method returns null.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.LoadControlState(System.Object)">
            <summary>
            Loads the state of the control.
            </summary>
            <param name="state">The state.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.OnInit(System.EventArgs)">
            <summary>
            Raises the <see cref="E:System.Web.UI.Control.Init"></see> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"></see> object that contains the event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.OnUnload(System.EventArgs)">
            <summary>
            Raises the <see cref="E:System.Web.UI.Control.Unload"></see> event.
            </summary>
            <param name="e">An <see cref="T:System.EventArgs"></see> object that contains event data.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.Validate">
            <summary>
            Performs validation of the RadCaptcha control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCaptcha.EvaluateIsValid">
            <summary>
            Determines whether the RadCaptcha control is valid.
            </summary>
            <returns>The bool value that indicates whether the RadCaptcha is valid.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ErrorMessage">
            <summary>
            The error message text generated when the condition being validated fails.
            </summary>
            <value></value>
            <returns>The error message to generate.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.Display">
            <summary>
            Gets or sets display behavior of error message. 
            </summary>
            <value></value>
            <returns>The display behavior of the error message</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ForeColor">
            <summary>
            Gets or sets the fore color of the error message. 
            </summary>
            <value></value>
            <returns>The fore color of the error message.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.IsValid">
            <summary>
            Gets or sets a value indicating whether the user-entered content in the RadCaptcha control passes validation.
            </summary>
            <value></value>
            <returns>true if the content is valid; otherwise, false.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ValidationGroup">
            <summary>
            Gets or sets the validation group.
            </summary>
            <value>The validation group.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.Enabled">
            <summary>
            Gets or sets a value indicating whether the Web server control is enabled.
            </summary>
            <value></value>
            <returns>true if control is enabled; otherwise, false. The default is true.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ProtectionMode">
             <summary>
             Gets or sets which startegies are/to be used for automatic
             robot discovery.
             </summary>
             <value>The Modes used for Spam Protection. 
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler that serves the captcha image.
            </summary>
            <remarks>
            	<para>
            		The HTTPHandler should either be registered in the application configuration
            		file, or a file with the specified name should exist at the location, which
            		HttpHandlerUrl points to.
            	</para>
            	<para>
            		If a file is to serve the files, it should inherit the class Telerik.Web.UI.WebResource
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaMaxTimeout">
            <summary>
            Gets or sets the maximum number of minutes RadCaptcha will be cached and valid. 
            If you're too slow, you may be a RadCaptcha hack attempt. Set to zero to disable.
            </summary>
            <value>The maximum number of minutes RadCaptcha will be cached and valid. 
            If you're too slow, you may be a RadCaptcha hack attempt. Set to zero to disable.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaTextBoxCssClass">
            <summary>
            Gets or sets the CSS class applied to the RadCaptcha input textbox.
            </summary>
            <value>The CSS class applied to the RadCaptcha input textbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaTextBoxTitle">
            <summary>
            Gets or sets the title of the RadCaptcha input textbox.
            </summary>
            <value>The title for the RadCaptcha input textbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.TabIndex">
            <summary>
            Gets or sets the tabindex of the RadCaptcha text box.
            </summary>
            <value>The tabindex of the RadCaptcha text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.AccessKey">
            <summary>
            Gets or sets the RadCaptcha text box access key.
            </summary>
            <value>The RadCaptcha text box access key.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaTextBoxLabel">
            <summary>
            Gets or sets the label which explains that the user needs to input the RadCaptcha text box.
            </summary>
            <value>The label which explains that the user needs to input the RadCaptcha text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaTextBoxLabelCssClass">
            <summary>
            Gets or sets the CSS class to the label which explains that the user needs to input the RadCaptcha text box.
            </summary>
            <value>The CSS class to the label which explains that the user needs to input the RadCaptcha text box.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ValidatedTextBoxID">
            <summary>
            Gets or sets the ID of the textbox to be validated, 
            when only the RadCaptcha image is rendered on the page.
            </summary>
            <value>String value indicating the ID of the textbox to be validated, 
            when only the RadCaptcha image is rendered.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ValidatedTextBox">
            <summary>
            Gets the TextBox that is being validated by the RadCaptcha.
            </summary>
            <value>Returns a TextBox object that is being validated by the RadCaptcha.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ValidatedTextControl">
            <summary>
            Gets the ITextControl that is being validated by the RadCaptcha.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.IgnoreCase">
            <summary>
            Gets or sets a bool value indicating whether the RadCaptcha should ignore  
            the case of the letters or not.
            </summary>
            <value>Bool value indicating whether the RadCaptcha should ignore the case or not.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.ImageStorageLocation">
            <summary>
            Gets or sets the storage medium for the CaptchaImage.
            </summary>
            <remarks>When the image is stored in the session the RadCaptcha HttpHandler 
            defintion (in the web.config file) must be changed from type="Telerik.Web.UI.WebResource" to 
            type="Telerik.Web.UI.WebResourceSession" so that the image can be retrieved from the Session.</remarks>
            <value>Gets or sets a value indication where the CaptchaImage is stored.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.EnableRefreshImage">
            <summary>
            Gets or sets a bool value indicating whether or not the RadCaptchaImage can be refreshed. 
            The "rcRefreshImage" CSS class should be used for changing the skinning of the LinkButton,
            that generates the new image.
            </summary>
            <value>Gets or sets a bool value indicating whether or not the RadCaptchaImage can be refreshed.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.RefreshImageAccessKey">
            <summary>
            Gets or sets the access key for generating new captcha image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.AudioAccessKey">
            <summary>
            Gets or sets the access key for the Get Audio Code link
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaLinkButtonText">
            <summary>
            Gets or sets the text of the LinkButton that generates new CaptchaImage.
            </summary>
            <value>Gets or sets the text of the LinkButton that generates new CaptchaImage</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.CaptchaAudioLinkButtonText">
            <summary>
            Gets or sets the text of the LinkButton that gets the Captcha Audio Code.
            </summary>
            <value>Gets or sets the text of the LinkButton that gets the Captcha Audio Code.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.InvisibleTextBoxLabel">
            <summary>
            Gets or sets the invisible textbox strategy label text.
            </summary>
            <value>The invisible textbox strategy label text.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadCaptcha.MinTimeout">
            <summary>
            Gets or sets the minimum number of seconds form must be displayed 
            before it is valid. If you're too fast, you must be a robot.
            </summary>
            <value>The minimum number of seconds form must be displayed before it is valid.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadCaptcha.ProtectionStrategies">
            <summary>
            Strategies for Spam Protection. Set in the ProtectionMode property.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadCaptcha.ProtectionStrategies.Captcha">
            <summary>
            When Protection Mode is set to Captcha only Captcha Protection Mode is used.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadCaptcha.ProtectionStrategies.InvisibleTextBox">
            <summary>
            When Protection Mode is set to InvisibleTextBox, a invisible text box is rendered which bots fill.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadCaptcha.ProtectionStrategies.MinimumTimeout">
            <summary>
            When Protection Mode is set to MinimumTimeout, the form should not be submitted before a Minimum 
            time interval has passed. Bots submit the form many times in short interval.
            </summary>
        </member>
        <member name="T:Telerik.Charting.RegionClickEventArgs">
            <summary>
            Event arguments when a chart element is clicked.
            </summary>
        </member>
        <member name="F:Telerik.Charting.RegionClickEventArgs.activeRegion">
            <summary>
            Reverse link to a parent
            </summary>
        </member>
        <member name="M:Telerik.Charting.RegionClickEventArgs.#ctor(Telerik.Charting.IActiveRegion)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Charting.RegionClickEventArgs"/> class.
            </summary>
            <param name="element">The element.</param>
        </member>
        <member name="P:Telerik.Charting.RegionClickEventArgs.Element">
            <summary>
            Reverse link to a parent
            </summary>
        </member>
        <member name="T:Telerik.Charting.ActiveRegion">
            <summary>Represents the active region of the chart element/item.</summary>
        </member>
        <member name="T:Telerik.Charting.StateManagedObject">
            <summary>
            Base class implements IStateManager
            </summary>
        </member>
        <member name="T:Telerik.Charting.IChartingStateManagedItem">
            <summary>
            Common interface for a State managed collection items
            </summary>
        </member>
        <member name="T:Telerik.Charting.IChartingStateManager">
            <summary>
            The common interface for all chart elements support View State tracking
            </summary>
        </member>
        <member name="M:Telerik.Charting.IChartingStateManager.LoadViewState(System.Object)">
            <summary>
            Loads data from a View State
            </summary>
            <param name="state">View Sate to load data from</param>
        </member>
        <member name="M:Telerik.Charting.IChartingStateManager.SaveViewState">
            <summary>
            Saves object data to a View State
            </summary>
            <returns>Saved View State</returns>
        </member>
        <member name="M:Telerik.Charting.IChartingStateManager.TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.IChartingStateManagedItem.SetDirty">
            <summary>
            Sets item dirty state
            </summary>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.Telerik#Charting#IChartingStateManager#LoadViewState(System.Object)">
            <summary>
            Loads data from a view state
            </summary>
            <param name="state">View state to load data from</param>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.Telerik#Charting#IChartingStateManager#SaveViewState">
            <summary>
            Saves object data to a view state
            </summary>
            <returns>Saved view state object</returns>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.Telerik#Charting#IChartingStateManager#TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.CloneState">
            <summary>
            Makes a view state clone
            </summary>
            <returns>StateBag</returns>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.SaveViewState">
            <summary>
            Saves object data to a view state
            </summary>
            <returns>Saved view state object</returns>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.LoadViewState(System.Object)">
            <summary>
            Loads data from a view state
            </summary>
            <param name="state">View state to load data from</param>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.SetDirty">
            <summary>
            Sets the item dirty state
            </summary>
        </member>
        <member name="M:Telerik.Charting.StateManagedObject.ToString">
            <exclude/>
            <excludetoc/>
            <summary>
            ToString() override. Used in the properties grid to avoid object type showing.
            </summary>
            <returns>Empty string</returns>
        </member>
        <member name="P:Telerik.Charting.StateManagedObject.ViewStateIgnoresCase">
            <summary>
            Gets if view sate should ignore case
            </summary>
        </member>
        <member name="P:Telerik.Charting.StateManagedObject.ViewState">
            <summary>
            Sate bag to store view state content
            </summary>
        </member>
        <member name="P:Telerik.Charting.StateManagedObject.Telerik#Charting#IChartingStateManager#IsTrackingViewState">
            <summary>
            Is view state tracking changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.ActiveRegion.activeRegionParent">
            <summary>
            Parent chart element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ActiveRegion.activeRegionList">
            <summary>
            List contains all regions for element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.#ctor">
            <summary>Creates a new instance of the class.</summary>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.#ctor(System.Object)">
            <summary>Creates a new instance of the class.</summary>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.CheckPoint(System.Drawing.PointF,System.Boolean)">
            <summary>
            Checks whether point lies inside region
            </summary>
            <param name="point">The point.</param>
            <param name="onclick">if set to <c>true</c> [onclick].</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.CheckPoint(System.Drawing.PointF)">
            <summary>
            Checks whether point lies inside region
            </summary>
            <param name="point">The point.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.GoToUrl">
            <summary>
            Opens a web browser to the specified URL
            </summary>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.IsEmpty">
            <summary>
            Returns true if ActiveRegion contains no data
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.GetActiveRegions(System.Drawing.PointF,Telerik.Charting.IContainer)">
            <summary>
            Determine on which elements(if its visually intersect) of chart click occur
            </summary>
            <param name="point">Click coordinates</param>
            <param name="container">Container object</param>
            <returns>Active region object collection</returns>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.HasClickEvent">
            <summary>
            Has click event or not
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.OnClick">
            <summary>
            Called after a Click event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ActiveRegion.OnClick(System.Object)">
            <summary>
            Called when [click].
            </summary>
            <param name="sender">The sender.</param>
        </member>
        <member name="P:Telerik.Charting.ActiveRegion.Parent">
            <summary>Reference to the parent.</summary>
        </member>
        <member name="P:Telerik.Charting.ActiveRegion.Region">
            <summary>
             Define a graphic path
            </summary>
        </member>
        <member name="P:Telerik.Charting.ActiveRegion.Url">
            <summary>
            URL
            </summary>
        </member>
        <member name="P:Telerik.Charting.ActiveRegion.Tooltip">
            <summary>
            Tooltip
            </summary>
        </member>
        <member name="P:Telerik.Charting.ActiveRegion.Attributes">
            <summary>
            Attributes
            </summary>
        </member>
        <member name="E:Telerik.Charting.ActiveRegion.Click">
            <summary>
            Fires when the chart element to which the active region belongs is
            clicked.
            </summary>
        </member>
        <member name="T:Telerik.Charting.IActiveRegion">
            <exclude/>
            <excludetoc/>
            <summary>Base Interface for classes which support click feature</summary>
        </member>
        <member name="P:Telerik.Charting.IActiveRegion.ActiveRegion">
            <summary>
            Active region object
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartGraphics">
            <summary>
            Chart graphics class. Wrapper over the System.Drawing.Graphics.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartGraphics.chartGraphicsGraphics">
            <summary>
            Base System.Drawing.Graphics object
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartGraphics.translateTransformDefaultX">
            <summary>
            Fixed displacement for X coordinate
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartGraphics.translateTransformDefaultY">
            <summary>
            Fixed displacement for Y coordinate
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartGraphics.translateTransformDefaultOrder">
            <summary>
            Default translate transform order
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransformDefault">
            <summary>
            Apply TranslateTransform with fixed displacements
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DropTranslateTransformDefault">
            <summary>
            Apply TranslateTransform with fixed negative displacements
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.#ctor(System.Drawing.Graphics)">
            <summary>
            Create instance of class
            </summary>
            <param name="graphics">System.Drawing.Graphics object</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransformDefault(System.Single,System.Single)">
            <summary>
            Apply TranslateTransform with fixed displacements and sets its
            </summary>
            <param name="dx">Fixed displacement for X coordinate</param>
            <param name="dy">Fixed displacement for Y coordinate</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransformDefault(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)">
            <summary>
            Apply TranslateTransform with fixed displacements and sets its
            </summary>
            <param name="dx">Fixed displacement for X coordinate</param>
            <param name="dy">Fixed displacement for Y coordinate</param>
            <param name="order">Matrix order</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransformDefaultAdd(System.Single,System.Single)">
            <summary>
            Changing fixed displacements
            </summary>
            <param name="dx">Fixed displacement for X coordinate</param>
            <param name="dy">Fixed displacement for Y coordinate</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.AddMetafileComment(System.Byte[])">
            <summary>
            Adds a comment to the current System.Drawing.Imaging.Metafile.
            </summary>
            <param name="data">Array of bytes that contains the comment.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.BeginContainer">
            <summary>
            Saves a graphics container with the current state of this System.Drawing.Graphics
                and opens and uses a new graphics container.
            </summary>
            <return>
            This method returns a System.Drawing.Drawing2D.GraphicsContainer that represents
                the state of this System.Drawing.Graphics at the time of the method call.
            </return>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.BeginContainer(System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)">
            <summary>
            Saves a graphics container with the current state of this System.Drawing.Graphics
                and opens and uses a new graphics container with the specified scale transformation.
            </summary>
            <param name="dstrect">System.Drawing.Rectangle structure that, together with the srcrect parameter,
                specifies a scale transformation for the container.</param>
            <param name="srcrect">System.Drawing.Rectangle structure that, together with the dstrect parameter,
                specifies a scale transformation for the container.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure for the container.</param>
            <returns>This method returns a System.Drawing.Drawing2D.GraphicsContainer that represents
                the state of this System.Drawing.Graphics at the time of the method call.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.BeginContainer(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)">
            <summary>
            Saves a graphics container with the current state of this System.Drawing.Graphics
                and opens and uses a new graphics container with the specified scale transformation.
            </summary>
            <param name="dstrect">System.Drawing.RectangleF structure that, together with the srcrect parameter,
                specifies a scale transformation for the new graphics container.</param>
            <param name="srcrect">System.Drawing.RectangleF structure that, together with the dstrect parameter,
                specifies a scale transformation for the new graphics container.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure for the container.</param>
            <returns>This method returns a System.Drawing.Drawing2D.GraphicsContainer that represents
                the state of this System.Drawing.Graphics at the time of the method call.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Clear(System.Drawing.Color)">
            <summary>
            Clears the entire drawing surface and fills it with the specified background
                color.
            </summary>
            <param name="color">System.Drawing.Color structure that represents the background color of the
                drawing surface.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size)">
            <summary>
            Performs a bit-block transfer of color data, corresponding to a rectangle
                of pixels, from the screen to the drawing surface of the System.Drawing.Graphics.
            </summary>
            <param name="upperLeftSource">The point at the upper-left corner of the source rectangle.</param>
            <param name="upperLeftDestination">The point at the upper-left corner of the destination rectangle.</param>
            <param name="blockRegionSize">The size of the area to be transferred.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.CopyFromScreen(System.Drawing.Point,System.Drawing.Point,System.Drawing.Size,System.Drawing.CopyPixelOperation)">
             <summary>
             Performs a bit-block transfer of color data, corresponding to a rectangle
                 of pixels, from the screen to the drawing surface of the System.Drawing.Graphics.
             </summary>
             <param name="upperLeftSource">The point at the upper-left corner of the source rectangle.</param>
             <param name="upperLeftDestination">The point at the upper-left corner of the destination rectangle.</param>
             <param name="blockRegionSize">The size of the area to be transferred.</param>
             <param name="copyPixelOperation">One of the System.Drawing.CopyPixelOperation values.</param>
             <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">CopyPixelOperation is not a member of System.Drawing.CopyPixelOperation.</exception>
             <exception cref="T:System.ComponentModel.Win32Exception">The operation failed.</exception>
            
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size)">
            <summary>
            Performs a bit-block transfer of the color data, corresponding to a rectangle
                of pixels, from the screen to the drawing surface of the System.Drawing.Graphics.
            </summary>
            <param name="sourceX">The x-coordinate of the point at the upper-left corner of the source rectangle.</param>
            <param name="sourceY">The y-coordinate of the point at the upper-left corner of the source rectangle.</param>
            <param name="destinationX">The x-coordinate of the point at the upper-left corner of the destination
                rectangle.</param>
            <param name="destinationY">The y-coordinate of the point at the upper-left corner of the destination
                rectangle.</param>
            <param name="blockRegionSize">The size of the area to be transferred.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.CopyFromScreen(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Size,System.Drawing.CopyPixelOperation)">
            <summary>
            Performs a bit-block transfer of the color data, corresponding to a rectangle
                of pixels, from the screen to the drawing surface of the System.Drawing.Graphics.
            </summary>
            <param name="sourceX">The x-coordinate of the point at the upper-left corner of the source rectangle.</param>
            <param name="sourceY">The y-coordinate of the point at the upper-left corner of the source rectangle</param>
            <param name="destinationX">The x-coordinate of the point at the upper-left corner of the destination
                rectangle.</param>
            <param name="destinationY">The y-coordinate of the point at the upper-left corner of the destination
                rectangle.</param>
            <param name="blockRegionSize">The size of the area to be transferred.</param>
            <param name="copyPixelOperation">One of the System.Drawing.CopyPixelOperation values.</param>
            <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">copyPixelOperation is not a member of System.Drawing.CopyPixelOperation.</exception>
            <exception cref="T:System.ComponentModel.Win32Exception">The operation failed</exception>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Dispose">
            <summary>
            Releases all resources used by this System.Drawing.Graphics.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawArc(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)">
            <summary>
            Draws an arc representing a portion of an ellipse specified by a System.Drawing.Rectangle
                structure.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the arc.</param>
            <param name="rect">System.Drawing.RectangleF structure that defines the boundaries of the ellipse.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point
                of the arc.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending
                point of the arc.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawArc(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)">
            <summary>
            Draws an arc representing a portion of an ellipse specified by a System.Drawing.RectangleF
                structure.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the arc.</param>
            <param name="rect">System.Drawing.RectangleF structure that defines the boundaries of the ellipse.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point
                of the arc.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending
                point of the arc.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawArc(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws an arc representing a portion of an ellipse specified by a pair of
                coordinates, a width, and a height.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the arc.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle that defines the
                ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle that defines the
                ellipse.</param>
            <param name="width">Width of the rectangle that defines the ellipse.</param>
            <param name="height">Height of the rectangle that defines the ellipse.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point
                of the arc.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending
                point of the arc.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawArc(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws an arc representing a portion of an ellipse specified by a pair of
                coordinates, a width, and a height.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the arc.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle that defines the
                ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle that defines the
                ellipse.</param>
            <param name="width">Width of the rectangle that defines the ellipse.</param>
            <param name="height">Height of the rectangle that defines the ellipse.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the starting point
                of the arc.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to ending
                point of the arc.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawBezier(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point,System.Drawing.Point)">
            <summary>
            Draws a Bézier spline defined by four System.Drawing.Point structures.
            </summary>
            <param name="pen">System.Drawing.Pen structure that determines the color, width, and style
                of the curve.</param>
            <param name="pt1">System.Drawing.Point structure that represents the starting point of the
                curve.</param>
            <param name="pt2">System.Drawing.Point structure that represents the first control point for
                the curve.</param>
            <param name="pt3">System.Drawing.Point structure that represents the second control point for
                the curve.</param>
            <param name="pt4"> System.Drawing.Point structure that represents the ending point of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawBezier(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Draws a Bezier spline defined by four System.Drawing.PointF structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the curve.</param>
            <param name="pt1">System.Drawing.PointF structure that represents the starting point of the
                curve.</param>
            <param name="pt2">System.Drawing.PointF structure that represents the first control point for
                the curve.</param>
            <param name="pt3">System.Drawing.PointF structure that represents the second control point
                for the curve.</param>
            <param name="pt4">System.Drawing.PointF structure that represents the ending point of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawBezier(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws a Bézier spline defined by four ordered pairs of coordinates that represent
                points.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the curve.</param>
            <param name="x1">The x-coordinate of the starting point of the curve.</param>
            <param name="y1">The y-coordinate of the starting point of the curve.</param>
            <param name="x2">The x-coordinate of the first control point of the curve.</param>
            <param name="y2">The y-coordinate of the first control point of the curve.</param>
            <param name="x3">The x-coordinate of the second control point of the curve.</param>
            <param name="y3">The y-coordinate of the second control point of the curve.</param>
            <param name="x4">The x-coordinate of the ending point of the curve.</param>
            <param name="y4">The y-coordinate of the ending point of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawBeziers(System.Drawing.Pen,System.Drawing.Point[])">
            <summary>
            Draws a series of Bézier splines from an array of System.Drawing.Point structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that represent the points that determine
                the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawBeziers(System.Drawing.Pen,System.Drawing.PointF[])">
            <summary>
            Draws a series of Bézier splines from an array of System.Drawing.PointF structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the points that
                determine the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[])">
            <summary>
            Draws a closed cardinal spline defined by an array of System.Drawing.Point
                structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[])">
            <summary>
            Draws a closed cardinal spline defined by an array of System.Drawing.PointF
                structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single,System.Drawing.Drawing2D.FillMode)">
            <summary>
            Draws a closed cardinal spline defined by an array of System.Drawing.Point
                structures using a specified tension.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled. This parameter is required but ignored.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawClosedCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single,System.Drawing.Drawing2D.FillMode)">
            <summary>
            Draws a closed cardinal spline defined by an array of System.Drawing.PointF
                structures using a specified tension.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled. This parameter is required but is ignored.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[])">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.Point
                structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[])">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.PointF
                structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Single)">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.Point
                structures using a specified tension.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Single)">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.PointF
                structures using a specified tension.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the points that
                define the curve.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32)">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.PointF
                structures. The drawing begins offset from the beginning of the array.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
            <param name="offset">Offset from the first element in the array of the points parameter to the
                starting point in the curve.</param>
            <param name="numberOfSegments">Number of segments after the starting point to include in the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.Point[],System.Int32,System.Int32,System.Single)">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.Point
                structures using a specified tension.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
            <param name="offset">Offset from the first element in the array of the points parameter to the
                starting point in the curve.</param>
            <param name="numberOfSegments">Number of segments after the starting point to include in the curve.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawCurve(System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Single)">
            <summary>
            Draws a cardinal spline through a specified array of System.Drawing.PointF
                structures using a specified tension. The drawing begins offset from the
                beginning of the array.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and height of the curve</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
            <param name="offset">Offset from the first element in the array of the points parameter to the
                starting point in the curve.</param>
            <param name="numberOfSegments">Number of segments after the starting point to include in the curve.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawEllipse(System.Drawing.Pen,System.Drawing.Rectangle)">
            <summary>
            Draws an ellipse specified by a bounding System.Drawing.Rectangle structure.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the ellipse.</param>
            <param name="rect">System.Drawing.Rectangle structure that defines the boundaries of the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawEllipse(System.Drawing.Pen,System.Drawing.RectangleF)">
            <summary>
            Draws an ellipse defined by a bounding System.Drawing.RectangleF.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the ellipse.</param>
            <param name="rect">System.Drawing.RectangleF structure that defines the boundaries of the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawEllipse(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates,
                a height, and a width.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the ellipse.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawEllipse(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws an ellipse defined by a bounding rectangle specified by a pair of coordinates,
                a height, and a width.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the ellipse.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawIcon(System.Drawing.Icon,System.Drawing.Rectangle)">
            <summary>
            Draws the image represented by the specified System.Drawing.Icon within the
                area specified by a System.Drawing.Rectangle structure.
            </summary>
            <param name="icon">System.Drawing.Icon to draw.</param>
            <param name="targetRect">System.Drawing.Rectangle structure that specifies the location and size of
                the resulting image on the display surface. The image contained in the icon
                parameter is scaled to the dimensions of this rectangular area.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawIcon(System.Drawing.Icon,System.Int32,System.Int32)">
            <summary>
            Draws the image represented by the specified System.Drawing.Icon at the specified
                coordinates.
            </summary>
            <param name="icon"> System.Drawing.Icon to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawIconUnstretched(System.Drawing.Icon,System.Drawing.Rectangle)">
            <summary>
            Draws the image represented by the specified System.Drawing.Icon without
                scaling the image.
            </summary>
            <param name="icon">System.Drawing.Icon to draw.</param>
            <param name="targetRect">System.Drawing.Rectangle structure that specifies the location and size of
                the resulting image. The image is not scaled to fit this rectangle, but retains
                its original size. If the image is larger than the rectangle, it is clipped
                to fit inside it.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point)">
            <summary>
            Draws the specified System.Drawing.Image, using its original physical size,
                at the specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw</param>
            <param name="point">System.Drawing.Point structure that represents the location of the upper-left
                corner of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point[])">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
                the specified shape and size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF)">
            <summary>
             Draws the specified System.Drawing.Image, using its original physical size,
                at the specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="point">System.Drawing.PointF structure that represents the upper-left corner of
                the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[])">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
            the specified shape and size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle)">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
                the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="rect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF)">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
                the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="rect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Single,System.Single)">
            <summary>
            Draws the specified System.Drawing.Image, using its original physical size,
                at the specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32)">
            <summary>
            Draws the specified image, using its original physical size, at the location
                specified by a coordinate pair.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
                the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
            <param name="width">Width of the drawn image.</param>
            <param name="height">Height of the drawn image</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Single,System.Single,System.Drawing.RectangleF,System.Drawing.GraphicsUnit)">
            <summary>
            Draws a portion of an image at a specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the System.Drawing.Image
                to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws the specified System.Drawing.Image at the specified location and with
                the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
            <param name="width">Width of the drawn image.</param>
            <param name="height">Height of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Int32,System.Int32,System.Drawing.Rectangle,System.Drawing.GraphicsUnit)">
            <summary>
            Draws a portion of an image at a specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)
                method according to application-determined criteria.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)
                method according to application-determined criteria.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)
                method according to application-determined criteria.</param>
            <param name="callbackData">Value specifying additional data for the System.Drawing.Graphics.DrawImageAbort
                delegate to use when checking whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)
                method.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destPoints"> Array of three System.Drawing.PointF structures that define a parallelogram.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the image
                object to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used by the srcRect parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)
                method according to application-determined criteria.</param>
            <param name="callbackData">Value specifying additional data for the System.Drawing.Graphics.DrawImageAbort
                delegate to use when checking whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.Int32)
                method.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect"> System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttrs">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttrs">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)
                method according to application-determined criteria.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for image.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort)
                method according to application-determined criteria.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth"> Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttrs">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Single,System.Single,System.Single,System.Single,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)
                method according to application-determined criteria.</param>
            <param name="callbackData">Value specifying additional data for the System.Drawing.Graphics.DrawImageAbort
                delegate to use when checking whether to stop execution of the DrawImage
                method.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)">
            <summary>
            Draws the specified portion of the specified System.Drawing.Image at the
                specified location and with the specified size.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn image. The image is scaled to fit the rectangle.</param>
            <param name="srcX">The x-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcY">The y-coordinate of the upper-left corner of the portion of the source image
                to draw.</param>
            <param name="srcWidth">Width of the portion of the source image to draw.</param>
            <param name="srcHeight">Height of the portion of the source image to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                units of measure used to determine the source rectangle.</param>
            <param name="imageAttrs">System.Drawing.Imaging.ImageAttributes that specifies recoloring and gamma
                information for the image object.</param>
            <param name="callback">System.Drawing.Graphics.DrawImageAbort delegate that specifies a method to
                call during the drawing of the image. This method is called frequently to
                check whether to stop execution of the System.Drawing.Graphics.DrawImage(System.Drawing.Image,System.Drawing.Rectangle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.GraphicsUnit,System.Drawing.Imaging.ImageAttributes,System.Drawing.Graphics.DrawImageAbort,System.IntPtr)
                method according to application-determined criteria.</param>
            <param name="callbackData">Value specifying additional data for the System.Drawing.Graphics.DrawImageAbort
                delegate to use when checking whether to stop execution of the DrawImage
                method.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Point)">
            <summary>
            Draws a specified image using its original physical size at a specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="point">System.Drawing.Point structure that specifies the upper-left corner of the
                drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImageUnscaled(System.Drawing.Image,System.Drawing.Rectangle)">
            <summary>
            Draws a specified image using its original physical size at a specified location.
            </summary>
            <param name="image"> System.Drawing.Image to draw.</param>
            <param name="rect">System.Drawing.Rectangle that specifies the upper-left corner of the drawn
                image. The X and Y properties of the rectangle specify the upper-left corner.
                The Width and Height properties are ignored.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32)">
            <summary>
            Draws the specified image using its original physical size at the location
                specified by a coordinate pair.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImageUnscaled(System.Drawing.Image,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws a specified image using its original physical size at a specified location.
            </summary>
            <param name="image">System.Drawing.Image to draw.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn image.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn image.</param>
            <param name="width">Not used.</param>
            <param name="height">Not used.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawImageUnscaledAndClipped(System.Drawing.Image,System.Drawing.Rectangle)">
            <summary>
            Draws the specified image without scaling and clips it, if necessary, to
                fit in the specified rectangle.
            </summary>
            <param name="image">The System.Drawing.Image to draw.</param>
            <param name="rect">The System.Drawing.Rectangle in which to draw the image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLine(System.Drawing.Pen,System.Drawing.Point,System.Drawing.Point)">
            <summary>
            Draws a line connecting two System.Drawing.Point structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the line.</param>
            <param name="pt1">System.Drawing.Point structure that represents the first point to connect.</param>
            <param name="pt2">System.Drawing.Point structure that represents the second point to connect.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLine(System.Drawing.Pen,System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Draws a line connecting two System.Drawing.PointF structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the line.</param>
            <param name="pt1">System.Drawing.PointF structure that represents the first point to connect.</param>
            <param name="pt2">System.Drawing.PointF structure that represents the second point to connect.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLine(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws a line connecting the two points specified by the coordinate pairs.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the line.</param>
            <param name="x1">The x-coordinate of the first point.</param>
            <param name="y1">The y-coordinate of the first point.</param>
            <param name="x2">The x-coordinate of the second point.</param>
            <param name="y2">The y-coordinate of the second point.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLine(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws a line connecting the two points specified by the coordinate pairs.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the line.</param>
            <param name="x1">The x-coordinate of the first point.</param>
            <param name="y1">The y-coordinate of the first point.</param>
            <param name="x2">The x-coordinate of the second point.</param>
            <param name="y2">The y-coordinate of the second point.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLines(System.Drawing.Pen,System.Drawing.Point[])">
            <summary>
            Draws a series of line segments that connect an array of System.Drawing.Point
                structures.
            </summary>
            <param name="pen"> System.Drawing.Pen that determines the color, width, and style of the line
                segments.</param>
            <param name="points">Array of System.Drawing.Point structures that represent the points to connect.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawLines(System.Drawing.Pen,System.Drawing.PointF[])">
            <summary>
            Draws a series of line segments that connect an array of System.Drawing.PointF
                structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the line
                segments.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the points to connect.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPath(System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Draws a System.Drawing.Drawing2D.GraphicsPath.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the path.</param>
            <param name="path">System.Drawing.Drawing2D.GraphicsPath to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPie(System.Drawing.Pen,System.Drawing.Rectangle,System.Single,System.Single)">
            <summary>
            Draws a pie shape defined by an ellipse specified by a System.Drawing.Rectangle
                structure and two radial lines.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the pie
                shape.</param>
            <param name="rect">System.Drawing.Rectangle structure that represents the bounding rectangle
                that defines the ellipse from which the pie shape comes.</param>
            <param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of
                the pie shape.</param>
            <param name="sweepAngle"> Angle measured in degrees clockwise from the startAngle parameter to the
                second side of the pie shape.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPie(System.Drawing.Pen,System.Drawing.RectangleF,System.Single,System.Single)">
            <summary>
            Draws a pie shape defined by an ellipse specified by a System.Drawing.RectangleF
                structure and two radial lines.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the pie
                shape.</param>
            <param name="rect">System.Drawing.RectangleF structure that represents the bounding rectangle
                that defines the ellipse from which the pie shape comes.</param>
            <param name="startAngle"> Angle measured in degrees clockwise from the x-axis to the first side of
                the pie shape.</param>
            <param name="sweepAngle"> Angle measured in degrees clockwise from the startAngle parameter to the
                second side of the pie shape.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPie(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws a pie shape defined by an ellipse specified by a coordinate pair, a
                width, a height, and two radial lines.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the pie
                shape.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie shape comes.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie shape comes.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse from which the pie
                shape comes.</param>
            <param name="height"> Height of the bounding rectangle that defines the ellipse from which the
                pie shape comes.</param>
            <param name="startAngle">Angle measured in degrees clockwise from the x-axis to the first side of
                the pie shape.</param>
            <param name="sweepAngle">Angle measured in degrees clockwise from the startAngle parameter to the
                second side of the pie shape.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPie(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws a pie shape defined by an ellipse specified by a coordinate pair, a
                width, a height, and two radial lines.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the pie
                shape.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie shape comes.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie shape comes.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse from which the pie
                shape comes.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse from which the
                pie shape comes.</param>
            <param name="startAngle"> Angle measured in degrees clockwise from the x-axis to the first side of
                the pie shape.</param>
            <param name="sweepAngle"> Angle measured in degrees clockwise from the startAngle parameter to the
                second side of the pie shape.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPolygon(System.Drawing.Pen,System.Drawing.Point[])">
            <summary>
             Draws a polygon defined by an array of System.Drawing.Point structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the polygon.</param>
            <param name="points">Array of System.Drawing.Point structures that represent the vertices of the
                polygon.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawPolygon(System.Drawing.Pen,System.Drawing.PointF[])">
            <summary>
            Draws a polygon defined by an array of System.Drawing.PointF structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the polygon.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the vertices of
                the polygon.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangle(System.Drawing.Pen,System.Drawing.Rectangle)">
            <summary>
             Draws a rectangle specified by a System.Drawing.Rectangle structure.
            </summary>
            <param name="pen"> A System.Drawing.Pen that determines the color, width, and style of the rectangle.</param>
            <param name="rect">A System.Drawing.Rectangle structure that represents the rectangle to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangle(System.Drawing.Pen,System.Drawing.RectangleF)">
            <summary>
            Draws a rectangle specified by a System.Drawing.RectangleF structure.
                ChartGraphics custom method
            </summary>
            <param name="pen">A System.Drawing.Pen that determines the color, width, and style of the rectangle.</param>
            <param name="rect"> A System.Drawing.RectangleF structure that represents the rectangle to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangle(System.Drawing.Pen,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Draws a rectangle specified by a coordinate pair, a width, and a height.
            </summary>
            <param name="pen">A System.Drawing.Pen that determines the color, width, and style of the rectangle.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to draw.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to draw.</param>
            <param name="width">The width of the rectangle to draw.</param>
            <param name="height">The height of the rectangle to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangle(System.Drawing.Pen,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Draws a rectangle specified by a coordinate pair, a width, and a height.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the rectangle.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to draw.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to draw.</param>
            <param name="width">Width of the rectangle to draw.</param>
            <param name="height"> Height of the rectangle to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangles(System.Drawing.Pen,System.Drawing.Rectangle[])">
            <summary>
            Draws a series of rectangles specified by System.Drawing.Rectangle structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the outlines
                of the rectangles.</param>
            <param name="rects">Array of System.Drawing.Rectangle structures that represent the rectangles
                to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawRectangles(System.Drawing.Pen,System.Drawing.RectangleF[])">
            <summary>
            Draws a series of rectangles specified by System.Drawing.RectangleF structures.
            </summary>
            <param name="pen">System.Drawing.Pen that determines the color, width, and style of the outlines
                of the rectangles.</param>
            <param name="rects">Array of System.Drawing.RectangleF structures that represent the rectangles
                to draw.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF)">
            <summary>
            Draws the specified text string at the specified location with the specified
                System.Drawing.Brush and System.Drawing.Font objects.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="point">System.Drawing.PointF structure that specifies the upper-left corner of the
                drawn text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF)">
            <summary>
            Draws the specified text string in the specified rectangle with the specified
                System.Drawing.Brush and System.Drawing.Font objects.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="layoutRectangle">System.Drawing.RectangleF structure that specifies the location of the drawn
                text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single)">
            <summary>
            Draws the specified text string at the specified location with the specified
                System.Drawing.Brush and System.Drawing.Font objects.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn text.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.PointF,System.Drawing.StringFormat)">
            <summary>
            Draws the specified text string at the specified location with the specified
                System.Drawing.Brush and System.Drawing.Font objects using the formatting
                attributes of the specified System.Drawing.StringFormat.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="point">System.Drawing.PointF structure that specifies the upper-left corner of the
                drawn text.</param>
            <param name="format">System.Drawing.StringFormat that specifies formatting attributes, such as
                line spacing and alignment, that are applied to the drawn text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Drawing.RectangleF,System.Drawing.StringFormat)">
            <summary>
            Draws the specified text string in the specified rectangle with the specified
                System.Drawing.Brush and System.Drawing.Font objects using the formatting
                attributes of the specified System.Drawing.StringFormat.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="layoutRectangle">System.Drawing.RectangleF structure that specifies the location of the drawn
                text.</param>
            <param name="format">System.Drawing.StringFormat that specifies formatting attributes, such as
                line spacing and alignment, that are applied to the drawn text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.DrawString(System.String,System.Drawing.Font,System.Drawing.Brush,System.Single,System.Single,System.Drawing.StringFormat)">
            <summary>
            Draws the specified text string at the specified location with the specified
                System.Drawing.Brush and System.Drawing.Font objects using the formatting
                attributes of the specified System.Drawing.StringFormat.
            </summary>
            <param name="s">String to draw.</param>
            <param name="font"> System.Drawing.Font that defines the text format of the string.</param>
            <param name="brush">System.Drawing.Brush that determines the color and texture of the drawn text.</param>
            <param name="x">The x-coordinate of the upper-left corner of the drawn text.</param>
            <param name="y">The y-coordinate of the upper-left corner of the drawn text.</param>
            <param name="format">System.Drawing.StringFormat that specifies formatting attributes, such as
                line spacing and alignment, that are applied to the drawn text.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EndContainer(System.Drawing.Drawing2D.GraphicsContainer)">
            <summary>
             Closes the current graphics container and restores the state of this System.Drawing.Graphics
                to the state saved by a call to the System.Drawing.Graphics.BeginContainer()
                method.
            </summary>
            <param name="container">System.Drawing.Drawing2D.GraphicsContainer that represents the container
                this method restores.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint"> System.Drawing.Point structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
               method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
             Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint"> System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback"> System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
               method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile"> System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
             Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
               method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.Point structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints"> Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData"> Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints"> Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect"> System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
             Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point using specified
                image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.Point structure that specifies the location of the upper-left corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero for this parameter.</param>
            <param name="imageAttr"> System.Drawing.Imaging.ImageAttributes that specifies image attribute information for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.Point structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram using
                specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display at a specified point using specified
                image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified parallelogram using
                specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData"> Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structures that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle using specified
                image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData"> Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile"> System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records of the specified System.Drawing.Imaging.Metafile, one at
                a time, to a callback method for display in a specified rectangle using specified
                image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr"><see cref="T:System.Drawing.Imaging.ImageAttributes"/> that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.Point structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
             Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback"> System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="srcUnit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point using
                specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.Point structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Point[],System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram
                using specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.Point structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
               for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display at a specified point using
                specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoint">System.Drawing.PointF structure that specifies the location of the upper-left
                corner of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.PointF[],System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records in a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified parallelogram
                using specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destPoints">Array of three System.Drawing.PointF structures that define a parallelogram
                that determines the size and location of the drawn metafile.</param>
            <param name="srcRect"> System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.Rectangle,System.Drawing.Rectangle,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle
                using specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.Rectangle structure that specifies the location and size of
                the drawn metafile.</param>
            <param name="srcRect">System.Drawing.Rectangle structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.EnumerateMetafile(System.Drawing.Imaging.Metafile,System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.GraphicsUnit,System.Drawing.Graphics.EnumerateMetafileProc,System.IntPtr,System.Drawing.Imaging.ImageAttributes)">
            <summary>
            Sends the records of a selected rectangle from a System.Drawing.Imaging.Metafile,
                one at a time, to a callback method for display in a specified rectangle
                using specified image attributes.
            </summary>
            <param name="metafile">System.Drawing.Imaging.Metafile to enumerate.</param>
            <param name="destRect">System.Drawing.RectangleF structure that specifies the location and size
                of the drawn metafile.</param>
            <param name="srcRect">System.Drawing.RectangleF structure that specifies the portion of the metafile,
                relative to its upper-left corner, to draw.</param>
            <param name="unit">Member of the System.Drawing.GraphicsUnit enumeration that specifies the
                unit of measure used to determine the portion of the metafile that the rectangle
                specified by the srcRect parameter contains.</param>
            <param name="callback">System.Drawing.Graphics.EnumerateMetafileProc delegate that specifies the
                method to which the metafile records are sent.</param>
            <param name="callbackData">Internal pointer that is required, but ignored. You can pass System.IntPtr.Zero
                for this parameter.</param>
            <param name="imageAttr">System.Drawing.Imaging.ImageAttributes that specifies image attribute information
                for the drawn image.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ExcludeClip(System.Drawing.Rectangle)">
            <summary>
            Updates the clip region of this System.Drawing.Graphics to exclude the area
                specified by a System.Drawing.Rectangle structure.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure that specifies the rectangle to exclude
                from the clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ExcludeClip(System.Drawing.Region)">
            <summary>
            Updates the clip region of this System.Drawing.Graphics to exclude the area
                specified by a System.Drawing.Region.
            </summary>
            <param name="region">System.Drawing.Region that specifies the region to exclude from the clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[])">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.Point structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[])">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.PointF structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.Point structures using the specified fill mode.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.PointF structures using the specified fill mode.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode,System.Single)">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.Point structures using the specified fill mode and tension
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.Point structures that define the spline.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillClosedCurve(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode,System.Single)">
            <summary>
            Fills the interior of a closed cardinal spline curve defined by an array
                of System.Drawing.PointF structures using the specified fill mode and tension.
            </summary>
            <param name="brush">A System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.PointF structures that define the spline.</param>
            <param name="fillmode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                how the curve is filled.</param>
            <param name="tension">Value greater than or equal to 0.0F that specifies the tension of the curve.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillEllipse(System.Drawing.Brush,System.Drawing.Rectangle)">
            <summary>
            Fills the interior of an ellipse defined by a bounding rectangle specified
                by a System.Drawing.Rectangle structure.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rect">System.Drawing.Rectangle structure that represents the bounding rectangle
                that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillEllipse(System.Drawing.Brush,System.Drawing.RectangleF)">
            <summary>
            Fills the interior of an ellipse defined by a bounding rectangle specified
                by a System.Drawing.RectangleF structure.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rect">System.Drawing.RectangleF structure that represents the bounding rectangle
                that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillEllipse(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Fills the interior of an ellipse defined by a bounding rectangle specified
                by a pair of coordinates, a width, and a height.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillEllipse(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
             Fills the interior of an ellipse defined by a bounding rectangle specified
                by a pair of coordinates, a width, and a height.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPath(System.Drawing.Brush,System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Fills the interior of a System.Drawing.Drawing2D.GraphicsPath.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="path">System.Drawing.Drawing2D.GraphicsPath that represents the path to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPie(System.Drawing.Brush,System.Drawing.Rectangle,System.Single,System.Single)">
            <summary>
            Fills the interior of a pie section defined by an ellipse specified by a
                System.Drawing.RectangleF structure and two radial lines.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rect">System.Drawing.Rectangle structure that represents the bounding rectangle
                that defines the ellipse from which the pie section comes.</param>
            <param name="startAngle"> Angle in degrees measured clockwise from the x-axis to the first side of
                the pie section.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to the
                second side of the pie section.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPie(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Fills the interior of a pie section defined by an ellipse specified by a
                pair of coordinates, a width, a height, and two radial lines.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie section comes.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie section comes.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse from which the pie
                section comes.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse from which the
                pie section comes.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the first side of
                the pie section.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to the
                second side of the pie section.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPie(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Fills the interior of a pie section defined by an ellipse specified by a
                pair of coordinates, a width, a height, and two radial lines.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie section comes.</param>
            <param name="y">The y-coordinate of the upper-left corner of the bounding rectangle that
                defines the ellipse from which the pie section comes.</param>
            <param name="width">Width of the bounding rectangle that defines the ellipse from which the pie
                section comes.</param>
            <param name="height">Height of the bounding rectangle that defines the ellipse from which the
                pie section comes.</param>
            <param name="startAngle">Angle in degrees measured clockwise from the x-axis to the first side of
                the pie section.</param>
            <param name="sweepAngle">Angle in degrees measured clockwise from the startAngle parameter to the
                second side of the pie section.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[])">
            <summary>
            Fills the interior of a polygon defined by an array of points specified by
                System.Drawing.Point structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.Point structures that represent the vertices of the
                polygon to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[])">
            <summary>
            Fills the interior of a polygon defined by an array of points specified by
                System.Drawing.PointF structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the vertices of
                the polygon to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.Point[],System.Drawing.Drawing2D.FillMode)">
            <summary>
            Fills the interior of a polygon defined by an array of points specified by
                System.Drawing.Point structures using the specified fill mode.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.Point structures that represent the vertices of the
                polygon to fill.</param>
            <param name="fillMode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                the style of the fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillPolygon(System.Drawing.Brush,System.Drawing.PointF[],System.Drawing.Drawing2D.FillMode)">
            <summary>
            Fills the interior of a polygon defined by an array of points specified by
                System.Drawing.PointF structures using the specified fill mode.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="points">Array of System.Drawing.PointF structures that represent the vertices of
                the polygon to fill.</param>
            <param name="fillMode">Member of the System.Drawing.Drawing2D.FillMode enumeration that determines
                the style of the fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangle(System.Drawing.Brush,System.Drawing.Rectangle)">
            <summary>
            Fills the interior of a rectangle specified by a System.Drawing.Rectangle
                structure.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rect">System.Drawing.Rectangle structure that represents the rectangle to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangle(System.Drawing.Brush,System.Drawing.RectangleF)">
            <summary>
            Fills the interior of a rectangle specified by a System.Drawing.RectangleF
                structure.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rect">System.Drawing.RectangleF structure that represents the rectangle to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangle(System.Drawing.Brush,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Fills the interior of a rectangle specified by a pair of coordinates, a width,
                and a height.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to fill.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to fill.</param>
            <param name="width">Width of the rectangle to fill.</param>
            <param name="height">Height of the rectangle to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangle(System.Drawing.Brush,System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Fills the interior of a rectangle specified by a pair of coordinates, a width,
                and a height.
            </summary>
            <param name="brush"> System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to fill.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to fill.</param>
            <param name="width">Width of the rectangle to fill.</param>
            <param name="height">Height of the rectangle to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangles(System.Drawing.Brush,System.Drawing.Rectangle[])">
            <summary>
            Fills the interiors of a series of rectangles specified by System.Drawing.Rectangle
                structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rects">Array of System.Drawing.Rectangle structures that represent the rectangles
                to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRectangles(System.Drawing.Brush,System.Drawing.RectangleF[])">
            <summary>
            Fills the interiors of a series of rectangles specified by System.Drawing.RectangleF
                structures.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="rects">Array of System.Drawing.RectangleF structures that represent the rectangles
                to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.FillRegion(System.Drawing.Brush,System.Drawing.Region)">
            <summary>
            Fills the interior of a System.Drawing.Region.
            </summary>
            <param name="brush">System.Drawing.Brush that determines the characteristics of the fill.</param>
            <param name="region">System.Drawing.Region that represents the area to fill.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Flush">
            <summary>
            Forces execution of all pending graphics operations and returns immediately without waiting for the operations to finish.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Flush(System.Drawing.Drawing2D.FlushIntention)">
            <summary>
            Forces execution of all pending graphics operations with the method waiting
                or not waiting, as specified, to return before the operations finish.
            </summary>
            <param name="intention">Member of the System.Drawing.Drawing2D.FlushIntention enumeration that specifies
                whether the method returns immediately or waits for any existing operations
                to finish.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.GetContextInfo">
            <summary>
            XML comment contains invalid XML: End tag 'doc' does not match the start tag 'member'.
            </summary>
            <returns>Object</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.GetHdc">
            <summary>
            Gets the handle to the device context associated with this System.Drawing.Graphics.
            </summary>
            <returns>Handle to the device context associated with this System.Drawing.Graphics.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.GetNearestColor(System.Drawing.Color)">
            <summary>
            Gets the nearest color to the specified System.Drawing.Color structure.
            </summary>
            <param name="color">System.Drawing.Color structure for which to find a match.</param>
            <returns>A System.Drawing.Color structure that represents the nearest color to the one specified with the color parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IntersectClip(System.Drawing.Rectangle)">
            <summary>
            Updates the clip region of this System.Drawing.Graphics to the intersection
                of the current clip region and the specified System.Drawing.Rectangle structure.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure to intersect with the current clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IntersectClip(System.Drawing.RectangleF)">
            <summary>
            Updates the clip region of this System.Drawing.Graphics to the intersection
                of the current clip region and the specified System.Drawing.Rectangle structure.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure to intersect with the current clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IntersectClip(System.Drawing.Region)">
            <summary>
            Updates the clip region of this System.Drawing.Graphics to the intersection
                of the current clip region and the specified System.Drawing.Region.
            </summary>
            <param name="region">System.Drawing.Region to intersect with the current region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Drawing.Point)">
            <summary>
            Indicates whether the specified System.Drawing.Point structure is contained
                within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="point">System.Drawing.Point structure to test for visibility.</param>
            <returns>true if the point specified by the point parameter is contained within the
                visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Drawing.PointF)">
            <summary>
            Indicates whether the specified System.Drawing.PointF structure is contained
                within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="point">System.Drawing.PointF structure to test for visibility.</param>
            <returns>true if the point specified by the point parameter is contained within the
                visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Drawing.Rectangle)">
            <summary>
            Indicates whether the rectangle specified by a System.Drawing.Rectangle structure
                is contained within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure to test for visibility.</param>
            <returns> true if the rectangle specified by the rect parameter is contained within
                the visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Drawing.RectangleF)">
            <summary>
            Indicates whether the rectangle specified by a System.Drawing.RectangleF
                structure is contained within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="rect">System.Drawing.RectangleF structure to test for visibility.</param>
            <returns>true if the rectangle specified by the rect parameter is contained within
                the visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Single,System.Single)">
            <summary>
            Indicates whether the point specified by a pair of coordinates is contained
                within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="x">The x-coordinate of the point to test for visibility.</param>
            <param name="y">The y-coordinate of the point to test for visibility.</param>
            <returns> true if the point defined by the x and y parameters is contained within the
                visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Int32,System.Int32)">
            <summary>
             Indicates whether the point specified by a pair of coordinates is contained
                within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="x">The x-coordinate of the point to test for visibility.</param>
            <param name="y">The y-coordinate of the point to test for visibility.</param>
            <returns> true if the point defined by the x and y parameters is contained within the
                visible clip region of this System.Drawing.Graphics; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Indicates whether the rectangle specified by a pair of coordinates, a width,
                and a height is contained within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to test for visibility.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to test for visibility.</param>
            <param name="width">Width of the rectangle to test for visibility.</param>
            <param name="height">Height of the rectangle to test for visibility.</param>
            <returns>true if the rectangle defined by the x, y, width, and height parameters is
                contained within the visible clip region of this System.Drawing.Graphics;
                otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.IsVisible(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Indicates whether the rectangle specified by a pair of coordinates, a width,
                and a height is contained within the visible clip region of this System.Drawing.Graphics.
            </summary>
            <param name="x">The x-coordinate of the upper-left corner of the rectangle to test for visibility.</param>
            <param name="y">The y-coordinate of the upper-left corner of the rectangle to test for visibility.</param>
            <param name="width">Width of the rectangle to test for visibility.</param>
            <param name="height">Height of the rectangle to test for visibility.</param>
            <returns>true if the rectangle defined by the x, y, width, and height parameters is
                contained within the visible clip region of this System.Drawing.Graphics;
                otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureCharacterRanges(System.String,System.Drawing.Font,System.Drawing.RectangleF,System.Drawing.StringFormat)">
            <summary>
            Gets an array of System.Drawing.Region objects, each of which bounds a range
                of character positions within the specified string.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="layoutRect">System.Drawing.RectangleF structure that specifies the layout rectangle for
                the string.</param>
            <param name="stringFormat">System.Drawing.StringFormat that represents formatting information, such
                as line spacing, for the string.</param>
            <returns>This method returns an array of System.Drawing.Region objects, each of which
                bounds a range of character positions within the specified string.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified by the text parameter as drawn with the font parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Int32)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font that defines the format of the string.</param>
            <param name="width">Maximum width of the string in pixels.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified in the text parameter as drawn with the font parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font
                within the specified layout area.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font defines the text format of the string.</param>
            <param name="layoutArea">System.Drawing.SizeF structure that specifies the maximum layout area for
                the text.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified by the text parameter as drawn with the font parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Int32,System.Drawing.StringFormat)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font
                and formatted with the specified System.Drawing.StringFormat.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="width">Maximum width of the string.</param>
            <param name="format">System.Drawing.StringFormat that represents formatting information, such
                as line spacing, for the string.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified in the text parameter as drawn with the font parameter
                and the stringFormat parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.PointF,System.Drawing.StringFormat)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font
                and formatted with the specified System.Drawing.StringFormat.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font defines the text format of the string.</param>
            <param name="origin">System.Drawing.PointF structure that represents the upper-left corner of
                the string.</param>
            <param name="stringFormat">System.Drawing.StringFormat that represents formatting information, such
                as line spacing, for the string.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified by the text parameter as drawn with the font parameter
                and the stringFormat parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font
                and formatted with the specified System.Drawing.StringFormat.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font defines the text format of the string.</param>
            <param name="layoutArea">System.Drawing.SizeF structure that specifies the maximum layout area for
                the text.</param>
            <param name="stringFormat">System.Drawing.StringFormat that represents formatting information, such
                as line spacing, for the string.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size, in the units specified by the System.Drawing.Graphics.PageUnit property,
                of the string specified in the text parameter as drawn with the font parameter
                and the stringFormat parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MeasureString(System.String,System.Drawing.Font,System.Drawing.SizeF,System.Drawing.StringFormat,System.Int32@,System.Int32@)">
            <summary>
            Measures the specified string when drawn with the specified System.Drawing.Font
                and formatted with the specified System.Drawing.StringFormat.
            </summary>
            <param name="text">String to measure.</param>
            <param name="font">System.Drawing.Font that defines the text format of the string.</param>
            <param name="layoutArea">System.Drawing.SizeF structure that specifies the maximum layout area for
                the text.</param>
            <param name="stringFormat">System.Drawing.StringFormat that represents formatting information, such
                as line spacing, for the string.</param>
            <param name="charactersFitted">Number of characters in the string</param>
            <param name="linesFilled">Number of text lines in the string.</param>
            <returns>This method returns a System.Drawing.SizeF structure that represents the
                size of the string, in the units specified by the System.Drawing.Graphics.PageUnit
                property, of the text parameter as drawn with the font parameter and the
                stringFormat parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix)">
            <summary>
            Multiplies the world transformation of this System.Drawing.Graphics and specified
                the System.Drawing.Drawing2D.Matrix.
            </summary>
            <param name="matrix">4x4 System.Drawing.Drawing2D.Matrix that multiplies the world transformation.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.MultiplyTransform(System.Drawing.Drawing2D.Matrix,System.Drawing.Drawing2D.MatrixOrder)">
            <summary>
            Multiplies the world transformation of this System.Drawing.Graphics and specified
                the System.Drawing.Drawing2D.Matrix in the specified order.
            </summary>
            <param name="matrix">4x4 System.Drawing.Drawing2D.Matrix that multiplies the world transformation.</param>
            <param name="order">Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that determines
                the order of the multiplication.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ReleaseHdc">
            <summary>
            Releases a device context handle obtained by a previous call to the System.Drawing.Graphics.GetHdc()
                method of this System.Drawing.Graphics.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ReleaseHdc(System.IntPtr)">
            <summary>
            Releases a device context handle obtained by a previous call to the System.Drawing.Graphics.GetHdc()
                method of this System.Drawing.Graphics.
            </summary>
            <param name="hdc">Handle to a device context obtained by a previous call to the System.Drawing.Graphics.GetHdc()
                method of this System.Drawing.Graphics.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ReleaseHdcInternal(System.IntPtr)">
            <summary>
            Releases a handle to a device context.
            </summary>
            <param name="hdc">Handle to a device context.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ResetClip">
            <summary>
            Resets the clip region of this System.Drawing.Graphics to an infinite region.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ResetTransform">
            <summary>
            Resets the world transformation matrix of this System.Drawing.Graphics to
                the identity matrix.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Restore(System.Drawing.Drawing2D.GraphicsState)">
            <summary>
            Restores the state of this System.Drawing.Graphics to the state represented
                by a System.Drawing.Drawing2D.GraphicsState.
            </summary>
            <param name="gstate">System.Drawing.Drawing2D.GraphicsState that represents the state to which
                to restore this System.Drawing.Graphics.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.RotateTransform(System.Single)">
            <summary>
            Applies the specified rotation to the transformation matrix of this System.Drawing.Graphics.
            </summary>
            <param name="angle">Angle of rotation in degrees.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.RotateTransform(System.Single,System.Drawing.Drawing2D.MatrixOrder)">
            <summary>
            Applies the specified rotation to the transformation matrix of this System.Drawing.Graphics
                in the specified order.
            </summary>
            <param name="angle">Angle of rotation in degrees.</param>
            <param name="order">Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies
                whether the rotation is appended or prepended to the matrix transformation.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.Save">
            <summary>
            Saves the current state of this System.Drawing.Graphics and identifies the
                saved state with a System.Drawing.Drawing2D.GraphicsState.
            </summary>
            <returns>This method returns a System.Drawing.Drawing2D.GraphicsState that represents
                the saved state of this System.Drawing.Graphics.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ScaleTransform(System.Single,System.Single)">
            <summary>
            Applies the specified scaling operation to the transformation matrix of this
                System.Drawing.Graphics by prepending it to the object's transformation matrix.
            </summary>
            <param name="sx">Scale factor in the x direction.</param>
            <param name="sy">Scale factor in the y direction.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.ScaleTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)">
            <summary>
            Applies the specified scaling operation to the transformation matrix of this
                System.Drawing.Graphics in the specified order.
            </summary>
            <param name="sx">Scale factor in the x direction.</param>
            <param name="sy">Scale factor in the y direction.</param>
            <param name="order">Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies
                whether the scaling operation is prepended or appended to the transformation
                matrix.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Graphics)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the Clip property
                of the specified System.Drawing.Graphics.
            </summary>
            <param name="g">System.Drawing.Graphics from which to take the new clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the specified
                System.Drawing.Drawing2D.GraphicsPath.
            </summary>
            <param name="path">System.Drawing.Drawing2D.GraphicsPath that represents the new clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Rectangle)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the rectangle
                specified by a System.Drawing.Rectangle structure.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure that represents the new clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.RectangleF)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the rectangle
                specified by a System.Drawing.RectangleF structure.
            </summary>
            <param name="rect">System.Drawing.RectangleF structure that represents the new clip region.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Graphics,System.Drawing.Drawing2D.CombineMode)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the result of
                the specified combining operation of the current clip region and the System.Drawing.Graphics.Clip
                property of the specified System.Drawing.Graphics.
            </summary>
            <param name="g">System.Drawing.Graphics that specifies the clip region to combine.</param>
            <param name="combineMode">Member of the System.Drawing.Drawing2D.CombineMode enumeration that specifies
                the combining operation to use.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.CombineMode)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the result of
                the specified operation combining the current clip region and the specified
                System.Drawing.Drawing2D.GraphicsPath.
            </summary>
            <param name="path">System.Drawing.Drawing2D.GraphicsPath to combine.</param>
            <param name="combineMode">Member of the System.Drawing.Drawing2D.CombineMode enumeration that specifies
                the combining operation to use.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Rectangle,System.Drawing.Drawing2D.CombineMode)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the result of
                the specified operation combining the current clip region and the rectangle
                specified by a System.Drawing.Rectangle structure.
            </summary>
            <param name="rect">System.Drawing.Rectangle structure to combine.</param>
            <param name="combineMode">Member of the System.Drawing.Drawing2D.CombineMode enumeration that specifies
                the combining operation to use.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.RectangleF,System.Drawing.Drawing2D.CombineMode)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the result of
                the specified operation combining the current clip region and the rectangle
                specified by a System.Drawing.RectangleF structure.
            </summary>
            <param name="rect">System.Drawing.RectangleF structure to combine.</param>
            <param name="combineMode">Member of the System.Drawing.Drawing2D.CombineMode enumeration that specifies
                the combining operation to use.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.SetClip(System.Drawing.Region,System.Drawing.Drawing2D.CombineMode)">
            <summary>
            Sets the clipping region of this System.Drawing.Graphics to the result of
                the specified operation combining the current clip region and the specified
                System.Drawing.Region.
            </summary>
            <param name="region">System.Drawing.Region to combine.</param>
            <param name="combineMode">Member from the System.Drawing.Drawing2D.CombineMode enumeration that specifies
               the combining operation to use.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Point[])">
            <summary>
            Transforms an array of points from one coordinate space to another using
                the current world and page transformations of this System.Drawing.Graphics.
            </summary>
            <param name="destSpace">Member of the System.Drawing.Drawing2D.CoordinateSpace enumeration that specifies
                the destination coordinate space.</param>
            <param name="srcSpace">Member of the System.Drawing.Drawing2D.CoordinateSpace enumeration that specifies
                the source coordinate space.</param>
            <param name="pts">Array of System.Drawing.Point structures that represents the points to transformation.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TransformPoints(System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.Drawing2D.CoordinateSpace,System.Drawing.PointF[])">
            <summary>
            Transforms an array of points from one coordinate space to another using
                the current world and page transformations of this System.Drawing.Graphics.
            </summary>
            <param name="destSpace">Member of the System.Drawing.Drawing2D.CoordinateSpace enumeration that specifies
                the destination coordinate space.</param>
            <param name="srcSpace">Member of the System.Drawing.Drawing2D.CoordinateSpace enumeration that specifies
                the source coordinate space.</param>
            <param name="pts">Array of System.Drawing.PointF structures that represent the points to transform.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateClip(System.Single,System.Single)">
            <summary>
                Translates the clipping region of this System.Drawing.Graphics by specified
                amounts in the horizontal and vertical directions.
            </summary>
            <param name="dx">The x-coordinate of the translation.</param>
            <param name="dy">The y-coordinate of the translation.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateClip(System.Int32,System.Int32)">
            <summary>
                Translates the clipping region of this System.Drawing.Graphics by specified
                amounts in the horizontal and vertical directions.
            </summary>
            <param name="dx">The x-coordinate of the translation.</param>
            <param name="dy">The y-coordinate of the translation. </param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransform(System.Single,System.Single)">
            <summary>
                Changes the origin of the coordinate system by prepending the specified translation
                to the transformation matrix of this System.Drawing.Graphics.
            </summary>
            <param name="dx">The x-coordinate of the translation.</param>
            <param name="dy">The y-coordinate of the translation.</param>
        </member>
        <member name="M:Telerik.Charting.ChartGraphics.TranslateTransform(System.Single,System.Single,System.Drawing.Drawing2D.MatrixOrder)">
            <summary>
                Changes the origin of the coordinate system by applying the specified translation
                to the transformation matrix of this System.Drawing.Graphics in the specified
                order.
            </summary>
            <param name="dx">The x-coordinate of the translation.</param>
            <param name="dy">The y-coordinate of the translation.</param>
            <param name="order">Member of the System.Drawing.Drawing2D.MatrixOrder enumeration that specifies
                whether the translation is pretended or appended to the transformation matrix.</param>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.Graphics">
            <summary>
            Base System.Drawing.Graphics object
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.Clip">
             <summary>
             Gets or sets a System.Drawing.Region that limits the drawing region of this System.Drawing.Graphics.
             </summary>
             <return> 
             A System.Drawing.Region that limits the portion of this System.Drawing.Graphics that is currently available for drawing.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.ClipBounds">
            <summary>
            Gets a System.Drawing.RectangleF structure that bounds the clipping region of this System.Drawing.Graphics.
            </summary>
            <return>
            A System.Drawing.RectangleF structure that represents a bounding rectangle for the clipping region of this System.Drawing.Graphics.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.CompositingMode">
            <summary>
            Gets a value that specifies how composited images are drawn to this System.Drawing.Graphics.
            </summary>
            <return>
            This property specifies a member of the System.Drawing.Drawing2D.CompositingMode enumeration.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.CompositingQuality">
            <summary>
            Gets or sets the rendering quality of composited images drawn to this System.Drawing.Graphics.
            </summary>
            <return>This property specifies a member of the System.Drawing.Drawing2D.CompositingQuality enumeration.</return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.DpiX">
            <summary>
            Gets the horizontal resolution of this System.Drawing.Graphics.
            </summary>
            <return>
            The value, in dots per inch, for the horizontal resolution supported by this System.Drawing.Graphics.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.DpiY">
            <summary>
            Gets the vertical resolution of this System.Drawing.Graphics.
            </summary>
            <return>
            The value, in dots per inch, for the vertical resolution supported by this
                System.Drawing.Graphics.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.InterpolationMode">
            <summary>
            Gets or sets the interpolation mode associated with this System.Drawing.Graphics.
            </summary>
            <return>
            One of the System.Drawing.Drawing2D.InterpolationMode values.
            </return>        
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.IsClipEmpty">
            <summary>
            Gets a value indicating whether the clipping region of this System.Drawing.Graphics
                is empty.
            </summary>
            <return>
             true if the clipping region of this System.Drawing.Graphics is empty; otherwise,
                false.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.IsVisibleClipEmpty">
            <summary>
            Gets a value indicating whether the visible clipping region of this System.Drawing.Graphics
                is empty.
            </summary>
            <return>
            true if the visible portion of the clipping region of this System.Drawing.Graphics
                is empty; otherwise, false.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.PageScale">
            <summary>
            Gets or sets the scaling between world units and page units for this System.Drawing.Graphics.
            </summary>
            <return>
            This property specifies a value for the scaling between world units and page
                units for this System.Drawing.Graphics.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.PageUnit">
             <summary>
             Gets or sets the unit of measure used for page coordinates in this System.Drawing.Graphics.
             </summary>
             <return>
             One of the System.Drawing.GraphicsUnit values other than System.Drawing.GraphicsUnit.World.
             </return>
             <exception cref="T:System.ComponentModel.InvalidEnumArgumentException">
             System.Drawing.Graphics.PageUnit is set to System.Drawing.GraphicsUnit.World,
                 which is not a physical unit.
            </exception>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.PixelOffsetMode">
            <summary>
            Gets or set a value specifying how pixels are offset during rendering of
                this System.Drawing.Graphics.
            </summary>
            <return>
            This property specifies a member of the System.Drawing.Drawing2D.PixelOffsetMode
                enumeration
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.RenderingOrigin">
            <summary>
            Gets or sets the rendering origin of this System.Drawing.Graphics for dithering
                and for hatch brushes.
            </summary>
            <return>
            A System.Drawing.Point structure that represents the dither origin for 8-bits-per-pixel
                and 16-bits-per-pixel dithering and is also used to set the origin for hatch
                brushes.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.SmoothingMode">
            <summary>
            Gets or sets the rendering quality for this System.Drawing.Graphics.
            </summary>
            <return>
            One of the System.Drawing.Drawing2D.SmoothingMode values.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.TextContrast">
            <summary>
            Gets or sets the gamma correction value for rendering text.
            </summary>
            <return>
            The gamma correction value used for rendering anti aliased and ClearType text.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.TextRenderingHint">
            <summary>
            Gets or sets the rendering mode for text associated with this System.Drawing.Graphics.
            </summary>
            <return>
            One of the System.Drawing.Text.TextRenderingHint values.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.Transform">
            <summary>
             Gets or sets a copy of the geometric world transformation for this System.Drawing.Graphics.
            </summary>
            <return>
            A copy of the System.Drawing.Drawing2D.Matrix that represents the geometric
                world transformation for this System.Drawing.Graphics.
            </return>
        </member>
        <member name="P:Telerik.Charting.ChartGraphics.VisibleClipBounds">
            <summary>
            Gets the bounding rectangle of the visible clipping region of this System.Drawing.Graphics.
            </summary>
            <return>
            A System.Drawing.RectangleF structure that represents a bounding rectangle
                for the visible clipping region of this System.Drawing.Graphics.
            </return>
        </member>
        <member name="T:Telerik.Charting.ChartZoomEventArgs">
            <summary>
            Provides data for RadChart.Zoom event.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Chart">
            <summary>
            This is an class which provides charting functionality for Telerik
            products.
            </summary>
        </member>
        <member name="T:Telerik.Charting.LayoutElement">
            <summary>
            Base class for all objects being calculated
            </summary>
        </member>
        <member name="T:Telerik.Charting.RenderedObject">
            <summary>
            Base class for all objects being rendered
            </summary>
        </member>
        <member name="T:Telerik.Charting.IOrdering">
            <summary>
            Common interface for an order list element of rendering container
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.GetOrder">
            <summary>
            Gets elements order position
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.SetOrder(System.Int32)">
            <summary>
            Sets this object in new render order position
            </summary>
            <param name="index">new position</param>
        </member>
        <member name="M:Telerik.Charting.IOrdering.Remove">
            <summary>
            Remove element from  render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.BringForward">
            <summary>
            Send element at one step forward in the render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.BringToFront">
            <summary>
            Sets element at the first position in render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.SendBackward">
            <summary>
            Send element at one step back in the render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrdering.SendToBack">
            <summary>
            Send element at the end of render order list
            </summary>
        </member>
        <member name="P:Telerik.Charting.IOrdering.Container">
            <summary>
            Gets or sets the container element
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderedObject.objectContainer">
            <summary>
            Container, that contains the render order for taken up elements
            (For  property)
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.GetOrder">
            <summary>
            Get this elements order position in container
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.SetOrder(System.Int32)">
            <summary>
            Set this object in new render order position
            </summary>
            <param name="index">New position</param>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.Remove">
            <summary>
            Remove this  element from  render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.BringForward">
            <summary>
            Send element at one step forward in the render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.BringToFront">
            <summary>
            Set element at the first position in render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.SendBackward">
            <summary>
            Send element at one step back in the render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.SendToBack">
            <summary>
            Send element at the end of render order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderedObject.OnRender">
            <summary>
            Called after rendering
            </summary>
        </member>
        <member name="P:Telerik.Charting.RenderedObject.Container">
            <summary>
            Link to container element
            </summary>
        </member>
        <member name="E:Telerik.Charting.RenderedObject.RenderEventHandler">
            <summary>
            Rendering event handler
            </summary>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.#ctor(Telerik.Charting.IContainer)">
            <summary>
            Creates new class instance
            </summary>
            <param name="container">Container</param>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.#ctor(Telerik.Charting.Styles.LayoutStyle,Telerik.Charting.IContainer)">
            <summary>
            Creates new class instance
            </summary>
            <param name="appearance">Appearance</param>
            <param name="container">Container object</param>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.GetOffset(System.Object,Telerik.Charting.LayoutElement.OffsetCalculationDelegate)">
            <summary>
            Gets element offset
            </summary>
            <param name="oelement">Element</param>
            <param name="calcMethod">Offset calculation method delegate (left, right, top, bottom)</param>
            <returns>Offset value</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.GetOffsetLeft(System.Object)">
            <summary>
            Gets left offset
            </summary>
            <param name="oelement">Element to get an offset of</param>
            <returns>Offset value</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.GetOffsetTop(System.Object)">
            <summary>
            Gets top offset
            </summary>
            <param name="element">Element to get an offset of</param>
            <returns>Offset value</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.GetOffsetRight(System.Object)">
            <summary>
            Gets right offset
            </summary>
            <param name="element">Element to get an offset of</param>
            <returns>Offset value</returns>        
        </member>
        <member name="M:Telerik.Charting.LayoutElement.GetOffsetBottom(System.Object)">
            <summary>
            Gets bottom offset
            </summary>
            <param name="element">Element to get an offset of</param>
            <returns>Offset value</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.CalculatePosition(Telerik.Charting.Styles.ISizesAndPaddings)">
            <summary>
            Calculates element position in container
            </summary>
            <param name="containerDimensions">Rendering container dimensions</param>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.CalculatePosition(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates element position. Makes an additional check for a container object type 
            </summary>
            <param name="renderEngine"></param>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.TrackViewState">
            <summary>
            Tracking view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.LoadViewState(System.Object)">
            <summary>
            Loads data from a view state
            </summary>
            <param name="savedState">Views state to load from</param>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.SaveViewState">
            <summary>
            Saves settings to a view state
            </summary>
            <returns>Saved view state</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutElement.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="T:Telerik.Charting.LayoutElement.OffsetCalculationDelegate">
            <summary>
            Offset calculation method delegate
            </summary>
            <param name="prevElem">Previous element in a container's order list</param>
            <param name="container">Rendering container</param>
            <param name="prevElemPosition">Previous element's position in a container order list</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Charting.IContainer">
            <summary>
            Common interface for a rendering container objects
            </summary>
        </member>
        <member name="M:Telerik.Charting.IContainer.GetOrder(Telerik.Charting.IOrdering)">
            <summary>
            Get elements order position
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.IContainer.Add(Telerik.Charting.IOrdering)">
            <summary>
            Add element at the end of list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.IContainer.Insert(System.Int32,Telerik.Charting.IOrdering)">
            <summary>
            Insert element at specific position in list
            </summary>
            <param name="order">Element</param>
            <param name="element">Position index</param>
        </member>
        <member name="M:Telerik.Charting.IContainer.Remove(Telerik.Charting.IOrdering)">
            <summary>
            Remove  element from list
            </summary>
            <param name="element">Element for removing</param>
        </member>
        <member name="M:Telerik.Charting.IContainer.RemoveAt(System.Int32)">
            <summary>
            Remove  element from list by it's index
            </summary>
            <param name="index">Elements index for remove</param>
        </member>
        <member name="M:Telerik.Charting.IContainer.ReIndex">
            <summary>
            Re index order list
            </summary>
        </member>
        <member name="P:Telerik.Charting.IContainer.OrderList">
            <summary>
            List, that is represent the render order for taken up elements
            </summary>
        </member>
        <member name="P:Telerik.Charting.IContainer.NextPosition">
            <summary>
            Get a next free order position
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartTitle">
            <summary>
            Title for chart
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartLegend">
            <summary>
            Chart legend
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartPlotArea">
            <summary>
            Chart plot area
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartComponent">
            <summary>
            Control holder
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartOrderList">
            <summary>
            List, that is represent the render order for taken up elements
            (For IContainer.OrderList property)
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartDesignTime">
            <summary>
            Provides information whether the chart is used in design-time mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartDataManager">
            <summary>
            Data Manager for data binding
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartSeriesCollection">
            <summary>
            Series collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartDesignTimeSeriesCollection">
            <summary>
            Temporary series collection in design time
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartOriginalSeriesCollection">
            <summary>
            Temporary copy of original series collection in design time
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartCustomPalettes">
            <summary>
            Custom palettes collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartCustomFigures">
            <summary>
            Users custom figures collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartFigures">
            <summary>
            Default figures collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.Chart.chartSkinsCollection">
            <summary>
            Skins Collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.#ctor">
            <summary>
            Default constructor for Chart
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.Chart_BeforeLayout(System.Object,System.EventArgs)">
            <summary>
            Default method for BeforeLayout event handler
            </summary>
            <param name="sender">Object</param>
            <param name="e">EventArgs</param>
        </member>
        <member name="M:Telerik.Charting.Chart.Chart_PrePaint(System.Object,System.EventArgs)">
            <summary>
            Default method for PrePaint event handler
            </summary>
            <param name="sender">Object</param>
            <param name="e">EventArgs</param>
        </member>
        <member name="M:Telerik.Charting.Chart.#ctor(Telerik.Charting.IChartComponent)">
            <summary>
            Constructor from different chart controls
            </summary>
            <param name="component">IChartComponent</param>
        </member>
        <member name="M:Telerik.Charting.Chart.CallRegionEvent(System.Drawing.PointF,Telerik.Charting.IContainer)">
            <summary>
            Determine on which element of chart click occur
            </summary>
            <param name="point">Click coordinates</param>
            <param name="container">Container object</param>
            <returns>Active region object</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.ChangeSeriesType">
            <summary>
            Set type for all series as DefaultType
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.ApplyPalette(System.String)">
            <summary>
            Apply palette for chart
            </summary>
            <param name="paletteName">Palette name</param>
        </member>
        <member name="M:Telerik.Charting.Chart.ApplySkin(System.String)">
            <summary>
            Apply skin for chart
            </summary>
            <param name="skinName">Skin name</param>
        </member>
        <member name="M:Telerik.Charting.Chart.ShouldApplyTextWrapping(Telerik.Charting.Styles.AutoTextWrap)">
            <summary>
            Specifies should apply text wrapping or not
            </summary>
            <param name="textBlockAutoTextWrap">AutoTextWrap from text block</param>
            <returns>Boolean</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.Clone">
            <summary>
            Makes a chart's clone 
            </summary>
            <returns>Chart's clone</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.UpdateDesign">
            <summary>
            Update design-time preview
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.SetDataGroupColumn(System.String)">
            <summary>
            Changes the DataGroupColumn property without DataBind method call
            </summary>
            <param name="columnName">Column Name</param>
        </member>
        <member name="M:Telerik.Charting.Chart.GetTextQuality">
            <summary>
            Provide relation between enums TextQuality(Teleriks) and TextRenderingHint(.Net)
            </summary>
            <returns>TextRenderingHint value</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.GetImageQuality">
            <summary>
            Provide relation between enums ImageQuality(Teleriks) and SmoothingMode(.Net)
            </summary>
            <returns>SmoothingMode value</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.OnlyPieSeries">
            <summary>
            Returns true if only pie series present
            </summary>
            <returns>Boolean</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.MapPath(System.String)">
            <summary>
            MapPath functionality
            </summary>
            <param name="filePath">path</param>
            <returns>path</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.InitDesignTime">
            <summary>
            Initialize design-time mode
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.FinalizeDesignTime">
            <summary>
            Finalize design-time mode
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.ClearSkin(System.Object)">
            <summary>
            Clearing skin settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.IsDefaultValue(System.ComponentModel.PropertyDescriptor,System.Object)">
            <summary>
            Checking property on a default value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetDefaultPropertyValue(System.ComponentModel.PropertyDescriptor)">
            <summary>
            Return a default value of a property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetPropertyValue(System.ComponentModel.PropertyDescriptor,System.Object)">
            <summary>
            Return a value of a property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.LoadSkin(System.Object,System.IO.TextWriter)">
            <summary>
            Load skin from
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.SaveSkin(System.Object)">
            <summary>
            Saving skin
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.LoadChart(System.Object,System.IO.TextReader)">
            <summary>
            Loading chart from XML string wrapped in TextWriter
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.SaveChart(System.Object)">
            <summary>
            Exports chart to a XML string wrapped in TextWriter
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.ResolvePhysicalLocation(System.String)">
            <summary>
            Return a full path
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.LocalDataFilePathToGlobal(System.Web.UI.WebControls.AccessDataSource)">
            <summary>
            Return a full path for a data source object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.LocalDataFilePathToGlobal(System.Web.UI.WebControls.XmlDataSource)">
            <summary>
            Return a full path for a data source object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.Init">
            <summary>
            Initialize chart and its properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.CalculateChart">
            <summary>
            Chart calculations: Binding series to legend for BeforeLayout Event
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.ReCalculateChart">
            <summary>
            Chart recalculation
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.OnBeforeLayout(System.Object,System.EventArgs)">
            <summary>
            Execute BeforeLayoutEventHandler
            </summary>
            <param name="chart">Chart</param>
            <param name="args">Arguments</param>
        </member>
        <member name="M:Telerik.Charting.Chart.OnPrePaint(System.Object,System.EventArgs)">
            <summary>
            Execute PrePaintEventHandler
            </summary>
            <param name="chart">Chart</param>
            <param name="args">Arguments</param>
        </member>
        <member name="M:Telerik.Charting.Chart.GetImage">
            <summary>Returns the chart image</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetImage(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>Returns the chart image</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetImage(System.Int32,System.Int32)">
            <summary>Returns the chart image</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetStaticArea(System.Int32,System.Int32,System.Boolean,System.Boolean,System.Boolean)">
            <summary>Returns the chart static area as image for zoom feature</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetPlotArea(System.Int32,System.Int32,System.Single,System.Single,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>Returns the chart plot area part as image for zoom feature</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetScaledImageWidth(System.Single,System.Single)">
            <summary>
            Get image width when scaling enabled
            </summary>
            <param name="xScale">X scale coefficient</param>
            <param name="yScale">Y scale coefficient</param>
            <returns>Width in pixels</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.GetScaledImageHeight(System.Single,System.Single)">
            <summary>
            Get image height when scaling enabled
            </summary>
            <param name="xScale">X scale coefficient</param>
            <param name="yScale">Y scale coefficient</param>
            <returns>Height in pixels</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.PrepareForScale(System.Single,System.Single)">
            <summary>Preapare chart for zooming</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.RestoreAfterScale(System.Int32,System.Int32)">
            <summary>Restore chart after zooming</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.CheckLimitations">
            <summary>
            Checking restrictions for when some charts modes enabled
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.PrepareForAutoLayout">
            <summary>
            Prepare chart elements for AutoLayout feature
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.RestoreAutoLayoutChanges">
            <summary>
            Restore chart elements setting after drawing in AutoLayout mode
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetAxis(System.Int32,System.Int32,System.Single,System.Single,Telerik.Charting.ChartAxisType)">
            <summary>Returns an axis image only with ticks and axis items</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.GetException(Telerik.Charting.RenderEngine,System.Exception)">
            <summary>Returns crash-exception image if any</summary>
        </member>
        <member name="M:Telerik.Charting.Chart.CallRegionEvent(System.Int32,System.Int32)">
            <summary>
            Determine on which element of chart click occur
            </summary>
            <param name="x">Click x coodrinate</param>
            <param name="y">Click y coodrinate</param>
            <returns>Active region object</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.CallRegionEvent(System.Single,System.Single)">
            <summary>
            Determine on which element of chart click occur
            </summary>
            <param name="x">Click x coodrinate</param>
            <param name="y">Click y coodrinate</param>
            <returns>Active region object</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.CallRegionEvent(System.Drawing.Point)">
            <summary>
            Determine on which element of chart click occur
            </summary>
            <param name="point">Click coodrinates</param>
            <returns>Active region object</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.CallRegionEvent(System.Drawing.PointF)">
            <summary>
            Determine on which element of chart click occur
            </summary>
            <param name="point">Click coodrinates</param>
            <returns>Active region object</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.GetSeries(System.String)">
            <summary>
            Get series
            </summary>
            <param name="name">Series name</param>
            <returns>Series or null</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.GetSeries(System.Int32)">
            <summary>
            Get series
            </summary>
            <param name="index">Series index</param>
            <returns>Series or null</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.GetSeries(System.Drawing.Color)">
            <summary>
            Gets a reference to the data first series by specifying data series color.
            </summary>
            <param name="seriesColor">Series color</param>
            <returns>Series or null</returns>
        </member>
        <member name="M:Telerik.Charting.Chart.AddChartSeries(Telerik.Charting.ChartSeries)">
            <summary>
            Adds a new data series to the chart's data series collection.
            </summary>
            <param name="series">Series for adding</param>
        </member>
        <member name="M:Telerik.Charting.Chart.AddSeries(Telerik.Charting.ChartSeries)">
            <summary>
            Add series
            </summary>
            <param name="series">Series to add</param>
        </member>
        <member name="M:Telerik.Charting.Chart.AddSeries(Telerik.Charting.ChartSeriesCollection)">
            <summary>
            Add series
            </summary>
            <param name="chartSeries">Series for adding</param>
        </member>
        <member name="M:Telerik.Charting.Chart.AddSeries(Telerik.Charting.ChartSeries[])">
            <summary>
            Add series
            </summary>
            <param name="chartSeries">Series for adding</param>
        </member>
        <member name="M:Telerik.Charting.Chart.AddSeries(System.Collections.Generic.List{Telerik.Charting.ChartSeries})">
            <summary>
            Add series
            </summary>
            <param name="seriesList">Series for adding</param>
        </member>
        <member name="M:Telerik.Charting.Chart.AddSeries(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeries[])">
            <summary>
            Add series
            </summary>
            <param name="chartSeries">Series for adding</param>
            <param name="chartSeriesArray">Series for adding</param>
        </member>
        <member name="M:Telerik.Charting.Chart.RemoveAllSeries">
            <summary>
            Clear series collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.RemoveSeries(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeries[])">
            <summary>
            Remove series
            </summary>
            <param name="chartSeries">Series</param>
            <param name="chartSeriesArray">Series</param>
        </member>
        <member name="M:Telerik.Charting.Chart.RemoveSeries(System.String,System.String[])">
            <summary>
            Remove series
            </summary>
            <param name="seriesName">Series name</param>
            <param name="seriesNames">Series names</param>
        </member>
        <member name="M:Telerik.Charting.Chart.RemoveSeriesAt(System.Int32,System.Int32[])">
            <summary>
            Remove series
            </summary>
            <param name="index">Series index</param>
            <param name="indexes">Series indexes</param>
        </member>
        <member name="M:Telerik.Charting.Chart.GetOrder(Telerik.Charting.IOrdering)">
            <summary>
            Get elements order position
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.Chart.Add(Telerik.Charting.IOrdering)">
            <summary>
            Add element at the end of list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.Chart.Insert(System.Int32,Telerik.Charting.IOrdering)">
            <summary>
            Insert element at specific position in list
            </summary>
            <param name="order">Position</param>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.Chart.Remove(Telerik.Charting.IOrdering)">
            <summary>
            Remove  element from list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.Chart.RemoveAt(System.Int32)">
            <summary>
            Remove  element from list by it's index
            </summary>
            <param name="index">Position</param>
        </member>
        <member name="M:Telerik.Charting.Chart.ReIndex">
            <summary>
            Re-index order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Chart.TrackViewState">
            <summary>
            Tracking ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.LoadViewState(System.Object)">
            <summary>
            Loading ViewState data
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.SaveViewState">
            <summary>
            Saving ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Chart.CopyFrom(Telerik.Charting.Chart)">
            <summary>
            Copy chart setting
            </summary>
            <param name="baseChart">Base chart</param>
        </member>
        <member name="P:Telerik.Charting.Chart.Figures">
            <summary>Contains a figures collection .</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.CustomFigures">
            <summary>Contains a collection of custom figures.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.CustomPalettes">
            <summary>
            Contains a collection of custom palettes
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.DesignTime">
            <summary>Provides information whether the chart is used in design-time mode.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.ChartTitle">
            <summary>Provides access to the title element of the chart.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Legend">
            <summary>Provides access to the legend element of the chart.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Appearance">
            <summary>Contains appearance related settings.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.PlotArea">
            <summary>Contains a chart plot area element.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Charting.Chart.DefaultType">
            <summary>Specifies the default series type.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Bitmap">
            <summary>Use this property to access the chart bitmap.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.DataGroupColumn">
            <summary>
            Specifies a column which will be used for group by clause. A new series will be
            created for each unique record in this column.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Series">
            <summary>
            Gets or sets the RadChart's chart series collection object.
            </summary>  
        </member>
        <member name="P:Telerik.Charting.Chart.SeriesPalette">
            <summary>
            Specifies the series palette
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.SeriesPaletteWrapper">
            <summary>
            Added just temporary to avoid build warnings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.AutoLayout">
            <summary>
            Specifies AutoLayout mode to all items on the chart control.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.AutoLayoutWrapper">
            <summary>
            Added just temporary to avoid build warnings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.AutoTextWrap">
            <summary>
            Specifies AutoTextWrap mode for all wrappable text blocks of the chart control.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.AutoTextWrapWrapper">
            <summary>
            Added just temporary to avoid build warnings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Skin">
            <summary>Specifies the skin to use.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.SkinsOverrideStyles">
            <summary>
            When true and using a skin, user will not be able to override any of the skin
            appearance.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.DataManager">
            <summary>
            Exposes advanced data binding options. You can use this property to perform custom
            data binding at runtime.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.SeriesOrientation">
            <summary>
            Specifies the orientation of chart series on the plot area.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.IntelligentLabelsEnabled">
            <summary>Toggles the use of the IntelligentLabels feature.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.ApplicationPath">
            <summary>Parent application path.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.TempImagePath">
            <summary>Temporary images path.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.ImageFormat">
            <summary>Specifies the image rendering format.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.BitmapResolution">
            <summary>Specifies the bitmap resolution.</summary>
        </member>
        <member name="P:Telerik.Charting.Chart.TextWrapFactor">
            <summary>
            Return factor for wrap mechanism for fixed sides proportion wrap type
            </summary>
        </member>
        <member name="E:Telerik.Charting.Chart.BeforeLayoutEventHandler">
            <summary>
             Event handle for BeforeLayout Event
            </summary>
        </member>
        <member name="E:Telerik.Charting.Chart.PrePaintEventHandler">
            <summary>
             Event handle for PrePaint Event
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.DesignTimeSeriesCollection">
            <summary>
            Specifies a design-time series collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.OriginalSeriesCollection">
            <summary>
            Specifies a temporary copy of original series in design-time mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.Parent">
            <summary>
            Parent chart element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.ScaleEnabled">
            <summary>
            Show enable scale or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.Chart.OrderList">
            <summary>List containing the render order of elements.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Charting.Chart.NextPosition">
            <summary>Gets the next free order position.</summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Charting.IChartComponent">
            <summary>
            Common chart components definitions
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.IChartComponent.MapPath(System.String)">
            <summary>
            MapMath method
            </summary>
            <param name="filePath">path</param>
            <returns>path</returns>
        </member>
        <member name="M:Telerik.Charting.IChartComponent.Clone">
            <summary>
            Control clone
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Charting.IChartComponent.Chart">
            <summary>
            Chart object
            </summary>
        </member>
        <member name="P:Telerik.Charting.IChartComponent.TempImagesFolder">
            <summary>
            Path to the Temp folder
            </summary>
        </member>
        <member name="P:Telerik.Charting.IChartSupportsScaling.ScaleEnabled">
            <summary>
            Gets a value indicating whether scaling is enabled.
            </summary>
        </member>
        <member name="T:Telerik.Charting.IChartDesigner">
            <summary>
            Charting component
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.IChartDesigner.Update">
            <summary>
            Updating designer
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartException">
            <summary>
            Common charting error
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.ChartException.#ctor(System.String)">
            <summary>
            Default constructor
            </summary>
            <param name="message">Message</param>
        </member>
        <member name="M:Telerik.Charting.ChartException.#ctor(System.String,System.Exception)">
            <summary>
            Constructor
            </summary>
            <param name="message">Message</param>
            <param name="inner">Parent Error</param>
        </member>
        <member name="M:Telerik.Charting.ChartException.WrappedByWidth(Telerik.Charting.ChartGraphics,System.String,System.Drawing.Font,System.Single)">
            <summary>
            For chart exceptions drawing
            </summary>
            <param name="graphics">Graphics</param>
            <param name="text">Message</param>
            <param name="font">Font</param>
            <param name="width">Width</param>
            <returns>string</returns>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesType">
            <summary>Supported series types.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Bar">
            <summary>
            Specifies a bar data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedBar">
            <summary>
            Specifies a stacked bar data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedBar100">
            <summary>
            Specifies a stacked 100 bar data series.
            </summary>        
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Line">
            /// <summary>
            Specifies a line data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Area">
            <summary>
            Specifies an area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedArea">
            <summary>
            Specifies a stacked area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedArea100">
            <summary>
            Specifies a stacked 100 area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Pie">
            /// <summary>
            Specifies a pie data series.
            </summary>        
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Gantt">
            /// <summary>
            Specifies a gantt data series.
            </summary>       
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Bezier">
            <summary>
            Specifies a bezier data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Spline">
            <summary>
            Specifies a spline data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Bubble">
            <summary>
            Specifies a bubble data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.Point">
            <summary>
            Specifies a point data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.SplineArea">
            <summary>
            Specifies an spline area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedSplineArea">
            <summary>
            Specifies a stacked spline area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedSplineArea100">
            <summary>
            Specifies a stacked 100 spline area data series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.CandleStick">
            <summary>Specifies a candlestick data series.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedLine">
            <summary>Specifies a stacked line data series.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesType.StackedSpline">
            <summary>Specifies a stacked spline data series.</summary>
        </member>
        <member name="T:Telerik.Charting.TableRenderType">
            <summary>
            RenderType of DataTable
            </summary>
        </member>
        <member name="T:Telerik.Charting.ContentHorizontalAlign">
            <summary>
            Horizontal Alignment of text in DataTable cells
            </summary>
        </member>
        <member name="T:Telerik.Charting.ContentVerticalAlign">
            <summary>
            Vertical Alignment of text in DataTable cells
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartDataTable">
            <summary>
            DataTable. Shows the series data in a tabular format.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.dataTableData">
            <summary>
            Contains DataTable data
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.dataTablePlotArea">
            <summary>
            PlotArea to which DataTable related to
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.dataTableSizesW">
            <summary>
            Cells' width
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.dataTableSizesH">
            <summary>
            Cells' height
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.seriesMarkers">
            <summary>
            Markers of series
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDataTable.dataTableShouldCalculate">
            <summary>
            Should be recalculated when AutoLayout
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.FillData(Telerik.Charting.ChartSeriesCollection)">
            <summary>
            Fill data by series' items values
            </summary>
            <param name="seriesCollection"></param>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.Reset">
            <summary>
            Reset to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.Initilaize">
            <summary>
            Initialize DataTable's data
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.WrapText(System.String,Telerik.Charting.RenderEngine)">
            <summary>
            Wrap DataTable text using factor for wrap mechanism
            </summary>
            <param name="str">Text that should be wrapped</param>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Wrapped string</returns>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.WrapText(System.String,Telerik.Charting.RenderEngine,System.Single)">
            <summary>
            Wrap DataTable text
            </summary>
            <param name="str">Text that should be wrapped</param>
            <param name="renderEngine">RenderEngine of chart</param>
            <param name="width">Fixed width of wrapped text</param>
            <returns>Wrapped string</returns>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Calculate size of DataTable
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.CalculatePosition(Telerik.Charting.RenderEngine)">
            <summary>
            Calculate position
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.#ctor(Telerik.Charting.ChartPlotArea)">
            <summary>
            Create new instance of ChartDataTable class
            </summary>
            <param name="plotArea">PlotArea to which DataTable is related to</param>
        </member>
        <member name="M:Telerik.Charting.ChartDataTable.#ctor(Telerik.Charting.ChartPlotArea,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartDataTable class
            </summary>
            <param name="plotArea">PlotArea to which DataTable is related to</param>
            <param name="container">Container of DataTable</param>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.SizesW">
            <summary>
            Cells' widths array
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.SizesH">
            <summary>
            Cells' heights array
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.PlotArea">
            <summary>
            Plot area to which DataTable is related
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.Data">
            <summary>
            Data stored in cells
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.Visible">
            <summary>
            Visibility of DataTable
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.IsVisible">
            <summary>
            Visible and not calculate
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.Appearance">
            <summary>
            Appearance options
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartDataTable.SeriesMarkers">
            <summary>
            Markers of series
            </summary>
        </member>
        <member name="T:Telerik.Charting.ArrayDataHelper">
            <summary>
            Helper class used for an Arrays data binding
            </summary>
        </member>
        <member name="T:Telerik.Charting.DataHelper">
            <summary>
            Common helper class. Implements most of ICommonDataHelper members
            </summary>
        </member>
        <member name="T:Telerik.Charting.ICommonDataHelper">
            <summary>
            Contains common members that should be implemented in the data source helpers for supported data sources
            </summary>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetColumnIndex(System.String)">
            <summary>
            Gets the column index by column name in the Data Source object 
            </summary>
            <param name="columnName">Column name</param>
            <returns>Column index if column found or -1 if column not found</returns>
            <remarks>This method is not supported by all data sources</remarks>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetColumnName(System.Int32)">
            <summary>
            Gets the column name if it is supported by data source
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Column name if found or an empty string</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetDoubleValue(System.Int32,System.Int32)">
            <summary>
            Return the double value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Double value at given column and row</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetObjectValue(System.Int32,System.Int32)">
            <summary>
            Return the object value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Object value at given column and row from data source</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetStringValue(System.Int32,System.Int32)">
            <summary>
            Return the string value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>String value at given column and row of a data source</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetFilteredColumn(System.Int32)">
            <summary>
            Return unique column's content
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Objects array with unique column values</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetSortedAndFilteredColumn(System.Int32)">
            <summary>
            Return sorted unique column's content
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Objects array with unique column values sorted ascending</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.IsColumnNumeric(System.Int32)">
            <summary>
            Returns true if given column contains numeric values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains numeric values</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.IsColumnString(System.Int32)">
            <summary>
            Returns true if given column contains string type values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains string values</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.IsItemNumeric(System.Int32,System.Int32)">
            <summary>
            Returns true if value at the given position is numeric
            </summary>
            <param name="rowIndex">Row position index of data item in a data source</param>
            <param name="columnIndex">Column index of data item in a data source</param>
            <returns>True if data item contains numeric value at given row and column</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetGroupsColumnIndex">
            <summary>
            Returns possible groups column used for automatic data binding
            </summary>
            <returns>Automatically found possible column with repeating values for a data grouping</returns>
            <remarks>Only the first found numeric column will be checked. 
            If such column is not found or does not contain repeatable values the -1 will be returned
            </remarks>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetLabelsColumnIndex(System.Int32)">
            <summary>
            Returns possible column used as labels source when group column present
            </summary>
            <param name="groupColumn">DataGroupColumn index in a data source</param>
            <returns>Column index that can be used as a series item labels source</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetValuesXColumnIndex">
            <summary>
            Returns possible series items X values column
            </summary>
            <returns>Possible series items X values column's index or -1 if no proper column found</returns>      
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetValuesYColumnIndex">
            <summary>
            Returns possible series items Y values column
            </summary>
            <returns>Possible numeric columns array available for a data binding</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetValuesYColumns">
            <summary>
            Returns all possible series items Y values columns
            </summary>
            <returns>Possible numeric columns array available for a data binding</returns>
        </member>
        <member name="M:Telerik.Charting.ICommonDataHelper.GetGanttValuesColumns">
            <summary>
            Returns possible Gantt series items values columns array
            </summary>
            <returns>Data source columns array available for a Gantt series data binding (X, Y, X2, Y2 values)</returns>
        </member>
        <member name="P:Telerik.Charting.ICommonDataHelper.RowsCount">
            <summary>
            Gets the data source rows count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ICommonDataHelper.ColumnsCount">
            <summary>
            Gets the data source columns count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ICommonDataHelper.ColumnNameSupported">
            <summary>
            Returns true if data source supports columns naming or false in other cases
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetDoubleValue(System.Int32,System.Int32)">
            <summary>
            Return the double value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Double value at given column and row</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetObjectValue(System.Int32,System.Int32)">
            <summary>
            Return the object value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Object value at given column and row from data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetStringValue(System.Int32,System.Int32)">
            <summary>
            Return the string value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>String value at given column and row of a data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsColumnNumeric(System.Int32)">
            <summary>
            Returns true if given column contains numeric values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains numeric values</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsColumnString(System.Int32)">
            <summary>
            Returns true if given column contains string type values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains string values</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetColumnIndex(System.String)">
            <summary>
            Gets the column index by column name in the Data Source object 
            </summary>
            <param name="columnName">Column name</param>
            <returns>Column index if column found or -1 if column not found</returns>
            <remarks>This method is not supported by all data sources</remarks>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetColumnName(System.Int32)">
            <summary>
            Gets the column name if it is supported by data source
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Column name if supported by a data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsItemNumeric(System.Int32,System.Int32)">
            <summary>
            Returns true if value at the given position is numeric
            </summary>
            <param name="rowIndex">Row position index of data item in a data source</param>
            <param name="columnIndex">Column index of data item in a data source</param>
            <returns>True if data item contains numeric value at given row and column</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetLabelsColumnIndex(System.Int32)">
            <summary>
            Returns possible column used as labels source when group column present
            </summary>
            <param name="groupColumn">DataGroupColumn index in a data source</param>
            <returns>Column index that can be used as a series item labels source</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetGroupsColumnIndex">
            <summary>
            Returns possible groups column used for automatic data binding
            </summary>
            <returns>Automatically found possible column with repeating values for a data grouping</returns>
            <remarks>Only the first found numeric column will be checked. 
            If such column is not found or does not contain repeatable values the -1 will be returned
            </remarks>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetFilteredColumn(System.Int32)">
            <summary>
            Return unique column's content
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Objects array with unique column values</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetSortedAndFilteredColumn(System.Int32)">
            <summary>
            Return sorted unique column's content
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Objects array with unique column values sorted ascending</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetValuesXColumnIndex">
            <summary>
            Gets possible series items X values column
            </summary>
            <returns>Possible series items X values column's index or -1 if no proper column found</returns>      
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetValuesYColumnIndex">
            <summary>
            Gets possible series items Y values column
            </summary>
            <returns>Possible series items Y values column's index or -1 if no proper column found</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetValuesYColumns">
            <summary>
            Returns all possible series items Y values columns
            </summary>
            <returns>Possible numeric columns array available for a data binding</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.GetGanttValuesColumns">
            <summary>
            Returns all possible data source columns that could be used as Gantt series items
            </summary>
            <returns>Data source columns array available for a Gantt series data binding</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsNullableType(System.Type)">
            <summary>
            Checks is given type is Nullable
            </summary>
            <param name="type">Type to check</param>
            <returns>True if type is Nullable, or False</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsTypeNumeric(System.Type)">
            <summary>
            Checks whether the type given is numeric
            </summary>
            <param name="type">Type to check</param>
            <returns>True if Type is numeric</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsValueNumeric(System.Object)">
            <summary>
            Checks whether the value's type is numeric
            </summary>
            <param name="obj">Value to check</param>
            <returns>True if given object can be converted to number</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsTypeString(System.Type)">
            <summary>
            Checks whether the type given is string type
            </summary>
            <param name="type">Type to check</param>
            <returns>True if given type is string</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.IsValueString(System.Object)">
            <summary>
            Checks whether the value's type is String
            </summary>
            <param name="obj">Object to check</param>
            <returns>True if object can be converted to string</returns>
        </member>
        <member name="M:Telerik.Charting.DataHelper.CreateDataHelper(System.Object,System.String,System.Boolean)">
            <summary>
            Returns the data helper class accordingly to the data source type 
            </summary>
            <param name="dataSource">Data source</param>
            <param name="dataMember">Data Member (i.e. Table name)</param>
            <param name="isDesign">Design mode pointer</param>
            <returns>ICommonDataHelper-compartable object</returns>
        </member>
        <member name="P:Telerik.Charting.DataHelper.RowsCount">
            <summary>
            Returns the data source rows count
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataHelper.ColumnsCount">
            <summary>
            Returns the data source columns count
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataHelper.ColumnNameSupported">
            <summary>
            Returns true if data source supports columns naming or false in other cases
            </summary>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.indicies(System.Int32)">
            <summary>
            Indices matrix accordingly to a data array Rank
            </summary>
            <param name="columnIndex">Data column index</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.#ctor(System.Array)">
            <summary>
            Array DataHelper constructor
            </summary>
            <param name="array">Data array</param>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.GetObjectValue(System.Int32,System.Int32)">
            <summary>
            Return the object value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.IsColumnNumeric(System.Int32)">
            <summary>
            Returns true if given column contains numeric values
            </summary>
            <param name="columnIndex"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.IsColumnString(System.Int32)">
            <summary>
            Returns true if given column contains string type values
            </summary>
            <param name="columnIndex"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.GetColumnIndex(System.String)">
            <summary>
            Returns column index in a data array by column name
            </summary>
            <param name="columnName">Column name in data array</param>
            <remarks>Unsupported by current DataHelper</remarks>
            <returns>Always returns -1</returns>
        </member>
        <member name="M:Telerik.Charting.ArrayDataHelper.GetColumnName(System.Int32)">
            <summary>
            Returns column name in a data array by column index
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Empty string, because it is unsupported by current DataHelper</returns>
        </member>
        <member name="P:Telerik.Charting.ArrayDataHelper.RowsCount">
            <summary>
            Gets the data source rows count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ArrayDataHelper.ColumnsCount">
            <summary>
            Gets the data source columns count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ArrayDataHelper.ColumnNameSupported">
            <summary>
            Returns false, because current data source does not support columns naming
            </summary>
        </member>
        <member name="T:Telerik.Charting.DataManager">
            <summary>
            Acquires and manipulates data from databases or other sources. 
            Populates the SeriesCollection of the chart control. 
            </summary>
        </member>
        <member name="F:Telerik.Charting.DataManager.DESIGN_ROWS_AFFECTED">
            <summary>
            Top data sources rows used during design-time data binding
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetColumnIndex(System.String,Telerik.Charting.DataManager.ColumnType)">
            <summary>
            General column's index detection method
            </summary>
            <param name="column">Column index or name</param>
            <param name="columnType">Data source column type accordingly to ColumnType enumeration</param>
            <returns>Column index in a data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.FindPossibleColumnIndex(System.Int32,Telerik.Charting.DataManager.ColumnType)">
            <summary>
            Returns possible column index in data source
            </summary>
            <param name="groupColumn">DataGroupColumn index if present or -1 if not</param>
            <param name="type">Data source column type accordingly to ColumnType enumeration</param>
            <returns>Column index or -1 if impossible to find column</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetGroupsColumn(System.String)">
            <summary>
            Gets the groups column index from data source
            </summary>
            <param name="groupsColumn">DataGroupColumn index if present or -1 if not</param>
            <returns>Groups column index or -1 if data grouping disabled</returns>
            <remarks>When the groups column has not been set it will be found automatically</remarks> 
        </member>
        <member name="M:Telerik.Charting.DataManager.GetLabelsColumn(System.String)">
            <summary>
            Gets the labels column index in data source
            </summary>
            <param name="labelsColumn">DataLabelsColumn index if present or -1 if not</param>
            <returns>Series labels column index</returns>
            <remarks>When the labels column has not been set it will be found automatically</remarks> 
        </member>
        <member name="M:Telerik.Charting.DataManager.GetValuesColumn(System.Int32,System.String,Telerik.Charting.DataManager.ColumnType,System.Boolean)">
            <summary>
            Gets the series X, Y, X2, Y2, Y3, Y4 values columns 
            </summary>
            <param name="groupsColumn">DataGroupColumn index if present or -1 if not</param>
            <param name="column">Column name</param>
            <param name="columnType">Data source column type accordingly to ColumnType enumeration</param>
            <returns>Column with numeric values. It can be used as X, Y, X2, Y2, Y3, Y4 values source. 
            If impossible to find a column or data helper is NULL it returns -1</returns>
            <remarks>When the series X, X2 or Y2 values column has not been set it will be found automatically</remarks> 
            <param name="auto">Should automatic column search be used or not</param>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetValuesYColumns(System.String[],System.Boolean)">
            <summary>
            Gets the series Y values columns array
            </summary>
            <param name="valuesYColumns">Y values columns array. Can contain as column names as indexes</param>
            <param name="auto">Should auto mode be applied</param>
            <returns>Y values columns indexes array</returns>
            <remarks>When the series Y values column has not been set it will be found automatically</remarks>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetAxisLabelsColumn(System.String)">
            <summary>
            Gets the axis labels column index
            </summary>
            <param name="axisLabelsColumn">Axis labels column index or name</param>
            <returns>Column index</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetItemName(System.Int32,System.Boolean,System.Int32,System.Int32[],System.Int32,System.Int32,Telerik.Charting.DataManager.ItemType)">
            <summary>
            Returns either chart series name or series item name
            </summary>
            <param name="groupColumn">DataGroupColumn index</param>
            <param name="isGroupColumnNumeric">True if group column contains numeric values only</param>
            <param name="labelsColumn">Series Labels column index</param>
            <param name="valuesYColumns">Y Values columns array</param>
            <param name="row">Data item's row index in a data source</param>
            <param name="column">Data item's column index in a data source</param>
            <param name="itemType">Item type Series or SeriesItem</param>
            <returns>Chart item name for an auto created Series or SeriesItem</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.DataBindXAxes(System.Int32)">
            <summary>
            Data bind X Axis labels
            </summary>
            <param name="groupColumn">DataGroupColumn index if present or -1 in other case</param>
        </member>
        <member name="M:Telerik.Charting.DataManager.ItemsEqual(Telerik.Charting.ChartSeriesItem,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Compares two series items
            </summary>
            <param name="item1">Item to compare</param>
            <param name="item2">Item to compare</param>
            <returns>True if items represent the same data and have same names</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.DataBindSeries(System.Int32)">
            <summary>
            Populates existing chart series collection with data.
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataManager.DataBindAuto(System.Int32)">
            <summary>
            Automatically populates chart series collection with data.
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataManager.CreateSeries(System.Int32,System.Boolean,System.Int32,System.Int32,Telerik.Charting.DataManager.ValuesColumns)">
            <summary>
            Returns new chart series 
            </summary>
            <param name="groupColumn">DataGroupColumn index or -1 if grouping is not used</param>
            <param name="isGroupColumnNumeric">True if group column contains numeric values only</param>
            <param name="row">Data item's row index in a data source</param>
            <param name="column">Data item's column index in a data source</param>
            <param name="vColumns">Values columns array</param>
            <returns>New ChartSeries instance</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.CreateSeriesItem(System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.DataManager.ValuesColumns,System.Boolean)">
            <summary>
            Creates new Chart Series item from data source
            </summary>
            <param name="row">Data item's row index in a data source</param>
            <param name="column">Data item's column index in a data source</param>
            <param name="groupColumn">DataGroupColumn index or -1 if grouping is not used</param>
            <param name="labelsColumn">Series items labels column</param>
            <param name="vColumns">Values columns array</param>
            <param name="useLabels">Assign name and label for a series item or not</param>
            <returns>New ChartSeriesItem instance with data from a data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.GetDataItem(System.Int32)">
            <summary>
            Returns a Data item from a data source
            </summary>
            <param name="row">Data item's row index in a data source</param>
            <returns>Data item row or null in other cases</returns>
        </member>
        <member name="M:Telerik.Charting.DataManager.ValidateDataSource(System.Object)">
            <summary>
            Validates data source object passed
            </summary>
            <param name="dataSource">Data Source</param>
            <remarks>The data source should implement the IEnumerable interface</remarks>
        </member>
        <member name="M:Telerik.Charting.DataManager.OnItemDataBound(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem,System.Object)">
            <summary>
            Calls an ItemDataBound event
            </summary>
            <param name="chartSeries">Series</param>
            <param name="chartSeriesItem">Series item</param>
            <param name="dataItem">Data Source</param>
        </member>
        <member name="M:Telerik.Charting.DataManager.DataBind">
            <summary>
            Forces the data to be refreshed
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataManager.ClearDataSource">
            <summary>
            Clears the Data Source used
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataManager.CopyFrom(Telerik.Charting.DataManager)">
            <summary>
            Copies settings from another data manager
            </summary>
            <param name="manager">Source DataManager to copy settings from</param>
        </member>
        <member name="M:Telerik.Charting.DataManager.#ctor(Telerik.Charting.Chart)">
            <summary>
            Default constructor
            </summary>
            <param name="chart">Parent chart object</param>
        </member>
        <member name="P:Telerik.Charting.DataManager.UseAutoBind">
            <summary>
            Sets the necessary using or not the automatic data binding at the design time
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsChartSupportsXAxisDataBinding">
            <summary>
            Returns true if possible to use the automatic X Axis data binding
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsXValues">
            <summary>
            Does the chart series support the X Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsY2Values">
            <summary>
            Does the chart series support the Y2 Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsX2Values">
            <summary>
            Does the chart series support the X2 Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsX2Y2Values">
            <summary>
            Does the chart series support the X2 and Y2 Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsY3Values">
            <summary>
            Does the chart series support the Y3 Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsSeriesSupportsY4Values">
            <summary>
            Does the chart series support the Y4 Values
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.CurrentSeriesType">
            <summary>
            Type of the currently processed series
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.CurrentDataHelper">
            <summary>
            Active DataHelper
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.ParentChart">
            <summary>
            Parent Chart object's reference
            </summary>
        </member>
        <member name="E:Telerik.Charting.DataManager.ItemDataBound">
            <summary>
            Event raised after the each series item's data binding  
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.DataSource">
            <summary>
            Chart Data Source object
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.DataMember">
            <summary>
            Gets or sets the name of the list of data that the data-bound control binds to, in cases where the data source contains more than one distinct list of data items.
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.IsDataBindCalled">
            <summary>
            Returns true if DataBind method has been called
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.LabelsColumn">
            <summary>
            The data source column used as chart labels source
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.ValuesXColumn">
            <summary>
            The data source column used as series items X coordinate
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataManager.ValuesYColumns">
            <summary>
            The data source columns array used as series items Y coordinate source
            </summary>
            <remarks>This array could be used to set the Gantt chart data source columns. 
            The columns should be added in the following order: X, Y, X2, Y2 </remarks>
        </member>
        <member name="P:Telerik.Charting.DataManager.UseSeriesGrouping">
            <summary>
            Enables or disables the series grouping feature
            </summary>
            <remarks>Default value is True</remarks>
        </member>
        <member name="T:Telerik.Charting.DataManager.ValuesColumns">
            <summary>
            Data source columns indexes used for a series data binding
            </summary>
        </member>
        <member name="T:Telerik.Charting.DataManager.ColumnType">
            <summary>
            Possible data source columns' types 
            </summary>
        </member>
        <member name="T:Telerik.Charting.DataManager.ItemType">
            <summary>
            Chart item type Series or SeriesItem
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartItemDataBoundEventArgs">
            <summary>
            Class containing event data for an ItemDataBound event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartItemDataBoundEventArgs.#ctor(Telerik.Charting.ChartSeriesItem,Telerik.Charting.ChartSeries,System.Object)">
            <summary>
            Class constructor
            </summary>
            <param name="seriesItem">Data bound series item</param>
            <param name="chartSeries">Parent series</param>
            <param name="dataItem">Current data source object</param>
        </member>
        <member name="P:Telerik.Charting.ChartItemDataBoundEventArgs.DataItem">
            <summary>
            Real data source object for a chart. 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartItemDataBoundEventArgs.ChartSeries">
            <summary>
            Chart series 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartItemDataBoundEventArgs.SeriesItem">
            <summary>
            Series item
            </summary>
        </member>
        <member name="T:Telerik.Charting.DataTableDataHelper">
            <summary>
            DataTable data source helper class
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.#ctor(System.Data.DataTable)">
            <summary>
            Default constructor
            </summary>
            <param name="data">DataTable objects as chart's data source</param>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.GetObjectValue(System.Int32,System.Int32)">
            <summary>
            Return the object value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Object value at given column and row from data source</returns>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.IsColumnNumeric(System.Int32)">
            <summary>
            Returns true if given column contains numeric values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains numeric values</returns>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.IsColumnString(System.Int32)">
            <summary>
            Returns true if given column contains string type values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains string values</returns>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.GetColumnIndex(System.String)">
            <summary>
            Gets the column index by column name in the Data Source object 
            </summary>
            <param name="columnName">Column name</param>
            <returns>Column index if column found or -1 if column not found</returns>
        </member>
        <member name="M:Telerik.Charting.DataTableDataHelper.GetColumnName(System.Int32)">
            <summary>
            Gets the column name 
            </summary>
            <param name="columnIndex">Column index</param>
            <returns></returns>        
        </member>
        <member name="P:Telerik.Charting.DataTableDataHelper.RowsCount">
            <summary>
            Gets the data source rows count
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataTableDataHelper.ColumnsCount">
            <summary>
            Gets the data source columns count
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataTableDataHelper.ColumnNameSupported">
            <summary>
            Returns true, because current data source supports columns naming
            </summary>
        </member>
        <member name="P:Telerik.Charting.DataTableDataHelper.DataTable">
            <summary>
            Gets the DataTable object
            </summary>
        </member>
        <member name="T:Telerik.Charting.Product">
            <summary>
            Sample object. Used for a data binding demonstration only
            </summary>
        </member>
        <member name="T:Telerik.Charting.ProductsBL">
            <summary>
            Sample business logic object. Used for a data binding demonstration only
            </summary>
        </member>
        <member name="M:Telerik.Charting.ProductsBL.GetProductsList">
            <summary>
            Returns products list
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Charting.DataSetClass">
            <summary>
            Sample class returns DataSet for an ObjectDataSource data binding demo
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataSetClass.#ctor">
            <summary>
            Constructor. Loads sample data in DataSet
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataSetClass.Finalize">
            <summary>
            Destructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataSetClass.GetData">
            <summary>
            Gets data as DataSet object
            </summary>
            <returns>DataSet with sample data</returns>
        </member>
        <member name="T:Telerik.Charting.ComplexDataSetClass">
            <summary>
            Sample class returns DataSet with several columns which could be used as Y values source. Used for a data binding demonstration only
            </summary>
            <remarks>Shows products sales by month.</remarks>
        </member>
        <member name="M:Telerik.Charting.ComplexDataSetClass.#ctor">
            <summary>
            Constructor. Loads sample data in DataSet
            </summary>
        </member>
        <member name="M:Telerik.Charting.ComplexDataSetClass.Finalize">
            <summary>
            Class destructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.ComplexDataSetClass.GetData">
            <summary>
            Gets data
            </summary>
            <returns>DataSet with sample multicolumn data</returns>
        </member>
        <member name="T:Telerik.Charting.ProductsList">
            <summary>
            IBindingList example. Used for a data binding demonstration only
            </summary>
        </member>
        <member name="M:Telerik.Charting.ProductsList.LoadProducts">
            <summary>
            
            </summary>
        </member>
        <member name="M:Telerik.Charting.ProductsList.Add(Telerik.Charting.Product)">
            <summary>
            
            </summary>
            <param name="value"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ProductsList.AddNew">
            <summary>
            
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ProductsList.Remove(Telerik.Charting.Product)">
            <summary>
            
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:Telerik.Charting.ProductsList.OnListChanged(System.ComponentModel.ListChangedEventArgs)">
            <summary>
            
            </summary>
            <param name="ev"></param>
        </member>
        <member name="P:Telerik.Charting.ProductsList.Item(System.Int32)">
            <summary>
            
            </summary>
            <param name="index"></param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Charting.DoubleCollection">
            <summary>
            Collection base object example. Used for a data binding demostration only
            </summary>
        </member>
        <member name="M:Telerik.Charting.DoubleCollection.InitData">
            <summary>
            Data load method
            </summary>
        </member>
        <member name="T:Telerik.Charting.DemoData">
            <summary>
            Simple data sources examples class. Used for a data binding demonstration only
            </summary>
        </member>
        <member name="F:Telerik.Charting.DemoData.DoubleArray">
            <summary>
            Double Array example
            </summary>
        </member>
        <member name="F:Telerik.Charting.DemoData.ObjectsArray">
            <summary>
            Object array without groups column example
            </summary>
        </member>
        <member name="F:Telerik.Charting.DemoData.ObjectsArrayCat">
            <summary>
            Object array with groups column example
            </summary>
        </member>
        <member name="M:Telerik.Charting.DemoData.#ctor">
            <summary>
            Main class constructor
            </summary>
        </member>
        <member name="P:Telerik.Charting.DemoData.DoubleList">
            <summary>
            Strong typed double list example
            </summary>
        </member>
        <member name="T:Telerik.Charting.ListDataHelper">
            <summary>
            Helper class for data binding on the strongly typed lists of objects that can be accessed by index
            </summary>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.#ctor(System.Collections.IList)">
            <summary>
            Constructor
            </summary>
            <param name="list">Data source that implements IList interface</param>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.GetObjectValue(System.Int32,System.Int32)">
            <summary>
            Return the object value at the given row and column
            </summary>
            <param name="rowIndex">Row position index</param>
            <param name="columnIndex">Column index</param>
            <returns>Object value at given column and row from data source</returns>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.IsColumnNumeric(System.Int32)">
            <summary>
            Returns true if given column contains numeric values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains numeric values</returns>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.IsColumnString(System.Int32)">
            <summary>
            Returns true if given column contains string type values
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>True if data source column contains string values</returns>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.GetColumnIndex(System.String)">
            <summary>
            Returns column index in a data list by column name
            </summary>
            <param name="columnName">Column name in data list</param>
            <remarks>Unsupported by current DataHelper</remarks>
            <returns>Always returns -1</returns>
        </member>
        <member name="M:Telerik.Charting.ListDataHelper.GetColumnName(System.Int32)">
            <summary>
            Returns column name in a data list by column index
            </summary>
            <param name="columnIndex">Column index</param>
            <returns>Empty string, because it is unsupported by current DataHelper</returns>
        </member>
        <member name="P:Telerik.Charting.ListDataHelper.RowsCount">
            <summary>
            Gets the data source rows count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ListDataHelper.ColumnsCount">
            <summary>
            Gets the data source columns count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ListDataHelper.ColumnNameSupported">
            <summary>
            Returns false, because current data source does not support columns naming
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartBaseLabel">
            <summary>
            Base class for all labels
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartBaseLabel.chartBaseLabelTextBlock">
            <summary>
            ChartLabel text
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartBaseLabel.chartBaseLabelMarker">
            <summary>
            Graphic marker
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartBaseLabel.chartBaseLabelParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartBaseLabel.chartBaseLabelOrderList">
            <summary>
            List, that represent the render order for taken up elements
            (For IContainer.OrderList property)
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartBaseLabel.chartBaseLabelActiveRegion">
            <summary>
            Active region
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="container">Container of the label</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(System.Object,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container of the label</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(System.Object)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(System.String)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="text">Text of TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(Telerik.Charting.TextBlock)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="textBlock">TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.TextBlock)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container of the label</param>
            <param name="textBlock">TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.TextBlock,Telerik.Charting.Styles.LayoutStyle)">
            <summary>
            Create new instance of ChartBaseLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container of the label</param>
            <param name="textBlock">TextBlock</param>
            <param name="appearance">Style of label</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.IsVisible">
            <summary>
            Gets whether Label is real visible
            </summary>
            <returns>Label's visibility</returns>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure label
            </summary>
            <param name="renderEngine">Render Engine of chart</param>
            <returns>Calculated size of Label</returns>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.CalculatePosition(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates position
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.GetOrder(Telerik.Charting.IOrdering)">
            <summary>
            Gets elements order position
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Add(Telerik.Charting.IOrdering)">
            <summary>
            Add element at the end of list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Insert(System.Int32,Telerik.Charting.IOrdering)">
            <summary>
            Insert element at specific position in list
            </summary>
            <param name="order">Position</param>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Remove(Telerik.Charting.IOrdering)">
            <summary>
            Remove  element from list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.RemoveAt(System.Int32)">
            <summary>
            Remove  element from list by it's index
            </summary>
            <param name="index">Position</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.ReIndex">
            <summary>
            Re-index order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.LoadViewState(System.Object)">
            <summary>
            Load ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.SaveViewState">
            <summary>
            Save to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.ChartBaseLabel.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of ChartBaseLabel class with the same fields as this object</returns>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.TextBlock">
            <summary>
            ChartLabel TextBlock
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.Marker">
            <summary>
            Graphic marker of label
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.Parent">
            <summary>
            Gets and sets Parent element
            </summary>
            <value>Element that should be Parent for this</value>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.PlacementDirection">
            <summary>
            Gets and sets Direction of label position in auto mode
            </summary>
            <value>Direction of label position.</value>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.ActiveRegion">
             <summary>
            Gets and sets Active region
             </summary>
             <value>Active region to set</value>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.Visible">
            <summary>
            Gets and sets label's visibility
            </summary>
            <value>Visible label or not</value>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.OrderList">
            <summary>
            List, that represent the render order for taken up elements
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartBaseLabel.NextPosition">
            <summary>
            Gets a next free order position
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartLabel">
            <summary>
            Base class for labels with style
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor">
            <summary>
            Create new instance of ChartLabel class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(System.Object)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="parent">Parent Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(System.String)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="text">Text of label</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Styles.StyleLabel)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="appearance">Style of label</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Styles.StyleLabel,System.Object)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Styles.StyleLabel,System.String)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Styles.StyleLabel,Telerik.Charting.TextBlock)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="textBlock">TextBlock of label</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Styles.StyleLabel,Telerik.Charting.TextBlock,System.Object)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="textBlock">TextBlock of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(Telerik.Charting.Chart,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleLabel,Telerik.Charting.TextBlock,System.String)">
            <summary>
            Create new instance of ChartLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of chart</param>
            <param name="textBlock">TextBlock of label</param>
            <param name="text">Text of label</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabel.IsVisible">
            <summary>
            Gets visibility of label
            </summary>
            <returns>Visible or not </returns>
        </member>
        <member name="P:Telerik.Charting.ChartLabel.Appearance">
            <summary>
            Link to visualization and design properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.ExtendedLabel">
            <summary>
            Base class for extended labels
            </summary>
        </member>
        <member name="F:Telerik.Charting.ExtendedLabel.extendedLabelItems">
            <summary>
            Inside labels collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor">
            <summary>
            Create new instance of Extended label class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(System.Object)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(System.String)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="text">Text of label</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(Telerik.Charting.Styles.StyleExtendedLabel)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="appearance">Style of label</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(Telerik.Charting.Styles.StyleExtendedLabel,System.Object)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(Telerik.Charting.Styles.StyleExtendedLabel,System.String)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(Telerik.Charting.TextBlock)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="textBlock">TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.TextBlock)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container</param>
            <param name="textBlock">TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleExtendedLabel,Telerik.Charting.TextBlock,System.String)">
            <summary>
            Create new instance of Extended label class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container</param>
            <param name="appearance">Style of label</param>
            <param name="textBlock">TextBlock</param>
            <param name="text">Text of elemnt</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.GetMaxAvailableContentSize">
            <summary>
            Gets Available Content Size
            </summary>
            <returns>Size without margins and paddings</returns>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.IsVisible">
            <summary>
            Gets visibility of label
            </summary>
            <returns>Visibility of label</returns>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure label
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of label</returns>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.Clear">
            <summary>
            Clear LabelItems collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.AddLabel(Telerik.Charting.LabelItem,Telerik.Charting.LabelItem[])">
            <summary>
            Add inside labels
            </summary>
            <param name="Label">Inside label to add</param>
            <param name="chartLabels">Inside labels to add</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.AddLabel(Telerik.Charting.ChartLabelsCollection)">
            <summary>
            Add inside labels
            </summary>
            <param name="chartLabels">Inside labels to add</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.AddLabel(Telerik.Charting.LabelItem[])">
            <summary>
            Add inside labels
            </summary>
            <param name="chartLabels">Inside labels to add</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.AddLabel(System.Collections.Generic.List{Telerik.Charting.LabelItem})">
            <summary>
            Add inside labels
            </summary>
            <param name="labels">Inside labels to add</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.GetLabel(System.Int32)">
            <summary>
            Get inner label at specified position
            </summary>
            <param name="index">Position to get label</param>
            <returns>Label at specified position</returns>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.RemoveAllLabels">
            <summary>
            Removes all inner labels
            </summary>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.RemoveLabel(Telerik.Charting.LabelItem,Telerik.Charting.LabelItem[])">
            <summary>
            Removes inner labels
            </summary>
            <param name="Label">Label to remove</param>
            <param name="chartLabels">Labels to remove</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.RemoveLabel(System.Int32,System.Int32[])">
            <summary>
            Removes inner labels
            </summary>
            <param name="index">Position where label should be removed</param>
            <param name="indexes">Positions where labels should be removed</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.LoadViewState(System.Object)">
            <summary>
            load ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.SaveViewState">
            <summary>
            Save ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.ExtendedLabel.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.ExtendedLabel.Appearance">
             <summary>
            Gets style of label
             </summary>
        </member>
        <member name="P:Telerik.Charting.ExtendedLabel.Item(System.Int32)">
            <summary>
            Gets and sets LabelItem at specified position
            </summary>
            <param name="itemIndex">Item position</param>
            <returns>Item at specified position</returns>
            <value>Item to set at specified position</value>
        </member>
        <member name="P:Telerik.Charting.ExtendedLabel.Items">
            <summary>
            Items collection.
            </summary>
        </member>
        <member name="T:Telerik.Charting.LabelItem">
            <summary>
            Base class for labels in label collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.LabelItem.labelItemIsBound">
            <summary>
            Whether item is bound to series
            </summary>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor">
            <summary>
            New instance of LabelItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(System.Object)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(System.String)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="text">Text of label</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(Telerik.Charting.Styles.StyleLabel)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="appearance">Style of label</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(Telerik.Charting.Styles.StyleLabel,System.Object)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(Telerik.Charting.Styles.StyleLabel,System.String)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="appearance">Style of chart</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(Telerik.Charting.Styles.StyleLabel,Telerik.Charting.TextBlockLabelItem)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="appearance">Style of chart</param>
            <param name="textBlock">TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.LabelItem.#ctor(System.Object,Telerik.Charting.Styles.StyleLabel,Telerik.Charting.TextBlockLabelItem,System.String)">
            <summary>
             New instance of LabelItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="appearance">Style of chart</param>
            <param name="textBlock">TextBlock</param>
            <param name="text">Text of label</param>
        </member>
        <member name="P:Telerik.Charting.LabelItem.Name">
             <summary>
            Gets and sets Label name in collection
             </summary>
             <value>Name of label</value>
        </member>
        <member name="P:Telerik.Charting.LabelItem.IsBound">
            <summary>
            Is current item bound item or custom item
            </summary>
        </member>
        <member name="T:Telerik.Charting.BindableLegendItem">
            <summary>
            Class for bindable legend items
            </summary>
        </member>
        <member name="F:Telerik.Charting.BindableLegendItem.bindableLegendItemSource">
            <summary>
            Object to which items are bindable
            </summary>
        </member>
        <member name="M:Telerik.Charting.BindableLegendItem.#ctor(Telerik.Charting.Styles.StyleLabel,System.Object)">
            <summary>
            Create new instance of BindableLegendItem class.
            </summary>
            <param name="appearance">Style of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="P:Telerik.Charting.BindableLegendItem.BindableLegendItemSource">
            <summary>
            Source object item bound to
            </summary>
        </member>
        <member name="T:Telerik.Charting.SeriesItemLabel">
            <summary>
            Series item label
            </summary>
        </member>
        <member name="F:Telerik.Charting.SeriesItemLabel.seriesItemLabelConnectionPoint">
            <summary>
            Connection point for label
            </summary>
        </member>
        <member name="F:Telerik.Charting.SeriesItemLabel.seriesItemLabelConnectionMidPoint">
            <summary>
            Center of label
            </summary>
        </member>
        <member name="F:Telerik.Charting.SeriesItemLabel.seriesItemLabelRectangle">
            <summary>
            Rectangle of label
            </summary>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.#ctor">
            <summary>
            Create new instance of SeriesItemLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
             Create new instance of SeriesItemLabel class.
            </summary>
            <param name="series">Series to which label belongs</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.CheckPlotAreaIntersection(Telerik.Charting.ChartPlotArea)">
            <summary>
            Checks if label intersect bounds of PlotArea
            </summary>
            <param name="plotArea">PlotArea for checking</param>
            <returns>Whether label intersect bounds of PlotArea</returns>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.AdjustPositionByPlotArea(Telerik.Charting.ChartPlotArea,System.Int32)">
            <summary>
            Move part of label in PlotArea
            </summary>
            <param name="plotArea">PlotArea to move in</param>
            <param name="side">Side of label which is not in PlotArea</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.SetOutsideCoordinates(System.Drawing.RectangleF,System.Boolean)">
            <summary>
            Set label outside item
            </summary>
            <param name="rect">Item rectangle</param>
            <param name="isAuto">If Location is auto(Location - Auto, Outside, Inside)</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.SetInsideCoordinates(System.Drawing.RectangleF)">
            <summary>
            Set label inside item
            </summary>
            <param name="rect">Item rectangle</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.IsVisible(Telerik.Charting.ChartSeries)">
            <summary>
            Visibility of label
            </summary>
            <param name="series">Series to which label belongs</param>
            <returns>Visibility of label</returns>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.CalculateLayout(System.Drawing.PointF,System.Drawing.PointF,System.Boolean,Telerik.Charting.RenderEngine)">
            <summary>
            Calculate position
            </summary>
            <param name="locationPoint">Location point</param>
            <param name="connectionPoint">Connection point</param>
            <param name="showLabelConnectors">Visibilit of label connectors</param>
            <param name="engine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.Adjust(Telerik.Charting.ChartPlotArea)">
            <summary>
            Moves label inside PlotArea
            </summary>
            <param name="plotArea">PlotArea</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.AdjustLabelConnectionPointForPie(System.Double,System.Drawing.PointF)">
            <summary>
            Relocate connection point for pie series 
            </summary>
            <param name="rotationAngle">Angle of  pie part</param>
            <param name="connectionPoint">Connection point</param>
            <returns>Corrected connection point</returns>
        </member>
        <member name="M:Telerik.Charting.SeriesItemLabel.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Create new instance of SeriesItemLabel class with the same fields as this object</returns>
        </member>
        <member name="P:Telerik.Charting.SeriesItemLabel.ConnectionPoint">
            <summary>
            Connection point for label
            </summary>
        </member>
        <member name="P:Telerik.Charting.SeriesItemLabel.ConnectionMidPoint">
            <summary>
            Center of label to connect to 
            </summary>
        </member>
        <member name="P:Telerik.Charting.SeriesItemLabel.Appearance">
            <summary>
            Visualization and design properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.AxisLabelHidden">
            <summary>
            Axis label base
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisLabelHidden.#ctor">
            <summary>
            Create new instance of AxisLabelHidden
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisLabelHidden.#ctor(System.Object)">
            <summary>
            Create new instance of AxisLabelHidden
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.AxisLabelHidden.#ctor(System.String)">
            <summary>
            Create new instance of AxisLabelHidden
            </summary>
            <param name="text">Text of label</param>
        </member>
        <member name="M:Telerik.Charting.AxisLabelHidden.#ctor(System.Object,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleLabelHidden,Telerik.Charting.TextBlock,System.String)">
            <summary>
            Create new instance of AxisLabelHidden
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of label</param>
            <param name="textBlock">TextBlock</param>
            <param name="text">Text of label</param>
        </member>
        <member name="P:Telerik.Charting.AxisLabelHidden.Visible">
            <summary>
            Gets and sets Visibility of label
            </summary>
            <value>Visibility of label</value>
        </member>
        <member name="T:Telerik.Charting.AxisLabel">
            <summary>
            X Axis label
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisLabel.#ctor">
            <summary>
            Create new instance of AxisLabel
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisLabel.#ctor(System.Object,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of AxisLabel
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="T:Telerik.Charting.AxisYLabel">
            <summary>
            Y axis label
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisYLabel.#ctor">
            <summary>
            Create new instance of AxisYLabel
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisYLabel.#ctor(System.Object,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of AxisYLabel
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="T:Telerik.Charting.MarkedZoneLabel">
            <summary>
            MarkedZone label class
            </summary>
        </member>
        <member name="M:Telerik.Charting.MarkedZoneLabel.#ctor">
            <summary>
            Create new instance of MarkedZoneLabel
            </summary>
        </member>
        <member name="M:Telerik.Charting.MarkedZoneLabel.#ctor(Telerik.Charting.Styles.StyleLabel)">
            <summary>
            Create new instance of MarkedZoneLabel
            </summary>
            <param name="appearance">Style of label</param>
        </member>
        <member name="M:Telerik.Charting.MarkedZoneLabel.#ctor(Telerik.Charting.Styles.StyleLabel,System.Object)">
            <summary>
            Create new instance of MarkedZoneLabel
            </summary>
            <param name="appearance">Style of label</param>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.MarkedZoneLabel.#ctor(Telerik.Charting.Styles.StyleLabel,System.String)">
            <summary>
            Create new instance of MarkedZoneLabel
            </summary>
            <param name="appearance">Style of label</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.MarkedZoneLabel.#ctor(Telerik.Charting.Chart,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of MarkedZoneLabel
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="T:Telerik.Charting.ChartLabelsCollection">
            <summary>
            Collection of labels
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartingStateManagedCollection`1">
            <summary>
            Base class for all collections support view state tracking
            </summary>
            <typeparam name="T">Collection item type</typeparam>
        </member>
        <member name="T:Telerik.Charting.IDeserializableCollection">
            <summary>
            Describes the elements collection which can be de-serialized using StyleSerializer
            </summary>
        </member>
        <member name="M:Telerik.Charting.IDeserializableCollection.PopulateFromXml(System.Xml.XmlElement)">
            <summary>
            Populates collection with items from imported Xml code
            </summary>
            <param name="rootElement">XmlElement to import from</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.IndexOf(`0)">
            <summary>
            Item index in collection
            </summary>
            <param name="item">Item to get index of</param>
            <returns>Index</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Insert(System.Int32,`0)">
            <summary>
            Inserts item at the given index
            </summary>
            <param name="index">Index</param>
            <param name="item">Item to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.RemoveAt(System.Int32)">
            <summary>
            Removes item from collection at given index
            </summary>
            <param name="index">Index to remove at</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Add(`0)">
            <summary>
            Adds new item in collection
            </summary>
            <param name="item">Item to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.AddRange(`0[])">
            <summary>
            Adds items range in collection
            </summary>
            <param name="itemsToAdd">Items array to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Clear">
            <summary>
            Clears collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Contains(`0)">
            <summary>
            Checks does collection contain the given item
            </summary>
            <param name="item">Item to check</param>
            <returns>True if item is a collection member</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.CopyTo(`0[],System.Int32)">
            <summary>
                Copies the entire System.Collections.Generic.List&lt;T&gt; to a compatible one-dimensional
                array, starting at the specified index of the target array.
            </summary>
            <param name="array">The one-dimensional System.Array that is the destination of the elements</param>
            <param name="arrayIndex">The zero-based index in array at which copying begins</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Remove(`0)">
            <summary>
            Removes item from collection
            </summary>
            <param name="item">Item to remove</param>
            <returns>True in case of success</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the System.Collections.Generic.List&gt;T&lt;.
            </summary>
            <returns>A System.Collections.Generic.List&gt;T&lt;.Enumerator for the System.Collections.Generic.List&gt;T&lt;.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IEnumerable#GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the collection
            </summary>
            <returns>An System.Collections.IEnumerator object that can be used to iterate through the collection</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Telerik#Charting#IChartingStateManager#LoadViewState(System.Object)">
            <summary>
            Loads collection from view state
            </summary>
            <param name="state">View state to load from</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.LoadViewState(System.Object)">
            <summary>
            Loads collection from view state
            </summary>
            <param name="state">View state to load from</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.SaveViewState">
            <summary>
            Saves collection to a view state
            </summary>
            <returns>Saved state bag object</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Telerik#Charting#IChartingStateManager#SaveViewState">
            <summary>
            Saves collection to a view state
            </summary>
            <returns>Saved state bag object</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Telerik#Charting#IChartingStateManager#TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.SetDirty">
            <summary>
            Sets is item in the dirty state
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.SetItemDirty(`0)">
            <summary>
            Marks collection item dirty
            </summary>
            <param name="item">Item to mark</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Add(System.Object)">
            <summary>
            Adds new item in the IList
            </summary>
            <param name="value">Item to add</param>
            <returns>Item index in IList</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Clear">
            <summary>
            Clears IList items
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Contains(System.Object)">
            <summary>
            Checks does IList contain the given value
            </summary>
            <param name="value">Value to check</param>
            <returns>True if contains</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#IndexOf(System.Object)">
            <summary>
            Gets the index of the object value in an IList
            </summary>
            <param name="value">Value to check</param>
            <returns>Index in IList or -1 if IList does not contain given value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Insert(System.Int32,System.Object)">
            <summary>
            Inserts new value in IList at given index
            </summary>
            <param name="index">Index to insert to</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Remove(System.Object)">
            <summary>
            Removes value from IList
            </summary>
            <param name="value">Value to remove</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#RemoveAt(System.Int32)">
            <summary>
            Removes value from IList at the given index
            </summary>
            <param name="index">Index to remove value at</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#ICollection#CopyTo(System.Array,System.Int32)">
            <summary>
                Copies the entire ICollection to a compatible one-dimensional
                array, starting at the specified index of the target array.
            </summary>
            <param name="array">The one-dimensional System.Array that is the destination of the elements</param>
            <param name="index">The zero-based index in array at which copying begins</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnInsert(System.Int32,System.Object)">
            <summary>
            Item before insert event
            </summary>
            <param name="index">Index to insert at</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnInsertComplete(System.Int32,System.Object)">
            <summary>
            Item after insert event
            </summary>
            <param name="index">Index to insert at</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnRemove(System.Int32,System.Object)">
            <summary>
            Item before remove event
            </summary>
            <param name="index">Index to insert at</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnRemoveComplete(System.Int32,System.Object)">
            <summary>
            Item after remove event
            </summary>
            <param name="index">Index to insert at</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnClear">
            <summary>
            Before collection clearing event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.OnClearComplete">
            <summary>
            Collection after clean event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.Telerik#Charting#IDeserializableCollection#PopulateFromXml(System.Xml.XmlElement)">
            <summary>
            Populates collection from XML element
            </summary>
            <param name="rootElement">XmlElement to import from</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.PopulateFromXml(System.Xml.XmlElement)">
            <summary>
            Populates collection from XML element
            </summary>
            <param name="rootElement">XmlElement to import from</param>
        </member>
        <member name="M:Telerik.Charting.ChartingStateManagedCollection`1.ToString">
            <exclude/>
            <excludetoc/>
            <summary>
            ToString() override. Used in the properties grid to avoid object type showing.
            </summary>
            <returns>Empty string</returns>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.List">
            <summary>
            Items list
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.First">
            <summary>
            Link to first item in collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.Last">
            <summary>
            Link to last item in collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.Item(System.Int32)">
            <summary>
            Gets the collection item at given index
            </summary>
            <param name="index">Index</param>
            <returns>Item of type "T"</returns>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.Count">
            <summary>
            Gets items count in collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.IsReadOnly">
            <summary>
            Gets true if collection is read-only
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.Telerik#Charting#IChartingStateManager#IsTrackingViewState">
            <summary>
            Gets the view state tracking status
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#IsFixedSize">
            <summary>
            Is IList fixed size. Returns False
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#IsReadOnly">
            <summary>
            Is IList is read-only
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#IList#Item(System.Int32)">
            <summary>
            Gets or sets the value from/to IList at the give index
            </summary>
            <param name="index">Index to give element at</param>
            <returns>Value from IList</returns>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#ICollection#Count">
            <summary>
            Gets the collection items count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#ICollection#IsSynchronized">
            <summary>
            Checks is collection synchronized
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartingStateManagedCollection`1.System#Collections#ICollection#SyncRoot">
            <summary>
            Gets the collection root
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartLabelsCollection.labelsCollectionParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.#ctor">
            <summary>
            Create new instance of ChartLabelsCollection class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.ClearBindableItems">
            <summary>
            Clear bindable items from collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.CopyBindableItemsTo(Telerik.Charting.ChartLabelsCollection)">
            <summary>
            Copy bindable items to collection
            </summary>
            <param name="items">Collection of items copy to</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.IsVisible">
            <summary>
            Visibility of items collection 
            </summary>
            <returns>Whether any item is visible</returns>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.Add(Telerik.Charting.LabelItem)">
            <summary>
            Add LabelItem at the collection
            </summary>
            <param name="item">LabelItem for adding</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.Clear">
            <summary>
            Clear collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.Insert(System.Int32,Telerik.Charting.LabelItem)">
            <summary>
            Insert LabelItem in collection at the specific position
            </summary>
            <param name="index">Position</param>
            <param name="item">LabelItem</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.Remove(Telerik.Charting.LabelItem)">
            <summary>
            Remove LabelItem from collection
            </summary>
            <param name="item">LabelItem</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.RemoveAt(System.Int32)">
            <summary>
            Remove LabelItem in the specific position from collection
            </summary>
            <param name="index">Position</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.OnRemoveComplete(System.Int32,System.Object)">
            <summary>
            Remove item at specified index
            </summary>
            <param name="index"></param>
            <param name="value"></param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.OnClearComplete">
            <summary>
            Clear items
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.OnInsertComplete(System.Int32,System.Object)">
            <summary>
            Insert item in collection
            </summary>
            <param name="index">Index to insert in</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.ChartLabelsCollection.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="state">ViewState with data</param>
        </member>
        <member name="P:Telerik.Charting.ChartLabelsCollection.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartLabelsCollection.Item(System.Int32)">
            <summary>
            Gets or sets a LabelItem at the specific position in Labels collection.
            </summary>
            <param name="index">Position in the collection</param>
            <returns>LabelItem at the specific position </returns>
        </member>
        <member name="T:Telerik.Charting.ChartMarker">
            <summary>
            Base class for a different markers representation
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartMarker.chartMarkerParent">
            <summary>
            Parent Chart element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartMarker.chartMarkerActiveRegion">
            <summary>
            Active region
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.#ctor">
            <summary>
            Create new instance of ChartMarker class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.#ctor(System.Object)">
            <summary>
            Create new instance of ChartMarker class.
            </summary>
            <param name="parent">Parent lement</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.#ctor(Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartMarker class.
            </summary>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.#ctor(System.Object,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of ChartMarker class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.CopyFrom(Telerik.Charting.ChartMarker)">
            <summary>
            Copy fields from specified object
            </summary>
            <param name="marker">Marker to copy from</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.LoadViewState(System.Object)">
            <summary>
            Load data to ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.ChartMarker.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.ChartMarker.Visible">
            <summary>
            Gets and sets visibility
            </summary>
            <value>Visibility of marker</value>
        </member>
        <member name="P:Telerik.Charting.ChartMarker.Parent">
             <summary>
            Gets and sets  Parent element
             </summary>
             <value>Parent element</value>
        </member>
        <member name="P:Telerik.Charting.ChartMarker.Appearance">
            <summary>
            LabelAppearance properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarker.ActiveRegion">
            <summary>
            Active region
            </summary>
        </member>
        <member name="T:Telerik.Charting.IntelligentEngine">
            <summary>
            Intelligence labels engine. Used to automatically series labels relocation to avoid their overlapping.
            </summary>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.Distribute(System.Collections.Generic.List{Telerik.Charting.SeriesItemLabel},System.Drawing.RectangleF,System.Boolean)">
            <summary>
            Distribute labels
            </summary>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.Distribute(System.Drawing.RectangleF[],Telerik.Charting.SeriesItemLabel,System.Boolean)">
            <summary>
            Distribute labels
            </summary>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.IsLocateInVisibleArea(Telerik.Charting.SeriesItemLabel,System.Drawing.RectangleF)">
            <summary>
            Filters labels
            </summary>
            <param name="label">Label for checking whether it is in visible part of chart</param>
            <param name="area">Visible area</param>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.HitTest(System.Drawing.RectangleF[],System.Drawing.RectangleF,System.Nullable{System.Drawing.PointF}@,System.Nullable{System.Drawing.RectangleF}@)">
            <summary>
            Intersection testing
            </summary>
            <param name="rects">Rectangles for checking whether intersection takes place</param>
            <param name="rect">Rectangle to check intersection with other rectangles</param>
            <param name="cPoint">Point of rectangle that intersect other rectangle</param>
            <param name="cRect">Rectangle that specified rectangle intersects</param>
            <returns>True if rectangle intersect specified rectangles</returns>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.MoveTo(System.Drawing.RectangleF@,System.Drawing.PointF)">
            <summary>
            Move rect to new location
            </summary>
            <param name="rect">Rectangle to move</param>
            <param name="point">New point location</param>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.GetDistance(System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Calculates distance between two points
            </summary>
            <param name="point1">First point</param>
            <param name="point2">Second point</param>
            <returns>Distance between two points</returns>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.GetMoveData(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.PointF)">
            <summary>
            Define an object that containes an information about moving required
            </summary>
            <param name="rect">One label rectangle</param>
            <param name="rect2">Second label rectangle</param>
            <param name="ipoint">Intersection point</param>
            <returns>MoveData object</returns>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.GetMoveDataVerticalyOnly(System.Drawing.RectangleF,System.Drawing.RectangleF,System.Drawing.PointF)">
            <summary>
            Define an object that containes an information about moving required
            </summary>
            <param name="rect">One label rectangle</param>
            <param name="rect2">Second label rectangle</param>
            <param name="ipoint">Intersection point</param>
            <returns>MoveData object</returns>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.GetValueIndex(System.Single[])">
            <summary>
            Define a side in which moving require
            </summary>
            <param name="dims">Array of distances</param>
            <returns>Index for Direction enum</returns>
        </member>
        <member name="M:Telerik.Charting.IntelligentEngine.IsVertical(Telerik.Charting.IntelligentEngine.Direction)">
            <summary>
            Check if vertical moving takes place
            </summary>
            <param name="direction">Direction to move</param>
            <returns>True if vertical moving takes place</returns>
        </member>
        <member name="T:Telerik.Charting.IntelligentEngine.Direction">
            <summary>
            Where label should be moved
            </summary>
        </member>
        <member name="T:Telerik.Charting.IntelligentEngine.MoveData">
            <summary>
            Moving related data holder
            </summary>
        </member>
        <member name="F:Telerik.Charting.IntelligentEngine.MoveData.moveDataDistance">
            <summary>
            Distance to move label
            </summary>
        </member>
        <member name="F:Telerik.Charting.IntelligentEngine.MoveData.moveDataDirection">
            <summary>
            Direction where to move
            </summary>
        </member>
        <member name="P:Telerik.Charting.IntelligentEngine.MoveData.Distance">
            <summary>
            Gets and sets Moving distance
            </summary>
            <value>Distance for moving</value>
        </member>
        <member name="P:Telerik.Charting.IntelligentEngine.MoveData.Direction">
            <summary>
            Gets and sets Moving direction
            </summary>
            <value>Direction for moving</value>
        </member>
        <member name="T:Telerik.Charting.TextBlock">
            <summary>
            Label text properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.TextBlock.textBlockCalculatedMaxLength">
            <summary>
            Max length of text
            </summary>
        </member>
        <member name="F:Telerik.Charting.TextBlock.textBlockWrapContext">
            <summary>
            Contains specified parameters for wrapping text 
            </summary>
        </member>
        <member name="F:Telerik.Charting.TextBlock.textBlockWrappedText">
            <summary>
            Wrapped text
            </summary>
        </member>
        <member name="F:Telerik.Charting.TextBlock.textBlockParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.TextBlock.DEFAULT_TEXT">
            <summary>
            Default text of text block
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor">
            <summary>
            Create new instance of TextBlock class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.Styles.StyleTextBlock)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="appearance">Style of TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(System.String)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.Styles.StyleTextBlock,System.String)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="appearance">Style of TextBlock</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,System.String)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleTextBlock)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleTextBlock,System.String)">
            <summary>
            Create new instance of TextBlock class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of textblock</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.CheckToolTip">
            <summary>
            Forms ToolTip if text length greater than max length
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlock.CheckToolTip(System.String)">
            <summary>
            Forms ToolTip if text length greater than max length
            </summary>
            <param name="oldText">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.textBlockAppearance_MaxLengthChanged(System.Object,System.EventArgs)">
            <summary>
            Check if tooltip should be changed when max length changed
            </summary>
            <param name="sender"></param>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Charting.TextBlock.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="M:Telerik.Charting.TextBlock.CalculatePosition(Telerik.Charting.RenderEngine)">
            <summary>
            Calculate TextBlock position
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="P:Telerik.Charting.TextBlock.Visible">
            <summary>
            get a and sets visibility of TextBlock
            </summary>
            <value>Visibility of TextBlock</value>
        </member>
        <member name="P:Telerik.Charting.TextBlock.Parent">
            <summary>
            Parent chart element
            </summary>
            <value>Parent element</value>
        </member>
        <member name="P:Telerik.Charting.TextBlock.Text">
            <summary>
            Contained text data
            </summary>
            <value>Text</value>
        </member>
        <member name="P:Telerik.Charting.TextBlock.Appearance">
            <summary>
            Text field style
            </summary>
            <value>Style of TextBlock</value>
        </member>
        <member name="P:Telerik.Charting.TextBlock.VisibleText">
            <summary>
            Visible text with MaxLength applied
            </summary>
        </member>
        <member name="P:Telerik.Charting.TextBlock.IsVisible">
            <summary>
            Gets TextBlock visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.TextBlockTitle">
            <summary>
            Chart title text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockTitle.#ctor">
            <summary>
            Create new instance of TextBlockTitle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockTitle.#ctor(Telerik.Charting.ChartTitle,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockTitle class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockTitle.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="P:Telerik.Charting.TextBlockTitle.Text">
            <summary>
            Contained text data
            </summary>
        </member>
        <member name="T:Telerik.Charting.TextBlockEmptySeriesMessage">
            <summary>
            Empty Series message text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockEmptySeriesMessage.#ctor">
            <summary>
            Create new instance of TextBlockEmptySeriesMessage class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockEmptySeriesMessage.#ctor(Telerik.Charting.EmptySeriesMessage,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockEmptySeriesMessage class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockEmptySeriesMessage.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="P:Telerik.Charting.TextBlockEmptySeriesMessage.Text">
            <summary>
            Contained text data
            </summary>
        </member>
        <member name="T:Telerik.Charting.TextBlockAxisItem">
            <summary>
            Axis item text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockAxisItem.#ctor">
            <summary>
            Create new instance of TextBlockAxisItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockAxisItem.#ctor(Telerik.Charting.ChartAxisItem,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockAxisItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockAxisItem.DefineMaxLengthAuto(Telerik.Charting.RenderEngine)">
            <summary>
            Define Max Length
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockAxisItem.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="T:Telerik.Charting.TextBlockSeriesItem">
            <summary>
            Series label text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockSeriesItem.#ctor">
            <summary>
            Create new instance of TextBlockSeriesItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockSeriesItem.#ctor(Telerik.Charting.SeriesItemLabel,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockSeriesItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="T:Telerik.Charting.TextBlockHidden">
            <summary>
            Chart title text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockHidden.#ctor">
            <summary>
            Create new instance of TextBlockHidden class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockHidden.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer)">
            <summary>
             Create new instance of TextBlockHidden class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="P:Telerik.Charting.TextBlockHidden.Visible">
            <summary>
            Gets and sets visibility of TextBlock
            </summary>
            <value>Visibility of TextBlock</value>
        </member>
        <member name="T:Telerik.Charting.TextBlockYAxisLabel">
            <summary>
            Chart Y Axis text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockYAxisLabel.#ctor">
            <summary>
            Create new instance of TextBlockYAxisLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockYAxisLabel.#ctor(Telerik.Charting.AxisYLabel,Telerik.Charting.IContainer)">
            <summary>
             Create new instance of TextBlockYAxisLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockYAxisLabel.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="P:Telerik.Charting.TextBlockYAxisLabel.Text">
            <summary>
            Contained text data
            </summary>
        </member>
        <member name="T:Telerik.Charting.TextBlockXAxisLabel">
            <summary>
            Chart X Axis text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockXAxisLabel.#ctor">
            <summary>
             Create new instance of TextBlockXAxisLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockXAxisLabel.#ctor(Telerik.Charting.AxisLabel,Telerik.Charting.IContainer)">
            <summary>
             Create new instance of TextBlockXAxisLabel class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockXAxisLabel.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="P:Telerik.Charting.TextBlockXAxisLabel.Text">
            <summary>
            Contained text data
            </summary>
        </member>
        <member name="T:Telerik.Charting.TextBlockLabelItem">
            <summary>
            Legend item's text block
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor">
            <summary>
             Create new instance of TextBlockLabelItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.Styles.StyleTextBlock)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="appearance">Style of TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(System.String)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.Styles.StyleTextBlock,System.String)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="appearance">Style of chart</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,System.String)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleTextBlock)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of TextBlock</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.#ctor(Telerik.Charting.ChartBaseLabel,Telerik.Charting.IContainer,Telerik.Charting.Styles.StyleTextBlock,System.String)">
            <summary>
            Create new instance of TextBlockLabelItem class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
            <param name="appearance">Style of TextBlock</param>
            <param name="text">Text</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLabelItem.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="T:Telerik.Charting.TextBlockLegend">
            <summary>
            Chart title text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockLegend.#ctor">
            <summary>
            Create new instance of TextBlockLegend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockLegend.#ctor(Telerik.Charting.ExtendedLabel,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockLegend class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockLegend.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>Size of TextBlock</returns>
        </member>
        <member name="T:Telerik.Charting.TextBlockMarkedZone">
            <summary>
            MarkedZone label's text container properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockMarkedZone.#ctor">
            <summary>
            Create new instance of TextBlockMarkedZone class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.TextBlockMarkedZone.#ctor(Telerik.Charting.MarkedZoneLabel,Telerik.Charting.IContainer)">
            <summary>
            Create new instance of TextBlockMarkedZone class.
            </summary>
            <param name="parent">Parent element</param>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.TextBlockMarkedZone.Measure(Telerik.Charting.RenderEngine)">
            <summary>
            Measure TextBlock
            </summary>
            <param name="renderEngine">RenderEngine of chart</param>
            <returns>size of TextBlock</returns>
        </member>
        <member name="T:Telerik.Charting.ChartString">
            <summary>
            The helper class for a text wrapping feature. Represents the text string
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.isFirst">
            <summary>
            Defines whether it is first string or not
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.isLast">
            <summary>
            Defines whether it is last string or not
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.words">
            <summary>
            Collection of words in text
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.height">
            <summary>
            Height of string
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartString.width">
            <summary>
            Width of string
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartString.#ctor">
            <summary>
            Create instance of ChartString
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartString.#ctor(System.Single)">
            <summary>
            Create instance of ChartString with specified height
            </summary>
            <param name="height">Height of string</param>
        </member>
        <member name="M:Telerik.Charting.ChartString.WidthCalculate">
            <summary>
            Calculate string width
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartString.MoveLastWordToNextString">
            <summary>
            Move last word to next string
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartString.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance with the same properties values as current class instance</returns>
        </member>
        <member name="P:Telerik.Charting.ChartString.IsFirst">
            <summary>
            Defines whether it is first string or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.IsLast">
            <summary>
            Defines whether it is last string or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.NextString">
            <summary>
            Get next string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.Previous">
            <summary>
            Get previous string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.Width">
            <summary>
            Get width of string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.Height">
            <summary>
            Get height of string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartString.Words">
            <summary>
            Collection of words
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartStringCollection">
            <summary>
            Strings collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartStringCollection.parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartStringCollection.#ctor(Telerik.Charting.ChartText)">
            <summary>
            Create new instance of ChartStringCollection class
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ChartStringCollection.Add(Telerik.Charting.ChartString)">
            <summary>
             Add new string to collection
            </summary>
            <param name="str">String to add</param>
            <returns>Index of added string</returns>
        </member>
        <member name="M:Telerik.Charting.ChartStringCollection.GetNext(Telerik.Charting.ChartString)">
            <summary>
            Get next string after specified one
            </summary>
            <param name="str">String for search</param>
            <returns>Next string after specified one</returns>
        </member>
        <member name="M:Telerik.Charting.ChartStringCollection.GetPrevious(Telerik.Charting.ChartString)">
            <summary>
            Get previous string before specified one
            </summary>
            <param name="str">String for search</param>
            <returns>Previous string before specified one</returns>
        </member>
        <member name="M:Telerik.Charting.ChartStringCollection.Clone">
            <summary>
            Clone of this object
            </summary>
            <returns>New instance with the same fields</returns>
        </member>
        <member name="P:Telerik.Charting.ChartStringCollection.Item(System.Int32)">
            <summary>
            Get string with specified index
            </summary>
            <param name="index">Index to get string</param>
            <returns>String with specified index</returns>
        </member>
        <member name="P:Telerik.Charting.ChartStringCollection.First">
            <summary>
            Get the first string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartStringCollection.Last">
            <summary>
            Get the last string
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartStringCollection.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartText">
            <summary>
            Helper class for a text wrapping feature. Represents the text to wrap
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartText.space">
            <summary>
            Word separator
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartText.strings">
            <summary>
            Text divided into strings
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartText.text">
            <summary>
            Inner text
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartText.font">
            <summary>
            Font of text
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartText.graphics">
            <summary>
            Used for measuring text
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartText.#ctor">
            <summary>
            Create new instance of the class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartText.#ctor(System.String,System.Drawing.Font,Telerik.Charting.ChartGraphics)">
            <summary>
            Create new instance of the class.
            </summary>
            <param name="text">Text</param>
            <param name="font">Font of text</param>
            <param name="graphics">Graphics object for measuring string</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.Distibute(System.Single,Telerik.Charting.WrapContext)">
            <summary>
            Breaks text into lines
            </summary>
            <param name="factor">Used to make decision for breaking</param>
            <param name="context">Determines which of parameters(height, width) is fixed</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.Distibute(System.Single,System.Single)">
            <summary>
            Breaks text into lines
            </summary>
            <param name="factor">Used to make decision for breaking</param>
            <param name="needWidth">Fixed width of text</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.Distibute(System.Single)">
            <summary>
             Breaks text into lines
            </summary>
            <param name="factor">Used to make decision for breaking</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.ToString">
            <summary>
            String representation
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="M:Telerik.Charting.ChartText.FixedProportionDistibution(System.Single)">
            <summary>
            Breaks text into lines with fixed proportions
            </summary>
            <param name="factor">Factor(Height-Width proportion) to make decision</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.FixedHeightDistibution(System.Single,System.Int32)">
            <summary>
            Breaks text into lines with fixed Height
            </summary>
            <param name="factor">Factor(Height-Width proportion) to make decision</param>
            <param name="maxStringsCount">Max Strings Count</param>
        </member>
        <member name="M:Telerik.Charting.ChartText.FixedWidthDistibution(System.Single)">
            <summary>
            Breaks text into lines with fixed width
            </summary>
            <param name="width">Fixed width</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartText.AddString(System.String,System.String,System.String,System.Single)">
            <summary>
            Add new string to text of fixed width
            </summary>
            <param name="baseString">Inner text</param>
            <param name="str">String should be added</param>
            <param name="space">Separator between text and new string</param>
            <param name="width">Fixed width</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartText.GetStringWithMaxWidth">
            <summary>
            Gets the longest string 
            </summary>
            <returns>The longest string </returns>
        </member>
        <member name="M:Telerik.Charting.ChartText.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of ChartText class with the same fields as this object</returns>
        </member>
        <member name="M:Telerik.Charting.ChartText.DropLineBreaks(System.String)">
            <summary>
            Concat lines to one text
            </summary>
            <param name="text">Inner text</param>
            <returns>Text without new lines delimiters</returns>
        </member>
        <member name="P:Telerik.Charting.ChartText.Space">
            <summary>
            Word separator
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartText.Height">
            <summary>
            Height of text
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartText.Width">
            <summary>
            Width of text
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartText.Factor">
            <summary>
            Used to make decision for breaking text into lines
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartWord">
            <summary>
            Helper class for a text wrapping feature. Represents the one word
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartWord.width">
            <summary>
            Word width
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartWord.text">
            <summary>
            Text of one word
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartWord.parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartWord.#ctor">
            <summary>
            Create new instance of ChartWord
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartWord.#ctor(System.String,System.Single)">
            <summary>
            Create new instance of ChartWord.
            </summary>
            <param name="text">Text of word.</param>
            <param name="width">Width of word.</param>
        </member>
        <member name="M:Telerik.Charting.ChartWord.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of ChartWord with the same fields as this object</returns>
        </member>
        <member name="P:Telerik.Charting.ChartWord.Parent">
            <summary>
            Gets and sets Parent element
            </summary>
            <value>Element that should be parent for this object</value>
        </member>
        <member name="P:Telerik.Charting.ChartWord.Width">
            <summary>
            Gets Width of word
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartWord.Text">
            <summary>
            Gets Word text
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartWordCollection.parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartWordCollection.#ctor(Telerik.Charting.ChartString)">
            <summary>
            Create new instance of the object.
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.ChartWordCollection.Add(Telerik.Charting.ChartWord)">
            <summary>
            Add new word to collection
            </summary>
            <param name="word">Word for adding</param>
            <returns>Index of added word</returns>
        </member>
        <member name="M:Telerik.Charting.ChartWordCollection.RemoveLast">
            <summary>
            Remove last word from collection
            </summary>
            <returns>Last word that was removed</returns>
        </member>
        <member name="M:Telerik.Charting.ChartWordCollection.InsertAsFirst(Telerik.Charting.ChartWord)">
            <summary>
            Insert word at the beginning of collection
            </summary>
            <param name="str">Word to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartWordCollection.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of ChartWordCollection class with the same fields as this one</returns>
        </member>
        <member name="P:Telerik.Charting.ChartWordCollection.Parent">
            <summary>
            Gets and sets Parent element
            </summary>
            <value>Element that should be Parent for this object</value>
        </member>
        <member name="P:Telerik.Charting.ChartWordCollection.Item(System.Int32)">
            <summary>
            Gets and sets word from/to collection
            </summary>
            <param name="index">Index of word in collection</param>
            <returns>Word from collection with specified index</returns>
            <value>Word that should be placed on specified position</value>
        </member>
        <member name="P:Telerik.Charting.ChartWordCollection.Last">
            <summary>
            Gets last word in collection
            </summary>
        </member>
        <member name="T:Telerik.Charting.WrapType">
            <summary>
            Helper enumeration with a text wrapping modes
            </summary>
        </member>
        <member name="T:Telerik.Charting.WrapContext">
            <summary>
            Text wrapping context object
            </summary>
        </member>
        <member name="F:Telerik.Charting.WrapContext.wrapContainerWidth">
            <summary>
            Width of container
            </summary>
        </member>
        <member name="F:Telerik.Charting.WrapContext.wrapContainerHeight">
            <summary>
            Height of container
            </summary>
        </member>
        <member name="F:Telerik.Charting.WrapContext.wrapType">
            <summary>
            Type demonstrate which of parameters is fixed
            </summary>
        </member>
        <member name="M:Telerik.Charting.WrapContext.#ctor(System.Single,System.Single,Telerik.Charting.WrapType)">
            <summary>
            Create instance of WrapContext class
            </summary>
            <param name="width">Width of container</param>
            <param name="height">Height of container</param>
            <param name="type">Type</param>
        </member>
        <member name="M:Telerik.Charting.WrapContext.#ctor(Telerik.Charting.Styles.Dimensions,Telerik.Charting.WrapType)">
            <summary>
            Create instance of WrapContext class
            </summary>
            <param name="dimension">Dimensions of container object</param>
            <param name="type">Type</param>
        </member>
        <member name="P:Telerik.Charting.WrapContext.ContainerWidth">
            <summary>
            Gets container width
            </summary>
            <value>Width of container</value>
        </member>
        <member name="P:Telerik.Charting.WrapContext.ContainerHeight">
            <summary>
            Gets container height
            </summary>
            <value>Height of container</value>
        </member>
        <member name="P:Telerik.Charting.WrapContext.Type">
            <summary>
            Gets Type of WrapContext
            </summary>
            <value>Type that shows what parameter is fixed</value>
        </member>
        <member name="T:Telerik.Charting.ChartElementLocation">
            <summary>
            Specifies the location of the RadChart's elements.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartElementLocation.InsidePlotArea">
            <summary>
            The chart element is placed inside plot area.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartElementLocation.OutsidePlotArea">
            <summary>
            The chart element is placed outside plot area.
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartLegend">
            <summary>
            Chart legend. Shows the series names or series labels listing. Can contains custom items.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartLegend.legendBindableItems">
            <summary>
            Labels for bindable items collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.#ctor">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.#ctor(Telerik.Charting.Chart,Telerik.Charting.IContainer)">
            <summary>
            Constructor
            </summary>
            <param name="parent">Reference to a parent object (Current Chart instance)</param>
            <param name="container">Element container</param>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.ClearBoundItems(System.Boolean)">
            <summary>
            Clears bound items collection
            </summary>
            <param name="copyItems">Should automatically created bound items be removed or not</param>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.AddBoundItem(Telerik.Charting.RenderEngine,Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem,Telerik.Charting.ChartSeriesLegendDisplayMode,System.Int32,System.Int32)">
            <summary>
            Creates new legend item bound to series or series item
            </summary>
            <param name="engine">RenderEngine</param>
            <param name="series">Chart series</param>
            <param name="item">Series item</param>
            <param name="mode">How series will be represented in Legend: Series names, Series items or hidden (Nothing)</param>
            <param name="seriesIndex">Series index in collection</param>
            <param name="itemIndex">Series item index in collection</param>
            <returns>New LegendItem bound to a chart object: series or series item</returns>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.BindSeriesToLegend(Telerik.Charting.RenderEngine)">
            <summary>
            Creates bound items collection
            </summary>
            <param name="engine">RenderEngine</param>
        </member>
        <member name="M:Telerik.Charting.ChartLegend.AddCustomItemToLegend(System.String,Telerik.Charting.Styles.FillStyle,System.String)">
            <summary>
            Adds custom item to Legend
            </summary>
            <param name="description">Custom legend item text</param>
            <param name="fillStyle">FillStyle</param>
            <param name="figure">Figure for an item marker</param>
        </member>
        <member name="P:Telerik.Charting.ChartLegend.Item(System.Int32)">
            <summary>
            Reference to a label item by its index in items collection
            </summary>
            <param name="itemIndex">Label item's index</param>
            <returns>LabelItem at given index</returns>
        </member>
        <member name="P:Telerik.Charting.ChartLegend.BoundItems">
            <summary>
            Bound items collection
            </summary>
        </member>
        <member name="T:Telerik.Charting.MapAreaBuilderBase">
            <summary>
            The base class with common functionality needed by web chart controls for an image maps creation
            </summary>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GetPath(Telerik.Charting.IOrdering,System.Collections.ArrayList)">
            <summary>
            Gets a string of element path in a parent control order list hierarchy.
            <example>For example, Legend has an index 4 in a Chart's order list, first legend item has an index 0 in Legend's order list.
            So result string will look like "4, 0"</example>
            </summary>
            <param name="element">IOrdering element</param>
            <param name="list">ArrayList with parent indexes</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GenerateImageMap(Telerik.Charting.IContainer)">
            <summary>
            Generates the image map HTML code
            </summary>
            <param name="container"></param>
            <returns>HTML code with created image map</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.AddAxesItemsImageMap(Telerik.Charting.ChartAxis,System.Text.StringBuilder)">
            <summary>
            Creates chart axes specific image maps code
            </summary>
            <param name="axis">Chart axis</param>
            <param name="html">StringBuilder to populate with image map HTML code</param>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.AddImageMap(Telerik.Charting.IOrdering,System.Text.StringBuilder,System.Boolean)">
            <summary>
            Generates an image map string for a given IOrdering object and appends it to a given StringBuilder object
            </summary>
            <param name="elem">IOrdering element</param>
            <param name="html">The target StringBuilder object</param>
            <param name="makeTooltipOnly">Disables a JavaScript post back function creation if only tool tip creation required</param>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GetFigureName(Telerik.Charting.ChartSeriesItem,System.Int32)">
            <summary>
            Gets a figure name for a image map type for a different series types
            </summary>
            <param name="seriesItem">Series item</param>
            <param name="regionIndex">The Active region index in a regions list</param>
            <returns>Figure name</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GetShapeType(System.String)">
            <summary>
            Gets an appropriate HTML shape name by an internal figure name
            </summary>
            <param name="figure">The charting Figure string value</param>
            <returns>HTML shape name (rect, circle, poly)</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GetCoordinates(System.Drawing.Drawing2D.GraphicsPath,System.String)">
            <summary>
            Gets the image maps coordinates
            </summary>
            <param name="path">Graphics Path object to get coordinates from</param>
            <param name="figure">Charting figure</param>
            <returns>String of element coordinates in the image map separated by comma</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GetPostBackEventReference(System.String)">
            <summary>
            Returns a string that can be used in a client event to cause post back to 
            the server. The reference string is defined by string argument of additional event information.
            </summary>
            <param name="arguments">A string of optional arguments to pass to the control that processes the post back.</param>
            <returns>A string that, when treated as script on the client, initiates the post back.</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.HasChartClickEvent">
            <summary>
            Checks if chart control has a Click event enabled
            </summary>
            <returns>True or False</returns>
        </member>
        <member name="M:Telerik.Charting.MapAreaBuilderBase.GenerateImageMap">
            <summary>
            Generates image map HTML string
            </summary>
            <returns>HTML string</returns>
        </member>
        <member name="T:Telerik.Charting.AxisSegment">
            <summary>
            Axis segment in case of ScaleBreaks enabled
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentPointStart">
            <summary>
            Start point of segment
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentPointEnd">
            <summary>
            End point of segment
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentRectangle">
            <summary>
            Segments rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentVisibleValues">
            <summary>
            Axis visible values
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentItemsCount">
            <summary>
            Items count in this segment
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentPaths">
            <summary>
            Array of two elements with segments lines as GraphicsPath
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegment.axisSegmentPercent">
            <summary>
            Value indicate: how much percents of axis this segment is take up
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.#ctor(System.String)">
            <summary>
            Creates a new class instance
            <param name="name">Segment name</param>
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.GetX(System.Double)">
            <summary>
            Gets X coordinate
            </summary>
            <param name="val">Series value to get coordinate of</param>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.GetY(System.Double)">
            <summary>
            Gets Y coordinate
            </summary>
            <param name="val">Series value to get coordinate of</param>
            <returns>Coordinate</returns>       
        </member>
        <member name="M:Telerik.Charting.AxisSegment.SetRange(Telerik.Charting.ChartSeriesItemsCollection,System.Boolean)">
            <summary>
            Recalculates items values in collection
            </summary>
            <param name="items">Series items with values in current segment diapason</param>
            <param name="isOptimizeMax">Should max value optimization be done or not</param>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.OptimizeNumber(System.Double,System.Nullable{System.Boolean})">
            <summary>
            Getting the better value
            </summary>
            <param name="number">Number</param>
            <param name="toLarge">Should get biggest number or not</param>
            <returns>Number</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.GetAxisItems(Telerik.Charting.ChartAxis)">
            <summary>
            Create axis items
            </summary>
            <param name="axis">Axis</param>
            <returns>Final value</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.IsIntersection(Telerik.Charting.AxisSegment)">
            <summary>
            Check segments on a intersections
            </summary>
            <param name="segment">Any other segment</param>
            <returns>True if segments intersect</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegment.GetPath(System.Drawing.Drawing2D.GraphicsPath,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Return a path around segments rectangle
            </summary>
            <param name="linePath">Path depending of scale break line type</param>
            <param name="startLine">Should start segment line as scale break line type be created</param>
            <param name="endLine">Should end segment line as scale break line type be created</param>
            <param name="isHorizontal">Plot area series orientation, true if horizontal</param>
            <returns>Segments path</returns>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.Name">
            <summary>
            Segments name in collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.MinValue">
            <summary>
            Segment minimum value at the axis
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.MaxValue">
            <summary>
            Maximum segment's value at the axis
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.Step">
            <summary>
            Axis items step for a current Segment
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.StartPoint">
            <summary>
            Segment start point
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.EndPoint">
            <summary>
            Segment end point
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.Rectangle">
            <summary>
            Segment's bound rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegment.PixelsPerValue">
            <summary>
            Pixels per one value
            </summary>
        </member>
        <member name="T:Telerik.Charting.AxisSegmentCollection">
            <summary>
            Segments collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentCollection.CheckedAdd(Telerik.Charting.AxisSegment)">
            <summary>
            Check segment and add it into collection
            </summary>
            <param name="segment">Segment for adding</param>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentCollection.Search(System.Double)">
            <summary>
            Searches for a segment where value is located
            </summary>
            <param name="value">Value to check</param>
            <returns>AxisSegment</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentCollection.Search(System.Double,System.Boolean)">
            <summary>
            Searches for a segment where value is located
            </summary>
            <param name="value">Value to check</param>
            <param name="withoutNull">Null values exclusion reason</param>
            <returns>AxisSegment</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentCollection.Sort">
            <summary>
            Sorts segments 
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentCollection.Test(Telerik.Charting.ChartSeriesItemsCollection)">
            <summary>
            Checks if series item in current segment
            </summary>
            <param name="items">SeriesItemsCollectionv</param>
            <returns>True if value is in segment</returns>
        </member>
        <member name="P:Telerik.Charting.AxisSegmentCollection.IsHaveNegative">
            <summary>
            Gets true if just one negative value presents in segment
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegmentCollection.IsHavePositive">
            <summary>
            Gets true if just one positive value presents in segment
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegmentCollection.IsHaveZero">
            <summary>
            Gets true if segment contains axis zero value
            </summary>
        </member>
        <member name="P:Telerik.Charting.AxisSegmentCollection.NearZeroValue">
            <summary>
            Gets the nearest to Zero axis value
            </summary>
        </member>
        <member name="T:Telerik.Charting.AxisSegmentComparer">
            <summary>
            Segments comparer
            </summary>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentComparer.System#Collections#IComparer#Compare(System.Object,System.Object)">
            <summary>
            Segments order comparison
            </summary>
            <param name="x">First segment</param>
            <param name="y">Second segment</param>
            <returns>0 if segments are equal, 
            -1 if first segment should be rendered at top of the second segment at axis, 
            1 if second segment should be rendered at top of the first segment at axis</returns>
        </member>
        <member name="T:Telerik.Charting.ChartAxisType">
            <summary>
            Chart axis types enumeration
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartAxis">
            <summary>
            Base chart axis class
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisAppearance">
            <summary>
            ChartAxis style
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisLabel">
            <summary>
            ChartAxis main label
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisItems">
            <summary>
            ChartAxis items
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisOnlyNegativeValues">
            <summary>
            Show only negative values
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisOnlyPositiveValues">
            <summary>
            Show positive values only
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisRealIsZeroBased">
            <summary>
            Is axis zero based
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisMinItemValue">
            <summary>
            Min axis item value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisMaxItemValue">
            <summary>
            Max axis item value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisMinAxisValue">
            <summary>
            Minimum series value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisMaxAxisValue">
            <summary>
            Maximum series value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisPointStart">
            <summary>
            Axis start point 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.chartAxisPointEnd">
            <summary>
            Axis zero value end point 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.pixelsPerValue">
            <summary>
            Pixels per value field.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxis.zeroCoord">
            <summary>
            Cached zero coordinate value.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.TrackViewState">
            <summary>
            Tracking ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.LoadViewState(System.Object)">
            <summary>
            Loading ViewState data
            </summary>
            <param name="savedState">Saved state bag</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SaveViewState">
            <summary>
            Saves data to a State Bag
            </summary>
            <returns>Saved axis data to a state bag</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetDistance(System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Gets distance between points
            </summary>
            <param name="point1">First point</param>
            <param name="point2">Second point</param>
            <returns>Distance</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CalculateGridsAndTicks">
            <summary>
            Calculates grid lines and ticks positions
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ClearAutoPropertiesForAxisItems">
            <summary>
            Excludes the excessive serialization of axis items properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CorrectAxisLabelPosition(Telerik.Charting.Styles.Position)">
            <summary>
            Used to correct initial axis label AlignedPosition for AutoLayout
            </summary>
            <param name="position">Position</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CorrectAxisItemPosition(Telerik.Charting.Styles.Position)">
            <summary>
            Used to automatically correct the axis item AlignedPosition in AutoLayout
            </summary>
            <param name="position">Position</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetWidth">
            <summary>
            Gets the largest axis item width 
            </summary>
            <returns>Width value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetHeight">
            <summary>
            Gets the largest axis item height 
            </summary>
            <returns>Height value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.FormatLabel(System.Double)">
            <summary>
            Formats the axis item value with a selected ValueFormat value 
            </summary>
            <param name="val">Item value</param>
            <returns>Formatted string</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetCoordinate(System.Double)">
            <summary>
            Gets value coordinate at axis
            </summary>
            <param name="val">Value</param>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetCoordinate(System.Double,System.Single,System.Boolean)">
            <summary>
            Gets value coordinate at axis
            </summary>
            <param name="val">Value</param>
            <param name="pixelsPerVal">Pixels per value</param>
            <param name="roundCoord">Make a coordinate value rounding or not</param>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetZeroValue">
            <summary>
            Return the base value of the axis.
            </summary>
            <returns>Axis zero value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetZeroCoordinate">
            <summary>
            Gets the coordinate of zero value
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetAxisStartCoord">
            <summary>
            Gets the start value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetAxisEndCoord">
            <summary>
            Gets the end value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SaveLabelPosition">
            <summary>
            Saves the initial axis label and common axis items positions settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RestoreLabelPosition">
            <summary>
            Restores the initial axis label and common axis items positions settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetRange">
            <summary>
            Recalculates items values in collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CheckRange(System.Double,System.Double,System.Double)">
            <summary>
            Checks the range values
            </summary>
            <param name="minValue">Min axis value</param>
            <param name="maxValue">Max axis value</param>
            <param name="step">Axis step value</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.DisableCachedValues">
            <summary>
            Restores initial values of cached axis settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetItemsBound(Telerik.Charting.ChartAxisItem,System.Single)">
            <summary>
            Gets the axis item's max bound: horizontally or vertically
            </summary>
            <param name="item">Axis item</param>
            <param name="rotationAngle">Rotation angle's value</param>
            <returns>Max bound value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetClientRectangle(System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Gets axis image rectangle
            </summary>
            <param name="startPoint">Start point</param>
            <param name="endPoint">End point</param>
            <remarks>Used with client-zoom in ASP.NET Ajax chart</remarks>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetClientRectangle">
            <summary>
            Gets axis image rectangle
            </summary>
            <remarks>Used with client-zoom in ASP.NET Ajax chart</remarks>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetFirstItemHalfDimension">
            <summary>
            Gets the half of the first axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetLastItemHalfDimension">
            <summary>
            Gets the half of the last axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CalculateLayout(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates axis layout settings
            </summary>
            <param name="renderEngine">RenderEngine</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.InitializeItems">
            <summary>
            Initialize the axis items collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CalculateAxisLabel(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates axis label's layout settings
            </summary>
            <param name="renderEngine">RenderEngine</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CheckAxisItemVisibility(Telerik.Charting.ChartAxisItem)">
            <summary>
            Checks the axis item visibility
            </summary>
            <param name="item">Axis item</param>
            <returns>True if item should be rendered</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.IsVisible">
            <summary>
            Checks the axis item visibility 
            </summary>
            <returns>The Boolean value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetMinValue(System.Double)">
            <summary>
            Sets the min axis range value
            </summary>
            <param name="minValue">Value to set</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ShouldSerializeMinValue">
            <summary>
            The axis MinValue design time serialization reason
            </summary>
            <returns>True is value have to be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ResetMinValue">
            <summary>
            Resets the MinValue to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ShouldSerializeMaxValue">
            <summary>
            The axis MaxValue design time serialization reason
            </summary>
            <returns>True is value have to be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ResetMaxValue">
            <summary>
            Resets the MaxValue to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetMaxValue(System.Double)">
            <summary>
            Sets the maximum axis range value
            </summary>
            <param name="maxValue">Value to set</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ShouldSerializeStep">
            <summary>
            The axis Step design time serialization reason
            </summary>
            <returns>True is value have to be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.ResetStep">
            <summary>
            Resets the Step value to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.#ctor(Telerik.Charting.ChartPlotArea)">
            <summary>Creates a new instance of the ChartAxis class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.#ctor(Telerik.Charting.ChartPlotArea,Telerik.Charting.IContainer)">
            <summary>Creates a new instance of the ChartAxis class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.Initialize(System.Double,System.Double)">
            <summary>Initializes the axis with min and max values.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AutoCalcAxisExtents">
            <summary>
            Auto determines the min and max value of the axis
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.CalculateStep(System.Double@,System.Double@)">
            <summary>
            Axis Step calculation method for AutoScaled axes
            </summary>
            <param name="minValue">Min range value</param>
            <param name="maxValue">Max range value</param>
            <returns>Calculated Step value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AdjustingMinMax(System.Double@,System.Double@,System.Double)">
            <summary>
            Adjusting min/max value according to the set axis properties
            </summary>
            <param name="minValue">Min range value</param>
            <param name="maxValue">Max range value</param>
            <param name="dValue">Rounding digits limit</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetPositiveOrNegative(System.Double@,System.Double@)">
            <summary>
            Sets the minimum and maximum axis range values
            </summary>
            <param name="minValue">Min range value</param>
            <param name="maxValue">Max range value</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(Telerik.Charting.ChartAxisItem,Telerik.Charting.ChartAxisItem[])">
            <summary>Adds a ChartAxisItem to the axis.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(Telerik.Charting.ChartAxisItemsCollection)">
            <summary>Adds a ChartAxisItemsCollection to the axis.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(Telerik.Charting.ChartAxisItem[])">
            <summary>Adds ChartAxisItems to the axis.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(System.Collections.Generic.List{Telerik.Charting.ChartAxisItem})">
            <summary>Adds ChartAxisItems to the axis.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.GetItem(System.Int32)">
            <summary>Gets the item at the specified index.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RemoveAllItems">
            <summary>Removes all items</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RemoveItem(Telerik.Charting.ChartAxisItem,Telerik.Charting.ChartAxisItem[])">
            <summary>Removes the ChartAxisItem specified.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RemoveItem(System.Int32,System.Int32[])">
            <summary>Removes the ChartAxisItems at the specified indexes.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RemoveItem(System.Int32)">
            <summary>
            Removes the ChartAxisItem at the specified index.
            </summary>
            <param name="itemIndex">item's index</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.RemoveLastItem">
            <summary>
            Removes the last item from the axis.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.Clear">
            <summary>
            Clears data values of the axis.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddRange(System.Double,System.Double,System.Double)">
            <summary>
            Automatically adds new axis items in AutoScale mode.
            </summary>
            <param name="minValue">Min range value</param>
            <param name="maxValue">Max range value</param>
            <param name="step">Axis step value</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(System.String,System.Drawing.Color)">
            <summary>
            Adds a new ChartAxisItem object to the axis with the specified label and color.
            </summary>
            <param name="label">Axis label</param>
            <param name="color">Item text color</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(System.String,System.Drawing.Color,System.Boolean)">
            <summary>
            Adds a new ChartAxisItem object to the axis with the specified label and color.
            </summary>
            <param name="label">Axis label</param>
            <param name="color">Item text color</param>
            <param name="visible">Visibility</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(System.String)">
            <summary>
            Adds a new ChartAxisItem object to the axis with the specified label.
            </summary>
            <param name="label">Axis label text</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.AddItem(System.String,System.Double)">
            <summary>
            Adds a new ChartAxisItem object to the axis with the specified label.
            </summary>
            <param name="label">Axis label text</param>
            <param name="value">Axis item value</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetItemLabel(System.Int32,System.String)">
            <summary>
            Sets new label text for the axis item at the specified position.
            </summary>
            <param name="itemIndex">Item index in collection</param>
            <param name="newLabelText">Axis item label text</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetItemLabel(System.Int32,Telerik.Charting.ChartAxisItem)">
            <summary>
            Sets new label for the axis item at the specified position.
            </summary>
            <param name="itemIndex">Item index in collection</param>
            <param name="newLabel">Axis item</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.SetItemColor(System.Int32,System.Drawing.Color)">
            <summary>
            Sets new color for the axis item text at the specified position.
            </summary>
            <param name="itemIndex">Item index in collection</param>
            <param name="newColor">Item text color</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxis.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.TicksLength">
            <summary>
            Gets the longest tick length
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.IsMajorTickVisible">
            <summary>
            Gets the major axis ticks visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.IsMinorTickVisible">
            <summary>
            Gets the minor axis ticks visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.IsTickVisible">
            <summary>
            Gets the axis ticks visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.StartPoint">
            <summary>
            Gets or Sets the start point of axis line
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.EndPoint">
            <summary>
            Gets or Sets the end point of axis line
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.ItemsBound">
            <summary>
            Gets the larger value of axis items dimensions: height or width
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.PixelsPerValue">
            <summary>
            Pixels per axis unit.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Chart">
            <summary>
            Reference to a Chart class instance
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.PlotRect">
            <summary>
            Gets the PlotArea's rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.AxisType">
            <summary>
            Gets the axis type: X, Y and Y2 axis
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.IsParentVisible">
            <summary>
            Gets if PlotArea should be rendered or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Visible">
            <summary>Specifies whether the axis should be rendered.</summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Item(System.Int32)">
            <summary>
            Returns the axis item at the specified position.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.AutoScale">
            <summary>
            Enables or disables automatic axis scaling.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Appearance">
            <summary>
            ChartAxis style
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.AxisLabel">
            <summary>
            ChartAxis label
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Parent">
            <summary>
            Parent element (PlotArea)
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.MinValue">
            <summary>
            Specifies the min value of the axis range.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.MaxValue">
            <summary>
            Specifies the max value of the axis range.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Step">
            <summary>
            Specifies the step at which axis values are calculated
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.IsZeroBased">
            <summary>
            Specifies whether the axis begins from 0.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.MaxItemsCount">
            <summary>
            Gets or sets maximal count of the axis items when auto scaling.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.VisibleValues">
            <summary>
            Determines the type of shown values
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.LabelStep">
            <summary>
            Draw each 1,2,...,n item
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxis.Items">
            <summary>
            Returns a collection of axis items.
            </summary>
        </member>
        <member name="T:Telerik.Charting.BarOrderingMode">
            <summary>
            Bar charts ordering modes
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartXAxis">
            <summary>Represents the X Axis.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartXAxis.pixelStep">
            <summary>
            Cached pixel step value.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.#ctor(Telerik.Charting.ChartPlotArea)">
            <summary>
            Creates a new instance of the ChartXAxis class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.#ctor(Telerik.Charting.ChartPlotArea,Telerik.Charting.IContainer)">
            <summary>Creates a new instance of the ChartXAxis class.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartXAxis.TickPoints">
            <summary>
            Axis ticks points 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartXAxis.GridPoints">
            <summary>
            Axis grid lines points
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartXAxis.TickPointsTypes">
            <summary>
            Ticks points' types 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartXAxis.GridPointsTypes">
            <summary>
            Grid points' types in array
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetPixelStep">
            <summary>
            Returns axis step in pixels
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetCoordinate(System.Double)">
            <summary>
            Gets value coordinate at axis
            </summary>
            <param name="val">Value</param>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetZeroCoordinate">
            <summary>
            Gets the X coordinate of the axis which corresponds to the base value (0, min (if positive), max (if negative))
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetAxisStartCoord">
            <summary>
            Gets the start value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetAxisEndCoord">
            <summary>
            Gets the end value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetFreePositions">
            <summary>
            Axis items count without min and max value
            </summary>
            <returns>Integer</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetMarksCount">
            <summary>
            Tick marks count
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetStartCoordinate">
            <summary>
            Gets coordinate of the first axis item in a different LayoutModes
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.DisableCachedValues">
            <summary>
            Restores initial values of cached axis settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetClientRectangle(System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Gets axis image rectangle
            </summary>
            <param name="startPoint">Start point</param>
            <param name="endPoint">End point</param>
            <remarks>Used with client-zoom in ASP.NET Ajax chart</remarks>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetClientRectangle">
            <summary>
            Gets axis image rectangle
            </summary>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetFirstItemHalfDimension">
            <summary>
            Gets the half of the first axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetLastItemHalfDimension">
            <summary>
            Gets the half of the last axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.GetMaxItemBound">
            <summary>
            Gets the larger value of axis items dimensions: height or width
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.InitializeItems">
            <summary>
            Initialize axis items collection in dependency of series items collection values limits
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.CalculateLayout(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates axis layout settings
            </summary>
            <param name="renderEngine">Render Engine reference</param>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.CheckAxisItemVisibility(Telerik.Charting.ChartAxisItem)">
            <summary>
            Checks the axis item visibility
            </summary>
            <param name="item">Axis item</param>
            <returns>True if item should be rendered</returns>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.CalculateAxisItemsLayout(Telerik.Charting.RenderEngine,System.Nullable{System.Single})">
            <summary>
            Calculates axis items layout settings
            </summary>
            <param name="renderEngine">Render Engine reference</param>
            <param name="maxBound">Already calculated ItemsBound value</param>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.CalculateGridsAndTicks">
            <summary>
            Calculates grid lines and ticks positions
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.AddItem(System.String)">
            <summary>
            Adds a new axis item.
            </summary>
            <param name="label">Item text</param>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.AddItem(System.String,System.Drawing.Color)">
            <summary>
            Adds a new axis item.
            </summary>
            <param name="label">Item text</param>
            <param name="color">Item text color</param>
        </member>
        <member name="M:Telerik.Charting.ChartXAxis.ClearDataBoundState">
            <summary>
            Clears all data bound settings for axis
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.DataLabelsColumn">
            <summary>
            The data source column used as axis items labels source
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.IsDataBound">
            <summary>
            Gets whether X ChartAxis data bound or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.LayoutMode">
            <summary>
            Specifies the layout style of the axis.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.AutoShrink">
            <summary>
            Specifies whether the axis is auto shrink or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.ItemsBound">
            <summary>
            Max axis item coordinate (X or Y). Farther value.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.OrderingMode">
            <summary>
            Define bar's series ordering mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.PixelsPerValue">
            <summary>
            Pixels count per value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.AxisType">
            <summary>
            Axis type value: XAxis
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.IsMinorTickVisible">
            <summary>
            Gets the minor axis ticks visibility
            <remarks>Always false for XAxis</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartXAxis.IsMajorTickVisible">
            <summary>
            Gets the major axis ticks visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartYAxisMode">
            <summary>
            Specifies the Y axis modes.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartYAxisMode.Normal">
            <summary>
            Sets default Y axis mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartYAxisMode.Extended">
            <summary>Extends the axis when AutoScale property is set to true.</summary>
        </member>
        <member name="T:Telerik.Charting.ChartYAxisType">
            <summary>
            Primary or Secondary
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartYAxisType.Primary">
            <summary>Specifies primary Y-Axis</summary>
        </member>
        <member name="F:Telerik.Charting.ChartYAxisType.Secondary">
            <summary>Specifies secondary Y-Axis</summary>
        </member>
        <member name="T:Telerik.Charting.ChartYAxis">
            <summary>Represents a chart Y Axis.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartYAxis.chartYAxisScaleBreak">
            <summary>
            Scale break settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.LoadViewState(System.Object)">
            <summary>
            Loads Y axis settings from view state
            </summary>
            <param name="savedState">View state</param>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.SaveViewState">
            <summary>
            Saves axis settings to a state bag
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.#ctor(Telerik.Charting.ChartPlotArea,Telerik.Charting.ChartYAxisType)">
            <summary>Creates a new instance of the ChartYAxis class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CalculateGridsAndTicks">
            <summary>
            Calculates grid lines and ticks positions
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.Initialize(System.Double,System.Double)">
            <summary>Initializes the axis with min and max values.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.InitializeSegments">
            <summary>
            Makes preparations for an axis segmentation in case of Scale Breaks enabled
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CreateSegments">
            <summary>
            Creates axis segments when Scale breaks enabled
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.OptimizeSegments(Telerik.Charting.AxisSegmentCollection,Telerik.Charting.ChartSeriesItemsCollection)">
            <summary>
            Replaces overlapped segments with one segment
            </summary>
            <param name="LocalSegments">Calculated segments</param>
            <param name="items">Series items</param>
            <returns>Optimized axis segments collection without overlapped segments</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CalculateSegmentsPosition">
            <summary>
            Calculates segments positions
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetCoordinate(System.Double)">
            <summary>
            Gets value coordinate at axis
            </summary>
            <param name="val">Value</param>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetZeroCoordinate">
            <summary>
            Gets the coordinate of zero value
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetAxisStartCoord">
            <summary>
            Gets the start value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetAxisEndCoord">
            <summary>
            Gets the end value coordinate
            </summary>
            <returns>Coordinate</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetZeroValue">
            <summary>
            Return the base value of the axis.
            </summary>
            <returns>Axis zero value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetClientRectangle(System.Drawing.PointF,System.Drawing.PointF)">
            <summary>
            Gets axis image rectangle
            </summary>
            <param name="startPoint">Start point</param>
            <param name="endPoint">End point</param>
            <remarks>Used with client-zoom in ASP.NET Ajax chart</remarks>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetClientRectangle">
            <summary>
            Gets axis image rectangle
            </summary>
            <remarks>Used with client-zoom in ASP.NET Ajax chart</remarks>
            <returns>Rectangle</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetFirstItemHalfDimension">
            <summary>
            Gets the half of the first axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetLastItemHalfDimension">
            <summary>
            Gets the half of the last axis item's largest dimension
            </summary>
            <returns>Half of the largest dimension</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetMaxItemBound">
            <summary>
            Gets the larger value of axis items dimensions: height or width
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.InitializeItems">
            <summary>
            Initialize axis items collection in dependency of series items collection values limits
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CalculateLayout(Telerik.Charting.RenderEngine)">
            <summary>
            Calculates axis layout settings
            </summary>
            <param name="renderEngine">Render Engine reference</param>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CalculateAxisItemsLayout(Telerik.Charting.RenderEngine,System.Boolean,System.Nullable{System.Single})">
            <summary>
            Calculates axis items layout settings
            </summary>
            <param name="renderEngine">Render Engine reference</param>
            <param name="getItemBoundOnly">Should method calculate the ItemsBound value only</param>
            <param name="maxBound">Already calculated ItemsBound value</param>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.GetPixelStep(System.Decimal)">
            <summary>
            Gets pixels between two axis items
            </summary>
            <param name="itemValue">Axis item value. Can be used to detect if value is located in the any axis segment</param>
            <returns>Distance in pixels</returns>
        </member>
        <member name="M:Telerik.Charting.ChartYAxis.CreateSegmentsRenderingRegions(Telerik.Charting.RenderEngine)">
            <summary>
            Creates rendering areas for a several axis segments in case of Scale breaks
            </summary>
            <param name="renderEngine">Render Engine reference</param>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.IsLogarithmic">
            <summary>
            Use Logarithmic scale or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.MinValue">
            <summary>
            Specifies the min value of the axis range.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.MaxValue">
            <summary>
            Specifies the max value of the axis range.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.Step">
            <summary>
            Specifies the step at which axis values are calculated
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.LogarithmBase">
            <summary>
            Logarithm base.
            <remarks>Min possible value is 2</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.Segments">
            <summary>
            Segments collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.ScaleBreaks">
            <summary>
            Scale breaks settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.YAxisType">
            <summary>
            Defines a type of YAxis
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.AxisMode">
            <summary>
            Gets or sets the style of the Y axis.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.ItemsBound">
            <summary>
            Max axis item coordinate (X or Y). Farther value.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.MajorPoints">
            <summary>
            Points array for a major ticks and grid lines
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.MinorPoints">
            <summary>
            Points array for a minor ticks and grid lines
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartYAxis.AxisType">
            <summary>
            Gets the axis type: Y or Y2 axes
            </summary>
        </member>
        <member name="T:Telerik.Charting.SegmentsCombinePriority">
            <summary>
            Segments sorting support structure
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartAxisItemType">
            <summary>
            Axis item types enumeration
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxisItemType.Normal">
            <summary>
            Simple axis item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxisItemType.SegmentStart">
            <summary>
            Segment start axis item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxisItemType.SegmentEnd">
            <summary>
            Segment end axis item
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartAxisItem">
            <summary>Represents an axis item.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor(Telerik.Charting.IContainer)">
            <summary>Creates a new instance of the class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor">
            <summary>Creates a new instance of the class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor(System.String)">
            <summary>Creates a new instance of the class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor(System.String,System.Drawing.Color)">
            <summary>
            Creates a new instance of the class.
            </summary>
            <param name="labelText">Item text</param>
            <param name="color">Item text color</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor(System.String,System.Drawing.Color,System.Boolean)">
            <summary>
            Creates a new instance of the class.
            </summary>
            <param name="label">Item text</param>
            <param name="color">Item text color</param>
            <param name="visible">Visibility</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.#ctor(System.String,System.Drawing.Color,System.Boolean,Telerik.Charting.IContainer)">
            <summary>
            Creates a new instance of the class.
            </summary>
            <param name="labelText">Item text</param>
            <param name="color">Item text color</param>
            <param name="visible">Visibility</param>
            <param name="container">Item container object</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.GetBound">
            <summary>
            Gets the bound rectangle
            </summary>
            <returns>RectangleF</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.GetHeight">
            <summary>
            Bound rectangle's height
            </summary>
            <returns>Height value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.GetHeight(System.Boolean,System.Boolean)">
            <summary>
            Bound rectangle's height
            </summary>
            <param name="withTopMargin">Include top margin value in target height or not</param>
            <param name="withBottomMargin">Include bottom margin value in target height or not</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.GetWidth">
            <summary>
            Bound rectangle's width
            </summary>
            <returns>Width value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.GetWidth(System.Boolean,System.Boolean)">
            <summary>
            Bound rectangle's width
            </summary>
            <param name="withLeftMargin">Include left margin value in target width or not</param>
            <param name="withRigthMargin">Include right margin value in target width or not</param>
            <returns>Width value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.CorrectTextBlockAlignedPosition(System.Boolean)">
            <summary>
            Corrects text block's aligned position value
            </summary>
            <param name="reason">Reason to correct</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItem.Measure(Telerik.Charting.RenderEngine,Telerik.Charting.ChartAxisItem)">
            <summary>
            Calculates the text block's size
            </summary>
            <param name="renderEngine">RenderEngine reference</param>
            <param name="emptyItem">Axis item with default settings to compare with current item</param>
            <returns>SizeF</returns>
        </member>
        <member name="P:Telerik.Charting.ChartAxisItem.Visible">
            <summary>Specifies whether the axis item should be rendered.</summary>
        </member>
        <member name="P:Telerik.Charting.ChartAxisItem.Value">
            <summary>
            Specifies the value of the axis.
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartAxisItemsCollection">
            <summary>A collection to store axis items.</summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxisItemsCollection.chartAxisItemsCollectionParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.#ctor">
            <summary>Creates a new instance of the ChartAxisItemsCollection class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.#ctor(Telerik.Charting.ChartAxis)">
            <summary>Creates a new instance of the ChartAxisItemsCollection class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.#ctor(System.Drawing.Font)">
            <summary>
            Creates a new instance of the AxisItems class with the specified default item font.
            </summary>
            <param name="itemFont">Axis item's Font settings</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.#ctor(System.Drawing.Color)">
            <summary>
            Creates a new instance of the AxisItems class with the specified default item color.
            </summary>
            <param name="itemColor">Axis item text color settings</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.#ctor(System.Drawing.Font,System.Drawing.Color)">
            <summary>
            Creates a new instance of the AxisItems class with the specified default item font and color.
            </summary>
            <param name="itemFont">Axis item's Font settings</param>
            <param name="itemColor">Axis item text color settings</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.DeleteItem(System.Int32)">
            <summary>
            Removes axis item from collection
            </summary>
            <param name="itemIndex">Item index to delete at</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.GetItemRotationAngle(Telerik.Charting.ChartAxisItem)">
            <summary>
            Gets axis item's rotation angle
            </summary>
            <param name="item">Axis item</param>
            <returns>Rotation angle value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.GetWidth">
            <summary>
            Gets widest axis item's width
            </summary>
            <returns>Width value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.GetHeight">
            <summary>
            Gets highest axis item's height
            </summary>
            <returns>Height value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollection.Add(Telerik.Charting.ChartAxisItem)">
            <summary>
            Adds a chart axis item to the collection.
            </summary>
            <param name="chartAxisItem">Axis item to add</param>
        </member>
        <member name="P:Telerik.Charting.ChartAxisItemsCollection.Parent">
            <summary>
            Parent element
            </summary>       
        </member>
        <member name="P:Telerik.Charting.ChartAxisItemsCollection.Item(System.Int32)">
            <summary>
            Gets or sets a ChartAxisItem element at the specified position.
            </summary>
        </member>
        <member name="T:Telerik.Charting.ScaleBreakLineType">
            <summary>
            Possible axis scale break's line types
            </summary>
        </member>
        <member name="T:Telerik.Charting.ScaleBreak">
            <summary>
            Y Axis scale break
            </summary>
        </member>
        <member name="F:Telerik.Charting.ScaleBreak.scaleBreakParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ScaleBreak.TrackViewState">
            <summary>
            Tracking view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.ScaleBreak.LoadViewState(System.Object)">
            <summary>
            Loads settings from a view state
            </summary>
            <param name="savedState">Saved state bag</param>
        </member>
        <member name="M:Telerik.Charting.ScaleBreak.SaveViewState">
            <summary>
            Saves settings to a view state
            </summary>
            <returns>Saved state bag</returns>
        </member>
        <member name="M:Telerik.Charting.ScaleBreak.#ctor(Telerik.Charting.ChartAxis)">
            <summary>
            Constructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.ScaleBreak.CreateScaleBreakLine(System.Double,System.Boolean)">
            <summary>
            Gets the scale break line
            </summary>
            <param name="length">Line length</param>
            <param name="isHorizontal">Is series orientation horizontal (true) or vertical (false)</param>
            <returns>Graphics path with an appropriate line inside</returns>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.Enabled">
            <summary>
            Is scale break feature enabled
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.LineStyle">
            <summary>
            Break line's appearance settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.MaxCount">
            <summary>
            Max scale breaks count
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.ValueTolerance">
            <summary>
            Value tolerance in percents
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.Width">
            <summary>
            Space width between two break lines
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.Line">
            <summary>
            Break line appearance settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.Segments">
            <summary>
            Segments collection. Used with ScaleBreak feature enabled
            </summary>
        </member>
        <member name="P:Telerik.Charting.ScaleBreak.Parent">
            <summary>
            Parent element reference (ChartAxis)
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartPlotArea">
            <summary>
            Plot area - series rendering canvas.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaMarkedZones">
            <summary>
            Collection of Marked zones
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaXAxis">
            <summary>
            X Axis
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaYAxis">
            <summary>
            Y Axis
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaYAxis2">
            <summary>
            Secondary Y Axis
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaParent">
            <summary>
            Link to a chart object
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaEmptySeriesMessage">
            <summary>
            Label for empty series notification
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaRegionCommon">
            <summary>
            Temporary (for rendering process) contains common drawing region of plot area based on both (main and secondary) axis scale breaks
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaRegionYAxisPrimary">
            <summary>
            Temporary (for rendering process) contains drawing region of plot area based on Y axis scale breaks
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaRegionYAxisSecondary">
            <summary>
            Temporary (for rendering process) contains drawing region of plot area based on secondary Y axis scale breaks
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaSeriesLabels">
            <summary>
            Temporary (for rendering process) list of series items labels
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.popVals">
            <summary>
            List for save series popular values. Used for render strict bar series
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaChartDataTable">
            <summary>
            Table that contain series data
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPlotArea.chartPlotAreaOrderList">
            <summary>
            List, that represents the render order list for taken up elements
            (For IOrdering.Container property)
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.LoadViewState(System.Object)">
            <summary>
            Load ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.SaveViewState">
            <summary>
            Save Track ViewState
            </summary>
            <returns>Object data as array</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.ShouldSerializeIntelligentLabelsEnabled">
            <summary>
            Shoulds the serialize intelligent labels enabled.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.#ctor">
            <summary>
            Create instance of the class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.#ctor(Telerik.Charting.Chart)">
            <summary>
            Create instance of the class
            </summary>
            <param name="parent">Chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Init">
            <summary>
            Initialize object properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.InitOrderList">
            <summary>
            Fill order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.UpdateAxisOrientation">
            <summary>
            Updated axes orientation accordingly to the SeriesOrientation
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.SeriesCollection">
            <summary>
            Series collection on current plot area
            </summary>
            <returns>Series collection</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.SeriesCollection(Telerik.Charting.ChartYAxisType)">
            <summary>
            Series collection on plot area filtered by Y axis type
            </summary>
            <param name="chartYAxisType"></param>
            <returns>Series collection</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.InitializeAxes">
            <summary>
            Axis initialization
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.CreateRectanglesInSeriesLabel">
            <summary>
            Create rectangles in the series items labels for Intelligent engine
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.ClearAutoPropertiesForAxisItems">
            <summary>
            Clearing automatic properties for axis items
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.GetBarStart(Telerik.Charting.ChartSeries)">
            <summary>
            Return position for starting bars drawing
            </summary>
            <param name="series">Series</param>
            <returns>Position</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.GetBarStart(Telerik.Charting.ChartSeries,System.Boolean)">
            <summary>
            Return position for starting bars drawing
            </summary>
            <param name="series">Series</param>
            <param name="displacementOnly">Local(true) or global(false)</param>
            <returns>Position</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Reset">
            <summary>
            Restore default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.ResetRegions">
            <summary>
            Drop plot area clip regions
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.PrepareForScale">
            <summary>
            Prepare plot area for scale feature
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.PrepareForScale(System.Single,System.Single)">
            <summary>
            Prepare plot area for scale feature
            </summary>
            <param name="xScale">X scale coefficient</param>
            <param name="yScale">Y scale coefficient</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.RestoreAfterScale">
            <summary>
            Restore plot area settings after scaling
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.GetBarWidth">
            <summary>
            Returns the width of the bars according to the number of bar series and overlap ratio between them.
            </summary>
            <returns>Bar width</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.GetBarWidth(Telerik.Charting.ChartSeries)">
            <summary>
            Returns the width of the bars according to the number of bar series and overlap ratio between them.
            </summary>
            <param name="series">Series</param>
            <returns>Bar width</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.CalculatePosition(Telerik.Charting.RenderEngine)">
            <summary>
            Position calculation
            </summary>
            <param name="renderEngine">Instance of RenderEngine object</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.CalculateChartDataTablePlotAreaRelative(Telerik.Charting.RenderEngine,System.Single,System.Single)">
            <summary>
            Calculate plot area relative data table 
            </summary>
            <param name="renderEngine">Instance of RenderEngine object</param>
            <param name="containerWidth">Visual container width</param>
            <param name="containerHeight">Visual container height</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.GetOrder(Telerik.Charting.IOrdering)">
            <summary>
            Get elements order position
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Add(Telerik.Charting.IOrdering)">
            <summary>
            Add element at the end of list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Insert(System.Int32,Telerik.Charting.IOrdering)">
            <summary>
            Insert element at specific position in list
            </summary>
            <param name="order">Position</param>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Remove(Telerik.Charting.IOrdering)">
            <summary>
            Remove  element from list
            </summary>
            <param name="element">Element</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.RemoveAt(System.Int32)">
            <summary>
            Remove  element from list by it's index
            </summary>
            <param name="index">Position</param>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.ReIndex">
            <summary>
            Re-index order list
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPlotArea.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.SeriesLabels">
            <summary>
            Temporary (for rendering process) list of series items labels
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.PlotRegionCommon">
            <summary>
            Common rendering region
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.PlotRegionYAxisPrimary">
            <summary>
            Rendering region for a primary Y Axis series
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.PlotRegionYAxisSecondary">
            <summary>
            Rendering region for a secondary Y Axis series
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.MarkedZones">
            <summary>
            Marked zones collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.Visible">
            <summary>
            Visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.DataTable">
            <summary>
            Table that contain series data
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.SeriesOrientation">
            <summary>
            Specifies the orientation of chart series on the plot area.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.IntelligentLabelsEnabled">
            <summary>
            Intelligent labels engine switch
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.EmptySeriesMessage">
            <summary>
            Specifies empty series message text
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.XAxis">
            <summary>
            Gets XAxis.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.YAxis">
            <summary>
            Primary YAxis.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.YAxis2">
            <summary>
            Secondary YAxis
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.Appearance">
            <summary>
            Style
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.Chart">
            <summary>
            Link to chart object
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.PopularValues">
            <summary>
            Popular values collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.OrderList">
            <summary>
            List, that is represent the render order for taken up elements
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPlotArea.NextPosition">
            <summary>
            Get a next free order position
            </summary>
        </member>
        <member name="T:Telerik.Charting.EmptySeriesMessage">
            <summary>
            Empty series message
            <remarks>Visible if no or empty series present</remarks>
            </summary>
        </member>
        <member name="M:Telerik.Charting.EmptySeriesMessage.#ctor">
            <summary>
            Create instance of the class
            </summary>
        </member>
        <member name="M:Telerik.Charting.EmptySeriesMessage.#ctor(Telerik.Charting.ChartPlotArea)">
            <summary>
            Create instance of the class
            </summary>
            <param name="parent">Plot area</param>
        </member>
        <member name="M:Telerik.Charting.EmptySeriesMessage.#ctor(Telerik.Charting.IContainer)">
            <summary>
            Create instance of the class
            </summary>
            <param name="container">Rendering container element</param>
        </member>
        <member name="M:Telerik.Charting.EmptySeriesMessage.#ctor(Telerik.Charting.ChartPlotArea,Telerik.Charting.IContainer)">
            <summary>
            Create instance of the class
            </summary>
            <param name="parent">Plot area</param>
            <param name="container">Rendering container element</param>
        </member>
        <member name="M:Telerik.Charting.EmptySeriesMessage.IsVisible">
            <summary>
            Checks if empty series message should be visible or not
            </summary>
            <returns>Should be visible or not</returns>
        </member>
        <member name="P:Telerik.Charting.EmptySeriesMessage.Visible">
            <summary>
            Visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.MarkedZoneType">
            <summary>
            Enum describe a marked zone types
            </summary>
        </member>
        <member name="F:Telerik.Charting.MarkedZoneType.Horizontal">
            <summary>
            Y axis based marked zone
            </summary>
        </member>
        <member name="F:Telerik.Charting.MarkedZoneType.Vertical">
            <summary>
            X axis based marked zone
            </summary>
        </member>
        <member name="F:Telerik.Charting.MarkedZoneType.Rectangular">
            <summary>
            Both axis based marked zone
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartMarkedZone">
            <summary>
            Class describe a Marked zone functionality
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartMarkedZone.chartMarkedZoneAppearance">
            <summary>
            Appearance properties for marked zone
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartMarkedZone.chartMarkedZoneLabel">
            <summary>
            Marked zone label
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.TrackViewState">
            <summary>
            Tracking ViewState for Marked zone object
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.LoadViewState(System.Object)">
            <summary>
            Loading ViewState data into Marked zone object
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.SaveViewState">
            <summary>
            Saving Marked zone object into ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.#ctor(Telerik.Charting.IContainer)">
            <summary>
            Create a instance of object
            </summary>
            <param name="container">Container object</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.#ctor">
            <summary>
            Create a instance of object
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.#ctor(System.String)">
            <summary>
            Create a instance of object
            </summary>
            <param name="name">Name for marked zone</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.ToString">
            <summary>
            Marked zone to String
            </summary>
            <returns>Marked zone name</returns>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.GetZoneType">
            <summary>
            Define and return a marked zone type
            </summary>
            <returns>Marked zone type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZone.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.Visible">
            <summary>
            Visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.Label">
            <summary>
            Marked zone label
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.Appearance">
            <summary>
            Appearance properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.Name">
            <summary>
            Marked zone name
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.YAxisType">
            <summary>
            Marked zone Y Axis type
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.ValueStartX">
            <summary>
            Marker start position X
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.ValueEndX">
            <summary>
            Marker end position X
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.ValueStartY">
            <summary>
            Marker start position Y
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZone.ValueEndY">
            <summary>
            Marker end position Y
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartMarkedZonesCollection">
            <summary>
            Marked zones collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartMarkedZonesCollection.chartMarkedZonesCollectionParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.#ctor">
            <summary>
            Create instance of class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.#ctor(Telerik.Charting.ChartPlotArea)">
            <summary>
            Create instance of class
            </summary>
            <param name="parent">ChartPlotArea object as parent</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.Add(Telerik.Charting.ChartMarkedZone)">
            <summary>
            Add MarkerZone in the collection
            </summary>
            <param name="item">GridMarker for adding</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.Clear">
            <summary>
            Clear collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.Insert(System.Int32,Telerik.Charting.ChartMarkedZone)">
            <summary>
            Insert GridMarker in collection at the specific position
            </summary>
            <param name="index">Position</param>
            <param name="item">GridMarker</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.Remove(Telerik.Charting.ChartMarkedZone)">
            <summary>
            Remove GridMarker from collection
            </summary>
            <param name="item">GridMarker</param>
        </member>
        <member name="M:Telerik.Charting.ChartMarkedZonesCollection.RemoveAt(System.Int32)">
            <summary>
            Remove GridMarker in the specific position from collection
            </summary>
            <param name="index">Position</param>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZonesCollection.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartMarkedZonesCollection.Item(System.Int32)">
            <summary>
            Gets or sets a GridMarker at the specific position in GridMarkers collection.
            </summary>
            <param name="index">Position in the collection</param>
            <returns>GridMarker at the specific position </returns>
        </member>
        <member name="T:Telerik.Charting.Popular">
            <summary>
            Support class for defining the most popular values in a series items
            </summary>
        </member>
        <member name="F:Telerik.Charting.Popular.popularValue">
            <summary>
            Series item value
            </summary>
        </member>
        <member name="F:Telerik.Charting.Popular.popularNumber">
            <summary>
            Count of series item whit this value
            </summary>
        </member>
        <member name="F:Telerik.Charting.Popular.popularX">
            <summary>
            X position
            </summary>
        </member>
        <member name="F:Telerik.Charting.Popular.popularYpositive">
            <summary>
            Use for stacked series, max positive value
            </summary>
        </member>
        <member name="F:Telerik.Charting.Popular.popularYnegative">
            <summary>
            Use for stacked series, min negative value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Popular.#ctor(System.Single,System.Int32,System.Single)">
            <summary>
            Create instance of class
            </summary>
            <param name="val">Series item value</param>
            <param name="num">Count of items with this value</param>
            <param name="x">X-position</param>
        </member>
        <member name="M:Telerik.Charting.Popular.#ctor(System.Single,System.Int32,System.Single,System.Double,System.Double)">
            <summary>
            Create instance of class
            </summary>
            <param name="val">Series item value</param>
            <param name="num">Count of items with this value</param>
            <param name="x">X-position</param>
            <param name="yNegative">Use for stacked series, max positive value</param>
            <param name="yPositive">Use for stacked series, min negative value</param>
        </member>
        <member name="P:Telerik.Charting.Popular.X">
            <summary>
            X position
            </summary>
        </member>
        <member name="P:Telerik.Charting.Popular.YPositive">
            <summary>
            Use for stacked series, max positive value
            </summary>
        </member>
        <member name="P:Telerik.Charting.Popular.YNegative">
            <summary>
            Use for stacked series, min negative value
            </summary>
        </member>
        <member name="P:Telerik.Charting.Popular.Value">
            <summary>
            Series item value
            </summary>
        </member>
        <member name="P:Telerik.Charting.Popular.Number">
            <summary>
            X position
            </summary>
        </member>
        <member name="T:Telerik.Charting.PopularCollection">
            <summary>
            Collection of Popular objects
            </summary>
        </member>
        <member name="M:Telerik.Charting.PopularCollection.CopyPopList">
            <summary>
            Copy list of pop values to targeted list
            </summary>
            <returns>Popular collection</returns>
        </member>
        <member name="M:Telerik.Charting.PopularCollection.GetPopularValues(Telerik.Charting.Chart)">
            <summary>
            Getting popular values from all series and form list with pop values, his coordinates and number of his popularity
            </summary>
            <param name="chart">Chart object</param>
            <returns>Popular values collection object</returns>
        </member>
        <member name="M:Telerik.Charting.PopularCollection.Popularity(System.Single)">
            <summary>
            Get popularity number by value
            </summary>
            <param name="val">Value</param>
            <returns>Number</returns>
        </member>
        <member name="M:Telerik.Charting.PopularCollection.GetPopularityIndex(System.Single)">
            <summary>
            Get index by value in list of Popularity objects
            </summary>
            <param name="val">value</param>
            <returns>Index</returns>
        </member>
        <member name="T:Telerik.Charting.ChartSeries">
            <summary>
            Series
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeries.chartSeriesAppearance">
            <summary>
            Link to visualization and design properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeries.chartSeriesItems">
            <summary>
            ChartSeries items collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeries.chartSeriesPlotArea">
            <summary>
            Plot area element for series drawing
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeries.chartSeriesParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeries.chartSeriesIsActiveRegionSet">
            <summary>
            Returns whether there is an active region associated with the series.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetParent(Telerik.Charting.ChartSeriesCollection)">
            <summary>
            Set series parent
            </summary>
            <param name="parent"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor">
            <summary>
            Creates a new instance of ChartSeries class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(System.String)">
            <summary>
            Creates a new instance of ChartSeries class with given name
            </summary>
            <param name="name">Name of series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(System.String,Telerik.Charting.ChartSeriesType)">
            <summary>
            Creates a new instance of ChartSeries class with given name and type.
            </summary>
            <param name="name">Name of series</param>
            <param name="type">Type of series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(System.String,Telerik.Charting.ChartSeriesType,Telerik.Charting.ChartSeriesCollection)">
            <summary>
            Creates a new instance of ChartSeries class.
            </summary>
            <param name="name">Name of series</param>
            <param name="type">Type of series</param>
            <param name="parent">Parent of series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(System.String,Telerik.Charting.ChartSeriesType,Telerik.Charting.ChartSeriesCollection,Telerik.Charting.ChartYAxisType,Telerik.Charting.Styles.StyleSeries)">
            <summary>
            Creates a new instance of ChartSeries class.
            </summary>
            <param name="seriesName">Name of series</param>
            <param name="chartSeriesType">Type of series</param>
            <param name="parent">Parent of series</param>
            <param name="yAxisType">YAxisType(Primary or Secondary)</param>
            <param name="style">Style of series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(System.String,Telerik.Charting.ChartSeriesType,Telerik.Charting.ChartSeriesCollection,Telerik.Charting.ChartYAxisType,Telerik.Charting.Styles.StyleSeries,System.String,System.String,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Creates a new instance of ChartSeries class.
            </summary>
            <param name="seriesName">Name of series</param>
            <param name="chartSeriesType">Type of series</param>
            <param name="parent">Parent of series</param>
            <param name="yAxisType">YAxisType(Primary or Secondary)</param>
            <param name="style">Style of series</param>
            <param name="dataYColumn">DataSource column that is used to data-bind to the series YValue</param>
            <param name="dataXColumn">DataSource column that is used to data-bind to the series XValue</param>
            <param name="dataYColumn2">DataSource column that is used to data-bind to the series YValue2</param>
            <param name="dataXColumn2">DataSource column that is used to data-bind to the series XValue2</param>
            <param name="dataYColumn3">DataSource column that is used to data-bind to the series YValue3</param>
            <param name="dataYColumn4">DataSource column that is used to data-bind to the series YValue4</param>
            <param name="dataLabelsColumn"> DataSource column (member) that will be used as ChartSeries names source when Y-values are taken from one column for a several chart ChartSeries</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.#ctor(Telerik.Charting.ChartSeriesCollection)">
            <summary>
            Creates a new instance of ChartSeries class.
            </summary>
            <param name="parent">Parent of series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.ResetActiveRegionForItems">
            <summary>
            Resets active region properties values
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.FindItemIndex(Telerik.Charting.ChartSeriesItem)">
            <summary>
            Search item index in series collection
            </summary>
            <param name="chartItem">Item which index should to find</param>
            <returns>Index of item</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetFormattedLegendItemText">
            <summary>
            Sets the legend item's formatted text
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.GetEmptyPointYValue(Telerik.Charting.ChartSeriesItem,System.Int32)">
            <summary>
            Gets a Y value for empty points
            </summary>
            <param name="item">Series item</param>
            <param name="itemIndex">Series item index</param>
            <returns>Empty point y value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.GetEmptyPointYValue(Telerik.Charting.ChartSeriesItem,System.Int32,System.String)">
            <summary>
            Gets a Y value for empty points
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.CheckBezierSeriesForItemsCount(System.String@)">
            <summary>
            Performs check for a required Bezier series items amount
            </summary>
            <param name="mess">Error message</param>
            <returns>Bezier series items amount is proper</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddLabelsForPieSeries(System.Drawing.PointF[],System.String[],System.Double[],System.Drawing.PointF,System.Single,Telerik.Charting.RenderEngine)">
            <summary>
            Creates Pie series labels
            </summary>
            <param name="points">Points where labels should be located</param>
            <param name="text">Labels text</param>
            <param name="angles">Angles</param>
            <param name="pieCenter">PieCenter point</param>
            <param name="pieRadius">PieRadius</param>
            <param name="renderEngine">RenderEngine of chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.PrepareSeriesByXValues">
            <summary>
            Filters X dependent series items without X value 
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.Sum">
            <summary>
            Sum of series items' Y values
            </summary>
            <returns> Sum of series items' Y values</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.GetCustomFormat(System.String@,System.String)">
            <summary>
            Custom format string
            </summary>
            <param name="s">String should be formatted</param>
            <param name="expression">Format expression</param>
            <returns>Formated string</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.GetSumForStacked(Telerik.Charting.ChartSeriesItem)">
            <summary>
            Return a sum value of items values
            </summary>
            <param name="item">Series item</param>
            <returns>Sum</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.ReplaceString(System.String@,System.String,System.Double,System.String)">
            <summary>
            Replaces string
            </summary>
            <param name="s">String that should be changed</param>
            <param name="expression">Expression for formatting</param>
            <param name="val">Item Value</param>
            <param name="defaultFormat">Default format</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.FormatValues(System.String,Telerik.Charting.ChartSeriesItem)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.GetItemLabel(Telerik.Charting.ChartSeriesItem)">
            <summary>
            Returns text for item label
            </summary>
            <param name="item">Item which label should be taken</param>
            <returns>Label text</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.Clear">
            <summary>
            Clears all series items from the data series.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.RemoveItem(Telerik.Charting.ChartSeriesItem,Telerik.Charting.ChartSeriesItem[])">
            <summary>
            Removes a series item(s) from the series.
            </summary>
            <param name="seriesItem">Item for removing</param>
            <param name="seriesItems">Items for removing</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.RemoveItem(System.Int32,System.Int32[])">
            <summary>
            Removes a series item(s) from the series.
            </summary>
            <param name="index">Index of item should be removed</param>
            <param name="indexes">Indexes of items should be removed</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(Telerik.Charting.ChartSeriesItem,Telerik.Charting.ChartSeriesItem[])">
            <summary>
            Adds a series item(s) to the series.
            </summary>
            <param name="seriesItem">Item to add</param>
            <param name="seriesItems">Items to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(Telerik.Charting.ChartSeriesItemsCollection)">
            <summary>
            Adds a series item(s) to the series.
            </summary>
            <param name="seriesItems">Items to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(Telerik.Charting.ChartSeriesItem[])">
            <summary>
            Adds a series item(s) to the series.
            </summary>
            <param name="seriesItems">Items to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(System.Collections.Generic.List{Telerik.Charting.ChartSeriesItem})">
            <summary>
            Adds a series item(s) to the series.
            </summary>
            <param name="seriesItems">Items to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(System.Double)">
            <summary>
            Adds a new series item to the data series by specifying its value.
            </summary>
            <param name="value">YValue of new item</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(System.Double,System.String)">
            <summary>
            Adds a new series item to the data series by specifying its value and label.
            </summary>
            <param name="value">YValue of new item</param>
            <param name="label">Label of new item</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(System.Double,System.String,System.Drawing.Color)">
            <summary>
            Adds a new series item to the data series by specifying its value, label and color.
            </summary>
            <param name="value">YValue of new item</param>
            <param name="label">Label of new item</param>
            <param name="color">Color of new item</param>																	
        </member>
        <member name="M:Telerik.Charting.ChartSeries.AddItem(System.Double,System.String,System.Drawing.Color,System.Boolean)">
            <summary>
            Adds a new series item to the data series by specifying its value, label, color and explosion.
            </summary>
            <param name="value">YValue of new item</param>
            <param name="label">Label of new item</param>
            <param name="color">Color of new item</param>
            <param name="exploded">If item is exploded</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetItemColor(System.Int32,System.Drawing.Color)">
            <summary>
            Sets a new color to the series item at the specified index.
            </summary>
            <param name="itemIndex">Index of item to change color</param>
            <param name="newColor">New color of item</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetItemValue(System.Int32,System.Double)">
            <summary>
            Sets a new value for the series item at the specified index.
            </summary>
            <param name="itemIndex">Index of item to change YValue</param>
            <param name="newValue">New YValue</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetItemLabel(System.Int32,System.String)">
            <summary>
            Sets a new label for the series item at the specified index.
            </summary>
            <param name="itemIndex">Index of item to change label</param>
            <param name="newLabel">New label</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetItemExplode(System.Int32,System.Boolean)">
            <summary>
            Sets a new explode status for the series item at the specified index.
            </summary>
            <param name="itemIndex">Index of item</param>
            <param name="exploded">Shoul be exploded or not</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetValues(System.Double[])">
            <summary>
            Sets new values to the data series by passing an array of real values. Old values are cleared.
            </summary>
            <param name="values">New values</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetColors(System.Drawing.Color[])">
            <summary>
            Sets new colors to the items in the data series.
            </summary>
            <param name="colors">New colors</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetLabels(System.String[])">
            <summary>
            Sets new labels to the items in the data series.
            </summary>
            <param name="labels">New labels</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetExplodes(System.Boolean[])">
            <summary>
            Sets exploded statuses to the items in the data series.
            </summary>
            <param name="explodes">New exploded values</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SetItems(Telerik.Charting.ChartSeriesItem[])">
            <summary>
            Sets new SeriesItems objects to the data series.
            </summary>
            <param name="seriesItems">New Items to replace old items in series</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.RemoveItem(System.Int32)">
            <summary>
            Removes the SeriesItem object at the specified index.
            </summary>
            <param name="itemIndex">Index to remove</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.ClearDataBoundState">
            <summary>
            Removes data binding links from series
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.ToString">
            <summary>
            Overridden
            </summary>
            <returns>Series name</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.CopyFrom(Telerik.Charting.ChartSeries)">
            <summary>
            Copies settings from given series
            </summary>
            <param name="originalSeries">Series to copy from</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.CopyItems(Telerik.Charting.ChartSeries)">
            <summary>
            Copies series items from given series
            </summary>
            <param name="originalSeries">Series that items should be copied</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.CloneSeries">
            <summary>
            Return new ChartSeries instance with copied all properties from source object and cloned Items collection
            </summary>
            <returns>New instance of ChartSeries with copied fields</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.Clone">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.LoadViewState(System.Object)">
            <summary>
            Load ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeries.SaveViewState">
            <summary>
            Save Track ViewState
            </summary>
            <returns>Object data as array</returns>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsActiveRegionSet">
            <summary>Returns whether there is an active region associated with the series.</summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.ActiveRegionAttributes">
            <summary>
            Default attributes for series items' active regions 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.ActiveRegionToolTip">
            <summary>
            Default tooltip for series items' active regions 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.ActiveRegionUrl">
            <summary>
            Default url for series items' active regions 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Visible">
            <summary>Specifies whether to render the series or not.</summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Appearance">
            <summary>
            Specifies the visual appearance of series items.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Type">
            <summary>
            Gets or sets the type of the series.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.PlotArea">
            <summary>
            Plot area element for series drawing
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Chart">
            <summary>
            Link to Chart object
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataXColumn">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series X-value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataXColumn2">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series X2-value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataYColumn">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series Y-value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataYColumn2">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series Y2-value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataYColumn3">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series Y3-value (High for CandleStick chart).
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataYColumn4">
            <summary>
            Gets or sets the name of the DataSource column (member) that is used to data-bind to the series Y4-value (Low for CandleStick chart). 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DataLabelsColumn">
            <summary>
            Gets or sets the name of the DataSource column (member) that will be used as ChartSeries names source when Y-values are taken from one column for a several chart ChartSeries
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsDataBound">
            <summary>
            Determines whether the series is configured as data bound or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Name">
            <summary>
            Gets or sets the name of the data series.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.DefaultLabelValue">
            <summary>
            Specifies the default value for the series items labels.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Index">
            <summary>
            Current series index in the series collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.YAxisType">
            <summary>
            Y Axis used by series
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Item(System.Int32)">
            <summary>
            Gets or sets a ChartSeries SeriesItem object at the specified index.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.Items">
            <summary>
            Gets a collection of series items.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.LegendFormattedText">
            <summary>
            Formatted text string for a Legend
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsScalable">
            <summary>
            Defines whether series can be used with zoom or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsXDependent">
            <summary>
            If series depends of X value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsXDependentSeriesType">
            <summary>
            If current series type is x dependent
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsNormalStacked">
            <summary>
            Determines whether the series is stacked and not stacked100 or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStacked100">
            <summary>
            Determines whether the series is stacked100 or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStacked">
            <summary>
            Determines whether the series is stacked or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsLine">
            <summary>
            Determines whether the series is line-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsSplineArea">
            <summary>
            Determines whether the series is spline area-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsArea">
            <summary>
            Determines whether the series is normal area-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStackedLine">
            <summary>
            Determines whether the series is stacked line-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStackedNormalArea">
            <summary>
            Determines whether the series is stacked area-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStackedSplineArea">
            <summary>
            Determines whether the series is stacked area-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsStackedArea">
            <summary>
            Determines whether the series is stacked area-type.
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeries.IsHasEmptyValues">
            <summary>
            Determines whether the series has items with empty values
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesCollection">
            <summary>
            Series collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesCollection.chartSeriesCollectionParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.#ctor">
            <summary>Creates a new instance of the ChartSeriesCollection class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.#ctor(Telerik.Charting.Chart)">
            <summary>
            Creates a new instance of the ChartSeriesCollection class.
            </summary>
            <param name="parent">Parent for collection</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMinStacked100Value(Telerik.Charting.ChartSeriesType)">
            <summary>
            Gets minimum Stacked 100 series item value 
            </summary>
            <param name="seriesType">Series Type</param>
            <returns>Minimum Stacked 100 series item value </returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxStacked100Value">
            <summary>
            Gets maximum Stacked 100 series item value 
            </summary>
            <returns>Maximum Stacked 100 series item value </returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMinStackedValue(Telerik.Charting.ChartSeriesType)">
            <summary>
            Gets the min value of the stacked series of a specifies type.
            </summary>
            <param name="seriesType">Series Type</param>
            <returns>Min value of the stacked series of a specifies type.</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxStackedValue(Telerik.Charting.ChartSeriesType)">
            <summary>
            Gets the max value of the stacked series of a specified type.
            </summary>
            <param name="seriesType">Series Type</param>
            <returns>Max value of the stacked series of a specified type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMinYValue(System.Double,System.Double,System.Boolean)">
            <summary>
            Compares two doubles and return minimum value
            </summary>
            <param name="value1">First value to compare</param>
            <param name="value2">Second value to compare</param>
            <returns>Less value</returns>
            <param name="checkNaN">Should NAN values be compared as 0 or not</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxYValue(System.Double,System.Double,System.Boolean)">
            <summary>
            Compares two doubles and return maximum value
            </summary>
            <param name="value1">First value to compare</param>
            <param name="value2">Second value to compare</param>
            <returns>Greater value</returns>
            <param name="checkNaN">Should NAN values be compared as 0 or not</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.OnlyBezierSeries">
            <summary>
            Checks if collection contains only Bezier series
            </summary>
            <returns>Whether collection contains only Bezier series</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.OnlyPieSeries">
            <summary>
            Returns true if collection contains only pie series
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.DefineItemsLabelText">
            <summary>
            Define items label text for each item for the all series in the collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.ClearAutoGeneratedItemsLabelText">
            <summary>
            Clear auto generated items label text for each item in the collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.CheckForErrors">
            <summary>
            Check if collection contains proper data
            </summary>
            <returns>Text of error</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.Stacked(Telerik.Charting.ChartSeries)">
            <summary>
            Returns True if series is a stacked type
            </summary>
            <param name="chartSeries"></param>
            <returns>Is series a stacked type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.Stacked100(Telerik.Charting.ChartSeries)">
            <summary>
            Returns True if series is a stacked100 type
            </summary>
            <param name="chartSeries"></param>
            <returns>Is series a stacked100 type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxItemsCount(Telerik.Charting.ChartSeriesType)">
            <summary>
            Gets maximum series items count of specified type
            </summary>
            <param name="seriesType">Type of series</param>
            <returns>Maximum series items count of specified type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSeriesCount(Telerik.Charting.ChartSeriesType)">
            <summary>
            Gets series count of specified type
            </summary>
            <param name="seriesType">Series type</param>
            <returns>Series count of specified type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSumForStacked(System.Int32)">
            <summary>
            Gets series items sum
            </summary>
            <param name="itemsPosition">Item index for calculating summary</param>
            <returns>Series items sum</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSumsForStacked(Telerik.Charting.ChartSeriesType)">
            <summary>
            Return a sum value of items values
            </summary>
            <param name="seriesType">Series</param>
            <returns>Dictionary of value and sum</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.HaveXValue">
            <summary>
            Checks if any series item has X value
            </summary>
            <returns>Checks if any series item has X value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetValueLimits">
            <summary>
            Gets value limits
            </summary>
            <returns>Value limits</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.ClearColors">
            <summary>
            Clears all series's style main and secondary colors
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.IsSeriesEmpty">
            <summary>
            Returns True if all series have no items
            </summary>
            <returns>True if all series have no items</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSeriesCollectionCount(Telerik.Charting.ChartSeriesType,System.Int32)">
            <summary>
            Count of  specified type series
            </summary>
            <param name="chartSeriesType">Type of series</param>
            <param name="startIndex">Start index to search</param>
            <returns>Count of  specified type series</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSeriesCollection(Telerik.Charting.ChartSeriesType)">
            <summary>
            Collection of series of specified type
            </summary>
            <param name="chartSeriesType">Type of series to select</param>
            <returns>Collection of series of specified type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSeriesCollection(Telerik.Charting.ChartSeriesType[])">
            <summary>
            Collection of series of specified types
            </summary>
            <param name="chartSeriesTypes">Types of series to select</param>
            <returns>Collection of series of specified types</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetXUsedSeriesCollection">
            <summary>
            Collection of series that use and have XValues
            </summary>
            <returns>Collection of series that use and have XValues</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetClonedXUsedSeriesCollection">
            <summary>
            Clone X-dpended series collection
            </summary>
            <returns>Clone X-dpended series collection</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetYUsedSeriesCollection">
            <summary>
            Collection of series that use YAxis
            </summary>
            <returns>Collection of series that use YAxis</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.PrepareForScale">
            <summary>
             Prepare series after AutoScale, add fake X values
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.RestoreAfterScale">
            <summary>
            Restore series after AutoScale, remove fake X values
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.OnInsertComplete(System.Int32,System.Object)">
            <summary>
            Final code for series insertion
            </summary>
            <param name="index">Index where series should be insert</param>
            <param name="value">Value to insert</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.Add(Telerik.Charting.ChartSeries)">
            <summary>
            Add ChartSeries at the collection
            </summary>
            <param name="chartSeries">ChartSeries to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.ClearItems">
            <summary>
            Clears items in all series
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.RemoveSeries">
            <summary>
            Removes the all data series from the series collection.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.Insert(System.Int32,Telerik.Charting.ChartSeries)">
            <summary>
            Insert ChartSeries in collection at the specific position
            </summary>
            <param name="index">Position</param>
            <param name="item">ChartSeries</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.InsertSeries(System.Int32,Telerik.Charting.ChartSeries)">
            <summary>
            Insert ChartSeries in collection at the specific position
            </summary>
            <param name="index">Position</param>
            <param name="item">ChartSeries</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetByName(System.String)">
            <summary>
            Find series by name
            </summary>
            <param name="name">ChartSeries name</param>
            <returns>ChartSeries</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetSeries(System.Int32)">
            <summary>
            Returns a reference to the ChartsSereis object at the specified index.
            </summary>
            <param name="index">Index of series</param>
            <returns>Series with specified index</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxItemsCount">
            <summary>
            Returns the number of items in the longest data series.
            </summary>
            <returns>Number of items in the longest data series</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.ClearDataBoundState">
            <summary>
            Removes data binding links from series
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetFilteredSeriesByYAxis(Telerik.Charting.ChartYAxisType)">
            <summary>
            Gets all series related to the given Y ChartAxis
            </summary>
            <param name="yAxisType">YAxisType(Primary, Secondary)</param>
            <returns>All series related to the given Y ChartAxis</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMinYValue">
            <summary>
            Gets the minimal item value of all series.
            </summary>
            <returns>Minimal item value of all series</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.GetMaxYValue">
            <summary>
            Gets the maximal item value of all series.
            </summary>
            <returns>Maximal item value of all series</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesCollection.LoadViewState(System.Object)">
            <summary>
            Load ViewState
            </summary>
            <param name="state">ViewState with data</param>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.Parent">
            <summary>
            Parent element (chart)
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.Item(System.Int32)">
            <summary>
            Gets or sets a ChartSeries at the specific position in ChartSeries collection.
            </summary>
            <param name="index">Position in the collection</param>
            <returns>ChartSeries at the specific position </returns>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.IsXDepended">
            <summary>
            Property is true if all series in collection is X depended
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.BarSeriesCount">
            <summary>
            Returns the number of bar series which are drawn next to each other. StackedBars, StackedBars100 are counted as 1 bar series.
            </summary>
            <returns>Cont of bar series</returns>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.IsScalable">
            <summary>
            Defines whether all series in collection are scalable
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesCollection.IsUnScalable">
            <summary>
            Defines whether all series in collection are unscalable
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesLegendDisplayMode">
            <summary>
            Specifies legend items presentation.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesLegendDisplayMode.Nothing">
            <summary>
            The legend does not show any information from the series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesLegendDisplayMode.SeriesName">
            <summary>
            The legend shows the series name.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesLegendDisplayMode.ItemLabels">
            <summary>
            The legend shows the names of the series items.
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesOrientation">
            <summary>
            Series orientation
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesOrientation.Vertical">
            <summary>
            Specifies Vertical Orientation
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesOrientation.Horizontal">
            <summary>
            Specifies Horizontal Orientation
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartValueLimits">
            <summary>
            Class describe a value limits for axis calculation
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartValueLimits.MinXValue">
            <summary>
            Min X value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartValueLimits.MaxXValue">
            <summary>
            Max X value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartValueLimits.MinYValue">
            <summary>
            Min Y value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartValueLimits.MaxYValue">
            <summary>
            Max Y value
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartValueLimits.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>
            Creates instance of ChartValueLimits class.
            </summary>
            <param name="minXValue">Minimal x value</param>
            <param name="maxXValue">Maximal x value</param>
            <param name="minYValue">Minimal y value</param>
            <param name="maxYValue">Maximal y value</param>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesItem">
            <summary>
            Represents the base element of RadChart's series.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemAppearance">
            <summary>
            Link to visualization and design properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemPointAppearance">
            <summary>
            Point mark style
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemLabel">
            <summary>
            Item Label
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemRelativeValue">
            <summary>
            Relative value used for Stacked100 series
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.chartSeriesItemActiveRegion">
            <summary>
            ActiveRegion
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItem.haveRealXValue">
            <summary>
            Defines if item has user-defined XValue or XValue was generated
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.Double,Telerik.Charting.Styles.StyleSeriesItem)">
            <summary>Creates a new instance of the ChartSeriesItem class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.Double)">
            <summary>Creates a new instance of the ChartSeriesItem class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.Double,System.Double,System.Double)">
            <summary>Creates a new instance of the ChartSeriesItem class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.Double,System.Double,System.Double,System.Double,System.Double)">
            <summary>Creates a new instance of the ChartSeriesItem class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor">
            <summary>
            Creates a new instance of the ChartSeriesItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(Telerik.Charting.ChartSeries)">
            <summary>Creates a new instance of the ChartSeriesItem class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Boolean)">
            <summary>
            Creates a new instance of the empty ChartSeriesItem class.
            </summary>
            <param name="isEmpty"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double)">
            <summary>
            Creates a new instance of the ChartSeriesItem class.
            </summary>
            <param name="value"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.String)">
            <summary>
            Creates a new instance of the ChartSeriesItem class.
            </summary>
            <param name="value"></param>
            <param name="labelText"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.String,System.Drawing.Color)">
            <summary>
            Creates a new instance of the ChartSeriesItem class.
            </summary>
            <param name="value"></param>
            <param name="label"></param>
            <param name="color"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.#ctor(System.Double,System.String,System.Drawing.Color,System.Boolean)">
            <summary>		
            Creates a new instance of the ChartSeriesItem class.		
            </summary>
            <param name="value"></param>
            <param name="label"></param>
            <param name="color"></param>
            <param name="exploded"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.DefineLabelText">
            <summary>
            Define items label text for item
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.ClearAutoGeneratedLabelText">
            <summary>
            Clear auto generated items label text for item
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.GetXValue">
            <summary>
            Returns XValue or 0 if it was not set
            </summary>
            <returns>XValue or 0 if it was not set</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.AddLabel(System.String,System.Drawing.RectangleF,Telerik.Charting.RenderEngine)">
            <summary>
            Add item label to collection of PlotArea's labels for further their rendering
            </summary>
            <param name="text">Label text</param>
            <param name="rect">Item's rectangle to calculate label position</param>
            <param name="engine">RenderEngine of chart</param>
            <returns>Created Label</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.SetLabelAutoPosition(Telerik.Charting.SeriesItemLabel@,Telerik.Charting.ChartSeriesOrientation)">
            <summary>
            Locate item label
            </summary>
            <param name="label">Label to correct position depend on SeriesOrientation</param>
            <param name="chartSeriesOrientation">SeriesOrientation of chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.IsVisible(System.Drawing.RectangleF)">
            <summary>
            Returns if item is inside PlotArea
            </summary>
            <param name="rect">Rectangle that contains item</param>
            <returns>Whether item is inside PlotArea</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.TrackViewState">
            <summary>
            Tracking ViewState data
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.LoadViewState(System.Object)">
            <summary>
            Loading ViewState data
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.SaveViewState">
            <summary>
            Saving ViewState data
            </summary>
            <returns>Saved in View state data</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItem.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of ChartSeriesItem class that is copy of this object </returns>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Visible">
            <summary>Specifies whether the series item should be rendered.</summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.RelativeValue">
            <summary>
            Relative value used for Stacked100 series
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.ActiveRegion">
            <summary>
            Active region
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Appearance">
            <summary>
            Link to visualization and design properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Label">
            <summary>
            Item label
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Parent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Empty">
            <summary>
            Is series item contains empty value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.XValue">
            <summary>
            Main X value
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.XValue2">
            <summary>
            Second x value for item
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.YValue">
            <summary>
            Main Y value for item
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.YValue2">
            <summary>
            Second y value for item
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.YValue3">
            <summary>
            Third y value for item (could be used in CandleStick charts as High value)
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.YValue4">
            <summary>
            Fourth y value for item (could be used in CandleStick charts as Low value)
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Item(System.String)">
            <summary>
            Return value by item value type name 
            </summary>
            <param name="valueTypeName">Value type name</param>
            <returns>value</returns>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Name">
            <summary>
            ChartSeriesItem name 
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.PointAppearance">
            <summary>
            Point appearance settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItem.Index">
            <summary>
            Index in items collection
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartDesignTimeSeriesItem">
            <summary>
            Design-time series item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempXValue">
            <summary>
            Main X for design created item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempXValue2">
            <summary>
            Second X for design created item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempYValue">
            <summary>
            Main Y for design created item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempYValue2">
            <summary>
            Second Y for design created item
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempYValue3">
            <summary>
            Third Y value for design created item (could be used in CandleStick charts as High value)
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemTempYValue4">
            <summary>
            Third Y value for design created item (could be used in CandleStick charts as Low value)
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartDesignTimeSeriesItem.chartDesignTimeSeriesItemRandom">
            <summary>
            Random generator for design items
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.#cctor">
            <summary>
            Constructor to initialize random generator
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates new instance of the class.
            </summary>
            <param name="series">Specifies parent for item</param>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.#ctor(System.String,Telerik.Charting.ChartSeries)">
            <summary>
            Creates new instance of the class.
            </summary>
            <param name="itemName">Name of item</param>
            <param name="series">Parent of item</param>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.Init">
            <summary>
            Initialize item X and Y values
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.ClearValues">
            <summary>
            Clear X and Y values of the item
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartDesignTimeSeriesItem.SetCorrectValues">
            <summary>
            Use needed X and Y values depend on type of series
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSeriesItemsCollection">
            <summary>
            Series items collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSeriesItemsCollection.seriesItemsCollectionParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.#ctor">
            <summary>Creates a new instance of the ChartSeriesItemsCollection class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates a new instance of the ChartSeriesItemsCollection class.
            </summary>
            <param name="parent">Parent of the collection</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.DefineLabelText(Telerik.Charting.ChartSeries)">
            <summary>
            Define items label text for each item in the collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.ClearAutoGeneratedLabelText">
            <summary>
            Clear auto generated items label text for each item in the collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.GetItemWithMaxYValue(Telerik.Charting.ChartSeriesItem)">
            <summary>
             Get item with max YValue not greater than specified
            </summary>
            <param name="notMoreItem">Item which YValue is limit for searching</param>
            <returns>Item with max YValue not greater than specified</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.GetItemWithMinYValue(Telerik.Charting.ChartSeriesItem)">
            <summary>
             Get item with min YValue not less than specified
            </summary>
            <param name="notMoreItem">Item which YValue is limit for searching</param>
            <returns>Item with min YValue not less than specified</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.ItemsInRange(System.Double,System.Double)">
            <summary>
            Count of items with YValues in specified range
            </summary>
            <param name="min">Min limit for searching</param>
            <param name="max">Max limit for searching</param>
            <returns>Count of items with YValues in specified range</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.GetMinValue(System.Double,System.Double)">
            <summary>
            Min YValue in specified range
            </summary>
            <param name="minValue">Min limit for searching</param>
            <param name="maxValue">Max limit for searching</param>
            <returns>Min YValue in specified range</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.GetMaxValue(System.Double,System.Double)">
            <summary>
            Max YValue in specified range
            </summary>
            <param name="minValue">Min limit for searching</param>
            <param name="maxValue">Max limit for searching</param>
            <returns>Max YValue in specified range</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.Sort">
            <summary>
            Sort items 
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.Filter(Telerik.Charting.Styles.ChartAxisVisibleValues)">
            <summary>
            Filter items by YAxis VisibleValues(All, Negative, Positive)
            </summary>
            <param name="chartAxisVisibleValues">YAxis VisibleValues(All, Negative, Positive)</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.ResetActiveRegions">
            <summary>
            Clear for all items Region
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.Add(Telerik.Charting.ChartSeriesItem)">
            <summary>
            Add Item at the collection
            </summary>
            <param name="chartSeriesItem">Item to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.AddRange(Telerik.Charting.ChartSeriesItemsCollection)">
            <summary>
            Adds a collection of series items to the items collection.
            </summary>
            <param name="chartSeriesItems">Items to add</param>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemsCollection.LoadViewState(System.Object)">
            <summary>
            Load ViewState data
            </summary>
            <param name="state">ViewState with data</param>
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItemsCollection.Parent">
            <summary>
            Parent element
            </summary>       
        </member>
        <member name="P:Telerik.Charting.ChartSeriesItemsCollection.Item(System.Int32)">
            <summary>
            Gets or sets a Item at the specific position in Items collection.
            </summary>
            <param name="index">Position in the collection</param>
            <returns>Item at the specific position </returns>
        </member>
        <member name="M:Telerik.Charting.ChartSeriesItemComparer.System#Collections#IComparer#Compare(System.Object,System.Object)">
            <summary>
            Method for comparing ChartSeriesItems
            </summary>
            <param name="x">First SeriesItem</param>
            <param name="y">Second SeriesItem</param>
            <returns>Difference between YValues</returns>
        </member>
        <member name="T:Telerik.Charting.ChartTitle">
            <summary>
            Chart Title 
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartTitle.#ctor">
            <summary>Creates a new instance of the ChartTitle class.</summary>
        </member>
        <member name="M:Telerik.Charting.ChartTitle.#ctor(Telerik.Charting.Chart)">
            <summary>Creates a new instance of the ChartTitle class.</summary>
            <param name="parent">Chart</param>
        </member>
        <member name="M:Telerik.Charting.ChartTitle.#ctor(Telerik.Charting.Chart,Telerik.Charting.IContainer)">
            <summary>Creates a new instance of the ChartTitle class.</summary>
            <param name="parent">Chart</param>
            <param name="container">Elements container</param>
        </member>
        <member name="T:Telerik.Charting.LayoutZoneType">
            <summary>
            Layout zone types
            </summary>
        </member>
        <member name="F:Telerik.Charting.LayoutZoneType.Vertical">
            <summary>
            Vertical layout zone
            </summary>
        </member>
        <member name="F:Telerik.Charting.LayoutZoneType.Horizontal">
            <summary>
            Horizontal layout zone
            </summary>
        </member>
        <member name="T:Telerik.Charting.LayoutZone">
            <summary>
            Virtual chart area for a chart elements placement in auto-layout
            </summary>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.#ctor">
            <summary>
            Creates new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.ToRectangleF">
            <summary>
            Export zone to rectangle
            </summary>
            <returns>RectangleF</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.ToPosition">
            <summary>
            Layout zone to Position
            </summary>
            <returns>Position</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.ToDimensions">
            <summary>
            Layout zone to Dimensions
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.FromStyle(Telerik.Charting.Styles.Dimensions,System.Object)">
            <summary>
            Creates Layout zone from chart object
            </summary>
            <param name="baseDimensions">Zone container dimensions</param>
            <param name="chartElement">Chart element like ChartTitle or Legend</param>
            <returns>LayoutZone</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.CreateFromAvailableSpace(Telerik.Charting.Styles.DimensionsChart,System.Object,Telerik.Charting.LayoutZone[])">
            <summary>
            Creates new layout zone from a space available for a chart element
            </summary>
            <param name="dimensionsChart">Chart dimensions</param>
            <param name="chartElement">Chart element</param>
            <param name="layoutZones">Existing layout zones</param>
            <returns>LayoutZone</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.DistributeZones(Telerik.Charting.LayoutZone@,Telerik.Charting.LayoutZone@,Telerik.Charting.LayoutZone@)">
            <summary>
            Relocates existing layout zones to avoid their overlapping
            </summary>
            <param name="titleZone">ChartTitle layout zone</param>
            <param name="legendZone">Legend LayoutZone</param>
            <param name="dataTableZone">DataTable layout zone</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.FixElementPosition(Telerik.Charting.Styles.Position)">
            <summary>
            Corrects element position to place it inside zone
            </summary>
            <param name="position">Element position</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.CalculatePosition(System.Object,Telerik.Charting.Styles.Dimensions,Telerik.Charting.Styles.Position)">
            <summary>
            Calculates element position
            </summary>
            <param name="element">Chart element</param>
            <param name="dimensions">Element dimensions</param>
            <param name="position">Current element position</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.DistributeElements">
            <summary>
            Relocates current layout zone elements inside of layout zone
            </summary>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.GetDataTable">
            <summary>
            Gets the DataTable from Layout zone
            </summary>
            <returns>DataTable or null</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.GetTitle">
            <summary>
            Gets ChartTitle from Layout zone
            </summary>
            <returns>ChartTitle or null</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.GetLegend">
            <summary>
            Gets Legend from Layout zone
            </summary>
            <returns>Legend or null</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.RemoveEquals(Telerik.Charting.LayoutZone[])">
            <summary>
            Remove duplicates from layout zone
            </summary>
            <param name="layoutZones">Layout zones array</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.FixLayoutZone(Telerik.Charting.LayoutZone@)">
            <summary>
            Fixes layout zone dimensions
            </summary>
            <param name="zone">Layout zone to fix</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.IsUsedBefore(Telerik.Charting.LayoutZone[],Telerik.Charting.LayoutZone,System.Int32)">
            <summary>
            Is layout zone already used
            </summary>
            <param name="layoutZones">Layout zones array</param>
            <param name="zone">Layout zone to check</param>
            <param name="index">Start index</param>
            <returns>True if zone already used</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.GetOffsetY(System.Object)">
            <summary>
            Get Y offset of the element in zone
            </summary>
            <param name="element">Element</param>
            <returns>Left offset value</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.GetRealHeight">
            <summary>
            Gets element's bound rectangle height
            </summary>
            <returns>Height</returns>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.FixXAndWidth(Telerik.Charting.LayoutZone,Telerik.Charting.LayoutZone)">
            <summary>
            Fix X coordinate and Width of two layout zones
            </summary>
            <param name="zone1">First Layout zone</param>
            <param name="zone2">Second Layout zones</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.DefineType(Telerik.Charting.Styles.Position)">
            <summary>
            Corrects element position position
            </summary>
            <param name="position">Position</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.SetMajorDimension(System.Drawing.RectangleF,Telerik.Charting.Styles.ChartMargins)">
            <summary>
            Sets the layout zone dimension including appropriate margins 
            </summary>
            <param name="rect">Bound rectangle</param>
            <param name="margins">Element margins</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.SetMinorDimension(Telerik.Charting.Styles.Dimensions)">
            <summary>
            Sets the layout zone dimension 
            </summary>
            <param name="dimensions">Container object dimensions</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.DefineBasePosition(Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Corrects the element position to place it inside Layout Zone
            </summary>
            <param name="position">Zone element position</param>
            <param name="baseDimensions">Zone container dimensions</param>
        </member>
        <member name="M:Telerik.Charting.LayoutZone.Add(System.Object)">
            <summary>
            Adds chart element in current layout zone 
            </summary>
            <param name="element">Element to add</param>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.X">
            <summary>
            X coordinate
            </summary>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.Y">
            <summary>
            Y coordinate
            </summary>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.Width">
            <summary>
            Zone width
            </summary>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.Height">
            <summary>
            Zone height
            </summary>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.Type">
            <summary>
            Zone type
            </summary>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.Item(System.Int32)">
            <summary>
            IOrdering list element by index
            </summary>
            <param name="index">Element index</param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Charting.LayoutZone.AlignedPosition">
            <summary>
            Zone aligned position
            </summary>
        </member>
        <member name="T:Telerik.Charting.Security">
            <summary>
            Encryption utility class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Security.encryptStringToBytes_AES(System.String,System.Byte[],System.Byte[])">
            <summary>
            Encrypts string using AES algorithm
            </summary>
            <param name="plainText">Text string to encrypt</param>
            <param name="Key">Encryption key array</param>
            <param name="IV">IV array</param>
            <returns>Encrypted byte array</returns>
        </member>
        <member name="M:Telerik.Charting.Security.decryptStringFromBytes_AES(System.Byte[],System.Byte[],System.Byte[])">
            <summary>
            Decrypts bytes array to a string using AES algorithm
            </summary>
            <param name="cipherText">Encrypted bytes array</param>
            <param name="Key">Encryption key array</param>
            <param name="IV">IV array</param>
            <returns>Encrypted byte array</returns>
        </member>
        <member name="T:Telerik.Charting.Tools">
            <summary>
            Common chart utility methods
            </summary>
        </member>
        <member name="M:Telerik.Charting.Tools.#ctor">
            <summary>
            Class constructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.Tools.ParseAttribute(System.String@,System.Xml.XmlNode,System.String)">
            <summary>
            Xml support method. Gets the Xml attribute value
            </summary>
            <param name="target">Target string to save the value</param>
            <param name="node">XmlNode to get attribute from</param>
            <param name="targetXmlName">Xml attribute name</param>
            <returns>True in case of success</returns>
        </member>
        <member name="M:Telerik.Charting.Tools.SetAttribute(System.Xml.XmlElement,System.String,System.Object,System.Type)">
            <summary>
            Sets the XmlAttribute value
            </summary>
            <param name="xmlElement">XmlElement to set attribute value</param>
            <param name="attributeName">Attribute name</param>
            <param name="val">Value to set</param>
            <param name="attributeType">Value type if value is Enumeration</param>
        </member>
        <member name="M:Telerik.Charting.Tools.CompareArrays(System.Drawing.Color[],System.Drawing.Color[])">
            <summary>
            Compares two Color arrays
            </summary>
            <param name="a">First array to compare</param>
            <param name="b">Second array to compare</param>
            <returns>True if arrays are equal</returns>
        </member>
        <member name="M:Telerik.Charting.Tools.CompareArrays(System.Single[],System.Single[])">
            <summary>
            Compares two float arrays
            </summary>
            <param name="a">First array to compare</param>
            <param name="b">Second array to compare</param>
            <returns>True if arrays are equal</returns>
        </member>
        <member name="M:Telerik.Charting.Tools.ArraySum(System.Single[])">
            <summary>
            Calculates sum of a float array members
            </summary>
            <param name="a">Array</param>
            <returns>Sum value</returns>
        </member>
        <member name="T:Telerik.Charting.DefaultValues">
            <summary>
            Default properties values constants
            </summary>
        </member>
        <member name="F:Telerik.Charting.DefaultValues.ROUND_DIGITS">
            <summary>
            Rounding digits limit
            </summary>
        </member>
        <member name="F:Telerik.Charting.DefaultValues.MIN_POSSIBLE_STEP">
            <summary>
            Minimum possible axis step value
            </summary>
        </member>
        <member name="F:Telerik.Charting.DefaultValues.defaultForeColors">
            <summary>
            Default main colors array
            </summary>
        </member>
        <member name="F:Telerik.Charting.DefaultValues.defaultSecondColors">
            <summary>
            Default secondary colors array
            </summary>
        </member>
        <member name="M:Telerik.Charting.DefaultValues.GetMainColor(System.Int32)">
            <summary>
            Gets main color from a colors array at the specified index
            </summary>
            <param name="index">Colors index in an array</param>
            <returns>Color</returns>
        </member>
        <member name="M:Telerik.Charting.DefaultValues.GetSecondColor(System.Int32)">
            <summary>
            Gets secondary color from a colors array at the specified index
            </summary>
            <param name="index">Colors index in an array</param>
            <returns>Color</returns>
        </member>
        <member name="T:Telerik.Charting.AxisSegmentsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for manipulations of content of axis segments collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.AxisSegmentsCollectionEditor.parentObject">
            <summary>
            Parent object of axis segments collection
            </summary> 
        </member>
        <member name="M:Telerik.Charting.AxisSegmentsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of AxisSegmentsCollectionEditor class
            </summary>
            <param name="type">Type descriptor</param>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="provider">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>returned value</returns>
        </member>
        <member name="M:Telerik.Charting.AxisSegmentsCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>new instance</returns>
        </member>
        <member name="T:Telerik.Charting.ChartAxisItemsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for manipulations of content of axis items collection
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartAxisItemsCollectionEditor.chartAxis">
            <summary>
            Parent object of axis items collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of ChartAxisItemsCollectionEditor class
            </summary>
            <param name="type">Type descriptor</param>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>returned value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartAxisItemsCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>new instance</returns>
        </member>
        <member name="T:Telerik.Charting.ChartPaletteEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for select palette
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPaletteEditor.editorService">
            <summary>
            Object that provide an interface for a System.Drawing.Design.UITypeEditor to display 
            Windows Forms or to display a control in a drop-down area from a property
            grid control in design mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPaletteEditor.columnsListing">
            <summary>
            ListBox for palette selection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.#ctor">
            <summary>
            Create a instance of ChartPaletteEditor class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Return edit style for ListBox
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <returns>Edit style</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="provider">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.columnsListing_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Added to automatically close dropdown after user selection
            </summary>
            <param name="sender">Object which generate a event</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.Dispose">
            <summary>
            Dispose
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPaletteEditor.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing">True - if should disposing</param>
        </member>
        <member name="P:Telerik.Charting.ChartPaletteEditor.IsDropDownResizable">
            <summary>
            For resize ability
            </summary>
        </member>
        <member name="T:Telerik.Charting.CustomPaletteCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for palette collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.CustomPaletteCollectionEditor.chartComponent">
            <summary>
            Chart component object
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomPaletteCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of CustomPaletteCollectionEditor class
            </summary>
            <param name="type">Type descriptor</param>
        </member>
        <member name="M:Telerik.Charting.CustomPaletteCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.CustomPaletteCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.SeriesCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for series collection content manipulations
            </summary>
        </member>
        <member name="F:Telerik.Charting.SeriesCollectionEditor.chartComponent">
            <summary>
            Chart as component object
            </summary>
        </member>
        <member name="M:Telerik.Charting.SeriesCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of SeriesCollectionEditor class
            </summary>
        </member>
        <member name="M:Telerik.Charting.SeriesCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.SeriesCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.SeriesItemsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for series items collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.SeriesItemsCollectionEditor.chartSeries">
            <summary>
            Series
            </summary>
        </member>
        <member name="M:Telerik.Charting.SeriesItemsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of CustomPaletteCollectionEditor class
            </summary>
            <param name="type">Type descriptor</param>
        </member>
        <member name="M:Telerik.Charting.SeriesItemsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.SeriesItemsCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.ChartSkinEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for skins collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSkinEditor.editorService">
            <summary>
            Object which Provides an interface for a System.Drawing.Design.UITypeEditor to display
            Windows Forms or to display a control in a drop-down area from a property
            grid control in design mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSkinEditor.columnsListing">
            <summary>
            ListBox for select value
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.#ctor">
            <summary>
            Create a instance of ChartSkinEditor class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Return edit style for ListBox
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <returns>Edit style</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="provider">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.columnsListing_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Added to automatically close dropdown after user selection
            </summary>
            <param name="sender">Object which generate a event</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.GetComponent(System.IServiceProvider)">
            <summary>
            Return a component for changes
            </summary>
            <param name="serviceProvider">Object which defines a mechanism for retrieving a service object.</param>
            <returns>Object which provides functionality required by all components</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.Dispose">
            <summary>
            Dispose object
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinEditor.Dispose(System.Boolean)">
            <summary>
            Dispose object
            </summary>
            <param name="disposing">Should dispose</param>
        </member>
        <member name="P:Telerik.Charting.ChartSkinEditor.IsDropDownResizable">
            <summary>
            Used for resize ability
            </summary>
        </member>
        <member name="T:Telerik.Charting.ColorBlendEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for edit complex gradient 
            </summary>
        </member>
        <member name="M:Telerik.Charting.ColorBlendEditor.#ctor(System.Type)">
            <summary>
            Create a instance of ColorBlendEditor class
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:Telerik.Charting.ColorBlendEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type descriptor</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.CommentsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for comments(additional labels) collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.CommentsCollectionEditor.chartComponent">
            <summary>
            Chart component object
            </summary>
        </member>
        <member name="M:Telerik.Charting.CommentsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create a instance of CustomPaletteCollectionEditor class
            </summary>
            <param name="type">Type descriptor</param>
        </member>
        <member name="M:Telerik.Charting.CommentsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Called to edit a value in collection editor
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="T:Telerik.Charting.DataColumnEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for DataColumn changing
            </summary>
        </member>
        <member name="F:Telerik.Charting.DataColumnEditor.editorService">
            <summary>
            Object which Provides an interface for a System.Drawing.Design.UITypeEditor to display
            Windows Forms or to display a control in a drop-down area from a property
            grid control in design mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.DataColumnEditor.columnsListing">
            <summary>
            ListBox for select value
            </summary>
        </member>
        <member name="F:Telerik.Charting.DataColumnEditor.oldValue">
            <summary>
            Previous value
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Return edit style for ListBox
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <returns>Edit style</returns>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="provider">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.FillListBox(System.Object,System.String)">
            <summary>
            Filling listbox
            </summary>
            <param name="data">Data</param>
            <param name="dataMember">DataMember</param>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.columnsListing_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Added to automatically close dropdown after user selection
            </summary>
            <param name="sender">Object which generate a event</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.Dispose">
            <summary>
            Dispose object
            </summary>
        </member>
        <member name="M:Telerik.Charting.DataColumnEditor.Dispose(System.Boolean)">
            <summary>
            Dispose object
            </summary>
            <param name="disposing">Should dispose</param>
        </member>
        <member name="T:Telerik.Charting.FiguresEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for figure change
            </summary>
        </member>
        <member name="F:Telerik.Charting.FiguresEditor.editorService">
            <summary>
            Object which Provides an interface for a System.Drawing.Design.UITypeEditor to display
            Windows Forms or to display a control in a drop-down area from a property
            grid control in design mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.FiguresEditor.columnsListing">
            <summary>
            ListBox for select value
            </summary>
        </member>
        <member name="F:Telerik.Charting.FiguresEditor.oldValue">
            <summary>
            Previous value
            </summary>
        </member>
        <member name="F:Telerik.Charting.FiguresEditor.style">
            <summary>
            Style object
            </summary>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.#ctor">
            <summary>
            Create new instance of FiguresEditor class
            </summary>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Return edit style for ListBox
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <returns>Edit style</returns>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="provider">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.columnsListing_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Added to automatically close dropdown after user selection
            </summary>
            <param name="sender">Object which generate a event</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.Dispose">
            <summary>
            Dispose object
            </summary>
        </member>
        <member name="M:Telerik.Charting.FiguresEditor.Dispose(System.Boolean)">
            <summary>
            Dispose object
            </summary>
            <param name="disposing">Should dispose</param>
        </member>
        <member name="T:Telerik.Charting.CustomFiguresCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for custom figures collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.CustomFiguresCollectionEditor.chartComponent">
            <summary>
            Chart component object
            </summary>
        </member>
        <member name="F:Telerik.Charting.CustomFiguresCollectionEditor.customFiguresCollection">
            <summary>
            Collection of custom figures
            </summary>
        </member>
        <member name="F:Telerik.Charting.CustomFiguresCollectionEditor.cancel">
            <summary>
            True after cancel button click
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollectionEditor.#ctor(System.Type)">
            <summary>
            Create new instance of FiguresEditor class
            </summary>
            <param name="type">Type</param>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollectionEditor.UndoChanges">
            <summary>
            Return collection to previous state
            </summary>
            <returns>Custom figures collection </returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollectionEditor.CancelChanges">
            <summary>
            Drop changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.LabelsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for labels collection changing
            </summary>
        </member>
        <member name="F:Telerik.Charting.LabelsCollectionEditor.container">
            <summary>
            Extended label
            </summary>
        </member>
        <member name="M:Telerik.Charting.LabelsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create new instance of FiguresEditor class
            </summary>
            <param name="type">Type</param>
        </member>
        <member name="M:Telerik.Charting.LabelsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.LabelsCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.MarkedZonesCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for marked zones collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.MarkedZonesCollectionEditor._plotArea">
            <summary>
            Plot area
            </summary>
        </member>
        <member name="M:Telerik.Charting.MarkedZonesCollectionEditor.#ctor(System.Type)">
            <summary>
            Create new instance of FiguresEditor class
            </summary>
            <param name="type">Type</param>
        </member>
        <member name="M:Telerik.Charting.MarkedZonesCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.MarkedZonesCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Creates a new instance of a column for custom collection
            </summary>
            <param name="itemType">Type</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.NumericDataColumnEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for DataColumn with numeric data changing
            </summary>
        </member>
        <member name="M:Telerik.Charting.NumericDataColumnEditor.FillListBox(System.Object,System.String)">
            <summary>
            Filling listbox
            </summary>
            <param name="data">Data</param>
            <param name="dataMember">DataMember</param>
        </member>
        <member name="T:Telerik.Charting.PaletteItemsCollectionEditor">
            <summary>
            Supporting class for Visual Studio design mode.
            Used for palette items collection changes
            </summary>
        </member>
        <member name="F:Telerik.Charting.PaletteItemsCollectionEditor._palette">
            <summary>
            Palette for changing
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItemsCollectionEditor.#ctor(System.Type)">
            <summary>
            Create new instance of FiguresEditor class
            </summary>
            <param name="type">Type</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItemsCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
            <summary>
            Call when value change
            </summary>
            <param name="context">Object which provide contextual information about a component</param>
            <param name="isp">Object which define a mechanism for retrieving a service object</param>
            <param name="value">Value</param>
            <returns>New value</returns>
        </member>
        <member name="M:Telerik.Charting.PaletteItemsCollectionEditor.CreateInstance(System.Type)">
            <summary>
            Return collection to previous state
            </summary>
            <returns>Custom figures collection </returns>
        </member>
        <member name="T:Telerik.Charting.BitmapToRegion">
            <summary>
            Support class for  drawing not rectangular form elements with bitmap fill
            </summary>
        </member>
        <member name="M:Telerik.Charting.BitmapToRegion.#ctor">
            <summary>
            Create Instance of BitmapToRegion class
            </summary>
        </member>
        <member name="M:Telerik.Charting.BitmapToRegion.Convert(System.Drawing.Bitmap)">
            <summary>
            Trace bitmap data to Region
            </summary>
            <param name="bitmap">Image as Bitmap</param>
            <returns>Result Region</returns>
        </member>
        <member name="T:Telerik.Charting.SelectedChange">
            <summary>
            Delegate, that calls when selected ChartPreview change
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartPreview">
            <summary>
            Reloaded PictureBox special for using in the Wizard for preview different chart images
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreview._selected">
            <summary>
            Indicate select or not ChartPreview
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreview.SelectedChange">
            <summary>
            Delegate, that calls when selected ChartPreview change
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.#ctor">
            <summary>
            Create a new instance of ChartPreview class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.#ctor(Telerik.Charting.Chart,System.Int32,System.Int32)">
            <summary>
            Create a new instance of ChartPreview class
            </summary>
            <param name="chart">Base chart</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.#ctor(System.Drawing.Image,System.Int32,System.Int32)">
            <summary>
            Create a new instance of ChartPreview class
            </summary>
            <param name="image">Base chart</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.OnMouseHover(System.EventArgs)">
            <summary>
            Override OnMouseHover event
            </summary>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.OnMouseLeave(System.EventArgs)">
            <summary>
            Override OnMouseLeave event
            </summary>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.OnClick(System.EventArgs)">
            <summary>
            Override OnClick event
            </summary>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreview.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Override OnPaint event
            </summary>
            <param name="pe">Paint event arguments object</param>
        </member>
        <member name="P:Telerik.Charting.ChartPreview.Selected">
            <summary>
            Indicate select or not ChartPreview
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartTypePreview">
            <summary>
            Class for drawing preview different series types 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartTypePreview._type">
            <summary>
            Series type
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartTypePreview._parent">
            <summary>
            Base collection with all series types
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreview.#ctor(Telerik.Charting.Chart,System.Int32,System.Int32)">
            <summary>
            Create a new instance of ChartTypePreview class
            </summary>
            <param name="chart">Base chart</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreview.#ctor(Telerik.Charting.Chart,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Create a new instance of ChartTypePreview class
            </summary>
            <param name="chart">Base chart</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
            <param name="selected">Should select this preview</param>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreview.#ctor(System.Drawing.Image,Telerik.Charting.ChartSeriesType,System.Int32,System.Int32)">
            <summary>
            Create a new instance of ChartTypePreview class
            </summary>
            <param name="image">Base chart</param>
            <param name="type">Chart series type</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreview.#ctor(System.Drawing.Image,Telerik.Charting.ChartSeriesType,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Create a new instance of ChartTypePreview class
            </summary>
            <param name="image">Base chart</param>
            <param name="type">Chart series type</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
            <param name="selected">Should select this preview</param>
        </member>
        <member name="P:Telerik.Charting.ChartTypePreview.ChartType">
            <summary>
            Series type
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSkinPreview">
            <summary>
            Class for drawing preview for different skins 
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSkinPreview._skin">
            <summary>
            Skin name
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartSkinPreview._parent">
            <summary>
            Base collection with all skins
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreview.#ctor(Telerik.Charting.Chart,System.Int32,System.Int32,System.String)">
            <summary>
            Create a new instance of ChartSkinPreview class
            </summary>
            <param name="chart">Base chart</param>
            <param name="imageWidth">Required width for image rendering</param>
            <param name="imageHeight">Required height for image rendering</param>
            <param name="skin">Skin name</param>
        </member>
        <member name="P:Telerik.Charting.ChartSkinPreview.Skin">
            <summary>
            Skin name
            </summary>
        </member>
        <member name="T:Telerik.Charting.SelectedChanged">
            <summary>
            Delegate, that calls when selected ChartPreview change
            </summary>
            <param name="sender">ChartPreview control</param>
        </member>
        <member name="T:Telerik.Charting.ChartPreviewCollection`1">
            <summary>
            Class describe common functionality for collections of different types of ChartPreview
            </summary>
            <typeparam name="T">ChartPreview</typeparam>
        </member>
        <member name="F:Telerik.Charting.ChartPreviewCollection`1.GetSelectedValue">
            <summary>
            Delegate for getting a selected value
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreviewCollection`1._selectedIndex">
            <summary>
            Index of selected element
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreviewCollection`1._needChangeProperty">
            <summary>
            Charts elements property for changing
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreviewCollection`1._component">
            <summary>
            Working component
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartPreviewCollection`1.List">
            <summary>
            List of ChartPreview objects
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.#ctor(System.Object,System.ComponentModel.PropertyDescriptor)">
            <summary>
            Create a new instance of ChartPreviewCollection class
            </summary>
            <param name="component">Working component</param>
            <param name="needChangeProperty">Charts elements property for changing</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.BeforeSetValue">
            <summary>
            Default method for event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.AfterSetValue">
            <summary>
            Default method for event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.OnSelectedIndexChanged(Telerik.Charting.ChartPreview)">
            <summary>
            Default method for event
            </summary>
            <param name="sender">ChartPreview control</param>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.Dispose">
            <summary>
            Dispose control
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartPreviewCollection`1.Dispose(System.Boolean)">
            <summary>
            Dispose control
            </summary>
            <param name="disposing">Should disposing</param>
        </member>
        <member name="P:Telerik.Charting.ChartPreviewCollection`1.SelectedIndex">
            <summary>
            Index of selected element
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartPreviewCollection`1.Item(System.Int32)">
            <summary>
            Get or set element from collection by integer index
            </summary>
            <param name="index">Index of element</param>
            <returns>ChartPreview object</returns>
        </member>
        <member name="T:Telerik.Charting.ChartPreviewCollection`1.GetSelectedValueDelegate">
            <summary>
            Get a selected value
            </summary>
            <returns>Main(that describe) value from ChartPreview</returns>
        </member>
        <member name="T:Telerik.Charting.ChartTypePreviewCollection">
            <summary>
            Class describe functionality for collections of ChartTypePreview
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreviewCollection.#ctor(System.Object,System.ComponentModel.PropertyDescriptor)">
            <summary>
            Create a new instance of ChartPreviewCollection class
            </summary>
            <param name="component">Working component</param>
            <param name="needChangeProperty">Charts elements property for changing</param>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreviewCollection.GetSelectedChartType">
            <summary>
            Return selected type of series types
            </summary>
            <returns>Series type</returns>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreviewCollection.SelectChartByType(System.Nullable{Telerik.Charting.ChartSeriesType})">
            <summary>
            Selecting ChartTypePreview by ChartSeriesType
            </summary>
            <param name="cst">Series type for selecting</param>
        </member>
        <member name="M:Telerik.Charting.ChartTypePreviewCollection.Add(Telerik.Charting.ChartTypePreview)">
            <summary>
            Add ChartTypePreview into the collection
            </summary>
            <param name="item"></param>
        </member>
        <member name="P:Telerik.Charting.ChartTypePreviewCollection.SelectedChartType">
            <summary>
            Selected series type
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartSkinPreviewCollection">
            <summary>
            Class describe functionality for collections of ChartSkinPreview
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.#ctor(System.Object,System.ComponentModel.PropertyDescriptor)">
            <summary>
            Create a new instance of ChartPreviewCollection class
            </summary>
            <param name="component">Working component</param>
            <param name="needChangeProperty">Charts elements property for changing</param>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.GetSelectedSkin">
            <summary>
            Return selected skin
            </summary>
            <returns>Selected skin name</returns>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.SelectChartBySkin(System.String)">
            <summary>
            Selecting ChartSkinPreview by skin name
            </summary>
            <param name="cst">Skin name for selecting</param>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.Add(Telerik.Charting.ChartSkinPreview)">
            <summary>
            Add ChartSkinPreview into the collection
            </summary>
            <param name="item"></param>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.BeforeSetValue">
            <summary>
            Default method for event
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartSkinPreviewCollection.AfterSetValue">
            <summary>
            Default method for event
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartSkinPreviewCollection.SelectedSkin">
            <summary>
            Selected skin name
            </summary>
        </member>
        <member name="T:Telerik.Charting.ImageButton">
            <summary>
            Button control with additional functionality for better design for Wizard
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.clickImage">
            <summary>
            Background image for click state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.hoverImage">
            <summary>
            Background image for hover state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.outImage">
            <summary>
            Background image for out state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.disabledImage">
            <summary>
            Background image for disable state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.clickImageSrc">
            <summary>
            Source for background image for click state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.hoverImageSrc">
            <summary>
            Source for background image for hover state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.outImageSrc">
            <summary>
            Source for background image for out state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.disabledImageSrc">
            <summary>
            Source for background image for disable state
            </summary>
        </member>
        <member name="F:Telerik.Charting.ImageButton.isSkinned">
            <summary>
            Value that indicate should apply background images or not
            </summary>
        </member>
        <member name="M:Telerik.Charting.ImageButton.#ctor">
            <summary>
            Create instance of ImageButton class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ImageButton.#ctor(System.String,System.String,System.String,System.String)">
            <summary>
            Create instance of ImageButton class
            </summary>
            <param name="clickImage">Source for background image for click state</param>
            <param name="hoverImage">Source for background image for hover state</param>
            <param name="outImage">Source for background image for out state</param>
            <param name="disabledImage">Source for background image for disable state</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.GetImageFromResource(System.String)">
            <summary>
            Read source and create image 
            </summary>
            <param name="name">Source name</param>
            <returns>image object</returns>
        </member>
        <member name="M:Telerik.Charting.ImageButton.ApplySkin(System.Boolean)">
            <summary>
            Apply background images
            </summary>
            <param name="applySkin">Should apply</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Override default button event OnMouseDown
            </summary>
            <param name="e">Mouse event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
            <summary>
            Override default button event OnMouseUp
            </summary>
            <param name="e">Mouse event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.OnMouseEnter(System.EventArgs)">
            <summary>
            Override default button event OnMouseEnter
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.OnMouseLeave(System.EventArgs)">
            <summary>
            Override default button event OnMouseLeave
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Override default button event OnPaint
            </summary>
            <param name="e">Paint event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.DisposeImage(System.Drawing.Image@)">
            <summary>
            Disposing Image
            </summary>
            <param name="image">Image object reference</param>
        </member>
        <member name="M:Telerik.Charting.ImageButton.Dispose(System.Boolean)">
            <summary>
            Dispose
            </summary>
            <param name="disposing">Should disposing</param>
        </member>
        <member name="P:Telerik.Charting.ImageButton.DisabledImageSrc">
            <summary>
            Source for background image for disable state
            </summary>
        </member>
        <member name="P:Telerik.Charting.ImageButton.OutImageSrc">
            <summary>
            Source for background image for out state
            </summary>
        </member>
        <member name="P:Telerik.Charting.ImageButton.HoverImageSrc">
            <summary>
            Source for background image for hover state
            </summary>
        </member>
        <member name="P:Telerik.Charting.ImageButton.ClickImageSrc">
            <summary>
            Source for background image for hover state
            </summary>
        </member>
        <member name="P:Telerik.Charting.ImageButton.Enabled">
            <summary>
            Value indicate enable button or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ImageButton.IsSkinned">
            <summary>
            Value that indicate should apply background images or not
            </summary>
        </member>
        <member name="T:Telerik.Charting.ManagedListBox">
            <summary>
            Custom control for Wizard using for list contents manipulations
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._listBox">
            <summary>
            ListBox control
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._upButton">
            <summary>
            ImageButton control for move up ability
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._downButton">
            <summary>
            ImageButton control for move down ability
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._addButton">
            <summary>
            ImageButton control for add ability
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._removeButton">
            <summary>
            ImageButton control for remove ability
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox._enableButtons">
            <summary>
            Value indicate enable buttons(ImageButton) or not
            </summary>
        </member>
        <member name="F:Telerik.Charting.ManagedListBox.isSkinned">
            <summary>
            Should apply background images for ImageButton controls
            </summary>
        </member>
        <member name="M:Telerik.Charting.ManagedListBox.#ctor">
            <summary>
            Create instance of ManagedListBox class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ManagedListBox.ApplySkin(System.Boolean)">
            <summary>
            Apply background images for ImageButton controls
            </summary>
            <param name="isSkinned">Should apply background images for ImageButton controls</param>
        </member>
        <member name="M:Telerik.Charting.ManagedListBox.InitializeComponent">
            <summary>
            Internal component initialization
            </summary>
        </member>
        <member name="M:Telerik.Charting.ManagedListBox._listBox_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Calls when Selected index of element of ListBox changed
            </summary>
            <param name="sender">ListBox object</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.ManagedListBox.listBox_ItemsChanged(System.Object)">
            <summary>
            Calls when content of ListBox changed
            </summary>
            <param name="sender">ListBox object</param>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.EnableButtons">
            <summary>
            Value indicate enable buttons(ImageButton) or not
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.ListBox">
            <summary>
            ListBox control
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.UpButton">
            <summary>
            ImageButton control for add ability
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.DownButton">
            <summary>
            ImageButton control for move down ability
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.AddButton">
            <summary>
            ImageButton control for add ability
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.RemoveButton">
            <summary>
            ImageButton control for remove ability
            </summary>
        </member>
        <member name="P:Telerik.Charting.ManagedListBox.IsSkinned">
            <summary>
            Should apply background images for ImageButton controls
            </summary>
        </member>
        <member name="T:Telerik.Charting.ListBoxItemsChanged">
            <summary>
            Delegate for content of ListBox changed event
            </summary>
            <param name="sender">ListBox</param>
        </member>
        <member name="T:Telerik.Charting.ListBoxItems">
            <summary>
            Class describe a collection of ListBoxItems and its functionality
            </summary>
        </member>
        <member name="F:Telerik.Charting.ListBoxItems.owner">
            <summary>
            Collection owner
            </summary>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.#ctor(Telerik.Charting.ListBoxContolling)">
            <summary>
            Create new instance of ListBoxItems class
            </summary>
            <param name="owner">ListBox</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.#ctor(Telerik.Charting.ListBoxContolling,Telerik.Charting.ListBoxItems)">
            <summary>
            Create new instance of ListBoxItems class
            </summary>
            <param name="owner">ListBox</param>
            <param name="listBoxItems">ListBoxItems collection</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.#ctor(Telerik.Charting.ListBoxContolling,System.Object[])">
            <summary>
            Create new instance of ListBoxItems class
            </summary>
            <param name="owner">ListBox</param>
            <param name="values">Values for ListBoxItems collection</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.Add(System.Object)">
            <summary>
            Add item into the collection
            </summary>
            <param name="item">Item for adding</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.AddRange(System.Object[])">
            <summary>
            Add items into the collection
            </summary>
            <param name="value">Items values for adding</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.AddRange(Telerik.Charting.ListBoxItems)">
            <summary>
            Add items into the collection
            </summary>
            <param name="value">Items for adding</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.AddRange(System.Windows.Forms.ListBox.ObjectCollection)">
            <summary>
            Add items into the collection
            </summary>
            <param name="value">Items values for adding</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.Clear">
            <summary>
            Clearing collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.Insert(System.Int32,System.Object)">
            <summary>
            Insert item into the collection at specific position
            </summary>
            <param name="index">Items position</param>
            <param name="item">Item for adding</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.Remove(System.Object)">
            <summary>
            Remove item from collection
            </summary>
            <param name="item">Item that should be remove</param>
        </member>
        <member name="M:Telerik.Charting.ListBoxItems.RemoveAt(System.Int32)">
            <summary>
            Remove item from collection
            </summary>
            <param name="index">Index of the item that should be removed</param>
        </member>
        <member name="E:Telerik.Charting.ListBoxItems.ItemsChanged">
            <summary>
            Calls when content of ListBoxItems collection changed
            </summary>
        </member>
        <member name="T:Telerik.Charting.ListBoxContolling">
            <summary>
            Class describe functionality for controlling ListBox
            </summary>
        </member>
        <member name="M:Telerik.Charting.ListBoxContolling.OnItemsChanged(System.Object)">
            <summary>
            Default method for ListBoxItemsChanged event
            </summary>
            <param name="sender">Sender </param>
        </member>
        <member name="M:Telerik.Charting.ListBoxContolling.#ctor">
            <summary>
            Create new instance of ListBoxContolling class
            </summary>
        </member>
        <member name="M:Telerik.Charting.ListBoxContolling.CreateItemCollection">
            <summary>
            Create Items Collection for ListBox
            </summary>
            <returns>ObjectCollection</returns>
        </member>
        <member name="E:Telerik.Charting.ListBoxContolling.ItemsChanged">
            <summary>
            Event occurs when items collection of ListBox changed
            </summary>
        </member>
        <member name="P:Telerik.Charting.ListBoxContolling.Items">
            <summary>
            Items collection
            </summary>
        </member>
        <member name="T:Telerik.Charting.NumberTextBox">
            <summary>
            Text block for input numbers only
            </summary>
        </member>
        <member name="F:Telerik.Charting.NumberTextBox._numberValue">
            <summary>
            Value as number
            </summary>
        </member>
        <member name="M:Telerik.Charting.NumberTextBox.#ctor">
            <summary>
            Create new instance of NumberTextBox class
            </summary>
        </member>
        <member name="M:Telerik.Charting.NumberTextBox.OnLeave(System.EventArgs)">
            <summary>
            Override OnLeave event
            </summary>
            <param name="e">Event arguments</param>
        </member>
        <member name="P:Telerik.Charting.NumberTextBox.NumberValue">
            <summary>
            Value as number
            </summary>
        </member>
        <member name="T:Telerik.Charting.Activate">
            <summary>
            Delegate calls when TabPage activate
            </summary>
        </member>
        <member name="T:Telerik.Charting.WizardTabPage">
            <summary>
            Class describe TapPage for Wizard
            </summary>
        </member>
        <member name="F:Telerik.Charting.WizardTabPage.Activate">
            <summary>
            Delegate calls when TabPage activate
            </summary>
        </member>
        <member name="M:Telerik.Charting.WizardTabPage.#ctor">
            <summary>
            Create new instance of WizardTabPage class
            </summary>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.GetDataSourcesList">
            <summary>
            Delegate for getting list of names of available DataSources
            </summary>
            <returns>List of names of available DataSources</returns>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.GetSelectedDataSourceName">
            <summary>
            Delegate for getting name of selected DataSource
            </summary>
            <returns>List of names of available DataSources</returns>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.GetData">
            <summary>
            Transfer data from DataSourse in to the control
            </summary>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.DataSourceChanged">
            <summary>
            Delegate provide event which occurs when DataSource changed
            </summary>
            <param name="sender">Sender object</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.DataSourceDesignerConfigure">
            <summary>
            Delegate provide functionality for configuration DataSorce in the design Time
            </summary>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.SetDataSourceID">
            <summary>
            Delegate for set DataSourceID in the control
            </summary>
        </member>
        <member name="T:Telerik.Charting.Design.Wizard.Wizard">
            <summary>
            Class provide Wizard GUI in the design time for chart controls
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.Designer">
            <summary>
            Chart component designer object
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.ChartControlOriginal">
            <summary>
            Chart component contains a original control
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.ChartControlWorking">
            <summary>
            Chart component contains a temporary control which use in the wizard
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.typesPreview">
            <summary>
            Collection for preview series types
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.skinsPreview">
            <summary>
            Collection for preview skins
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.GetDataSourcesList">
            <summary>
            Default method for GetDataSourcesList delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.GetSelectedDataSourceName">
            <summary>
            Default method for GetSelectedDataSourceName delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.GetData">
            <summary>
            Default method for GetData delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.DataSourceChanged">
            <summary>
            Default method for DataSourceChanged delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.DataSourceDesignerConfigure">
            <summary>
            Default method for DataSourceDesignerConfigure delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.SetDataSourceID">
            <summary>
            Default method for SetDataSourceID delegate
            </summary>
        </member>
        <member name="F:Telerik.Charting.Design.Wizard.Wizard.dataTableDataHelper">
            <summary>
            DataTable data source helper object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.#ctor">
            <summary>
            Create a new instance of Wizard class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.#ctor(Telerik.Charting.IChartDesigner)">
            <summary>
            Create a new instance of Wizard class
            </summary>
            <param name="designer">Chart component designer object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.#ctor(Telerik.Charting.IChartDesigner,System.Boolean)">
            <summary>
            Create a new instance of Wizard class
            </summary>
            <param name="designer">Chart component designer object</param>
            <param name="skinned">Should apply skins for wizard or not</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Init">
            <summary>
            Initialize wizard internal controls
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.FillFromEnum(System.Windows.Forms.ComboBox,System.Type)">
            <summary>
            Fills ComboBox controls from Enum
            </summary>
            <param name="comboBox">ComboBox control</param>
            <param name="enumType">Enum</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.GetEnumValue(System.Type,System.Int32)">
            <summary>
            Gets enum value by its position
            </summary>
            <param name="enumType">Enum</param>
            <param name="index">Position index</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ManageTabData(Telerik.Charting.ChartSeriesType)">
            <summary>
            Management for controls in the Data tab page
            </summary>
            <param name="type"></param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.AddEventTypeTabControls">
            <summary>
            Add Events for tab with series type selection
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.RemoveEventTypeTabControls">
            <summary>
            Remove Events for tab with series type selection
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitType">
            <summary>
            Initialize tab with series type selection
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.GetChartPreview(Telerik.Charting.ChartSeriesType,System.Int32,System.Int32)">
            <summary>
            Create ChartPreview object
            </summary>
            <param name="csType">Series type</param>
            <param name="width">Required width for image rendering</param>
            <param name="height">Required height for image rendering</param>
            <returns>ChartPreview object</returns>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.CreateSeries(System.String,System.Drawing.Color,System.Drawing.Color,Telerik.Charting.ChartSeriesType,Telerik.Charting.Chart)">
            <summary>
            Create series in the chart
            </summary>
            <param name="seriesName">Series name</param>
            <param name="mainColor">Main color</param>
            <param name="secondColor">Second color</param>
            <param name="chartSeriesType">Series type</param>
            <param name="chart">Chart</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.IsVertical_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Change SeriesOrientation property depending of RadioButton state, when RadioButton state changing
            </summary>
            <param name="sender">RadioButton</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.IsHorisontal_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Change SeriesOrientation property depending of RadioButton state, when RadioButton state changing
            </summary>
            <param name="sender">RadioButton</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.AddEventDataTabControls">
            <summary>
            Add events for internal controls in the Data tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.linkLabel3_Click(System.Object,System.EventArgs)">
            <summary>
            Goto Axis tab
            </summary>
            <param name="sender">Label</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesType_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Change series type for selected series
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesLabels_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select series labels Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesY2_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select series Y2 values Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesY_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select series Y values Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesX2_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select series X2 values Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_SeriesX_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select series X values Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesName_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series name
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsY2_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item Y2 value for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsY_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item Y value for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsX2_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item X2 value for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsX_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item X value for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsLabel_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item label value for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Data_SeriesItemsName_Leave(System.Object,System.EventArgs)">
            <summary>
            Change series item name for selected item
            </summary>
            <param name="sender">TextBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_SeriesItems_ListBox_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Define selected series item
            </summary>
            <param name="sender">ListBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_SeriesItems_RemoveButton_Click(System.Object,System.EventArgs)">
            <summary>
            Remove series item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_SeriesItems_AddButton_Click(System.Object,System.EventArgs)">
            <summary>
            Add series item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_SeriesItems_DownButton_Click(System.Object,System.EventArgs)">
            <summary>
            Change series item position(move down) in the collection for selected item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_SeriesItems_UpButton_Click(System.Object,System.EventArgs)">
            <summary>
            Change series item position(move up) in the collection for selected item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_Series_ListBox_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Define selected series
            </summary>
            <param name="sender">ListBox</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_Series_RemoveButton_Click(System.Object,System.EventArgs)">
             <summary>
            Remove selected series
             </summary>
             <param name="sender">Button</param>
             <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_Series_AddButton_Click(System.Object,System.EventArgs)">
            <summary>
            Add series
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_Series_DownButton_Click(System.Object,System.EventArgs)">
            <summary>
            Change series position(move down) in the collection for selected item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Data_Series_UpButton_Click(System.Object,System.EventArgs)">
            <summary>
            Change series position(move up) in the collection for selected item
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.RemoveEventDataTabControls">
            <summary>
            Remove events from internal controls in the Data tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitData">
            <summary>
            Init internal controls in the Data tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitSeries">
            <summary>
            Init controls which bind to the series
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitSeriesItems">
            <summary>
            Init controls which bind to the series items
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.GetItemMark(Telerik.Charting.ChartSeriesItem)">
            <summary>
            Gets a visible item mark  for display in the ListBox
            </summary>
            <param name="seriesItem">Series Item</param>
            <returns>item mark text</returns>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.SelectSeries(System.Int32,System.Boolean)">
            <summary>
            Select series by index
            </summary>
            <param name="index">series index</param>
            <param name="changeSelectedIndex">should change selected index or not</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.SelectSeriesItem(System.Int32)">
            <summary>
            Select series item by index
            </summary>
            <param name="index">series index</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.FillDataSourceIds">
            <summary>
            Fill DropDownList from list of available DataSources
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitDatabindOptionControls">
            <summary>
            Initialize controls which bind to the DataBinding functionality
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.DataSourceViewSelectCallback(System.Object)">
            <summary>
            Supporting method for preview data from data source
            </summary>
            <param name="data">Data from data source</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.btn_Data_Edit_Click(System.Object,System.EventArgs)">
            <summary>
            Call DataSource properties and setting dialog
            </summary>
            <param name="sender">Button</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_DataSource_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Apply selecting DataSourse
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_AxisLabels_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select axis labels Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Data_GroupColumn_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
            Select grouping Field from binding source
            </summary>
            <param name="sender">DropDownList</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitSkin">
            <summary>
            Initialize controls on the Skin tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.CreateChartPreview(System.String,System.Int32,System.Int32)">
            <summary>
            Create preview for skin
            </summary>
            <param name="skinName">Skin Name</param>
            <param name="width">Required width for preview image</param>
            <param name="height">Required height for preview image</param>
            <returns>ChartSkinPreview object</returns>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.AddEventLabelsLegendsTitleTabControls">
            <summary>
            Add events for internal controls in the Series Labels, Legends &amp; Title tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.linkLabel1_Click(System.Object,System.EventArgs)">
            <summary>
            Go to the data tab
            </summary>
            <param name="sender">Label</param>
            <param name="e">Event arguments</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.RemoveEventLabelsLegendsTitleTabControls">
            <summary>
            Remove events for internal controls in the Series Labels, Legends &amp; Title tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitLabelsLegendsTitle">
            <summary>
            Initialize internal controls in the Series Labels, Legends &amp; Title tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.RemoveEventVDT">
            <summary>
            Remove events from controls that binding with values of data table
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.AddEventVDT">
            <summary>
            Add events from controls that binding with values of data table
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_VDT_Y_Leave(System.Object,System.EventArgs)">
            <summary>
            Set Y coordinate for DataTable
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_VDT_X_Leave(System.Object,System.EventArgs)">
            <summary>
            Set X coordinate for DataTable
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitValuesDataTable">
            <summary>
            Initialize controls that binding with values of data table
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_VDT_DrawType_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Change RenderType of DataTable
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_VDT_Align_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Change AlignedPosition of DataTable
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_VDT_Visible_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Change Visible of DataTable
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_VDT_Auto_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Change Position.Auto of DataTable
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.AddEventAxisTabControls">
            <summary>
            Add events from controls in the Axis Tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.link_Axis_BindLabels_Click(System.Object,System.EventArgs)">
            <summary>
            Go to the Data tab
            </summary>
            <param name="sender">Label object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_Axis_ShowMarks_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Set Tick.Visible for selected axis
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.RemoveEventAxisTabControls">
            <summary>
            Remove events from controls in the Axis Tab
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitAxisX">
            <summary>
            Initialize controls base on the XAxis
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitAxisY">
            <summary>
            Initialize controls base on the YAxis
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitAxisY2">
            <summary>
            Initialize controls base on the YAxis2
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitAxis">
            <summary>
            Initialize Axis tab internal controls
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_Axis_Visible_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Set Axis.Visible for selected axis
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_Axis_ShowLabels_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Set AxisItems visible for selected axis
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_Axis_AutoScale_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
            Set AutoScale for selected axis
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Axis_Title_Leave(System.Object,System.EventArgs)">
            <summary>
             Set Axis label text for selected axis
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Axis_Step_Leave(System.Object,System.EventArgs)">
            <summary>
             Set Axis step text for selected axis
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Axis_Rotation_Leave(System.Object,System.EventArgs)">
            <summary>
             Set Axis label rotation angle for selected axis
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Axis_MinValue_Leave(System.Object,System.EventArgs)">
            <summary>
             Set MinValue for selected axis
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_Axis_MaxValue_Leave(System.Object,System.EventArgs)">
            <summary>
             Set MaxValue for selected axis
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Axis_VisibleValues_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set VisibleValues for selected axis
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Axis_ValueFormat_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set ValueFormat for selected axis
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Axis_SelectAxis_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set selected axis
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Axis_CopyFrom_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set base axis for copy setting
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_Axis_Alignment_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set AxisLabel AlignedPosition for selected axis
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.btn_Axis_CopySettings_Click(System.Object,System.EventArgs)">
            <summary>
             Copy settings from one axis to another
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_UpButton_Click(System.Object,System.EventArgs)">
            <summary>
            Move up selected manual axis item
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_DownButton_Click(System.Object,System.EventArgs)">
            <summary>
            Move down selected manual axis item
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_Leave(System.Object,System.EventArgs)">
            <summary>
            Set text for manual axis item
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_RemoveButton_Click(System.Object,System.EventArgs)">
            <summary>
            Remove manual axis item
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_ListBox_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Select target  manual axis item
            </summary>
            <param name="sender">ListBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.FillManualLabels(Telerik.Charting.ChartAxisItemsCollection)">
            <summary>
            Add manual items into the ListBox
            </summary>
            <param name="collection">Collection of ChartAxisItems</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.mlb_Axis_ManualLabels_AddButton_Click(System.Object,System.EventArgs)">
            <summary>
            Add new manual axis item
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.GetSelectedAxis">
            <summary>
            Get selected axis
            </summary>
            <returns>ChartAxis</returns>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.DefineSeriesLabelsProperties(System.Int32)">
            <summary>
            Initialize controls that bindings to the SeriesLabels
            </summary>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_LLT_SeriesLabels_Align_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set SeriesLabel AlignedPosition for selected series
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_LLT_SeriesLabels_Distance_Leave(System.Object,System.EventArgs)">
            <summary>
             Set AxisLabel Distance for selected series
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_LLT_SeriesLabels_Rotation_Leave(System.Object,System.EventArgs)">
            <summary>
             Set AxisLabel Rotation angle for selected series
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_LLT_SeriesLabels_Visible_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
             Set AxisLabel Visible angle for selected series
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_LLT_Series_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set selected series
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_LLT_Legend_Aligment_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set Legend Alignment
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_LLT_Legend_Marker_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set Figure for markers of bindable legend items 
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_LLT_Legend_Visible_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
             Set Visible for Legend
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tb_LLT_Title_Text_Leave(System.Object,System.EventArgs)">
            <summary>
             Set Title text
            </summary>
            <param name="sender">TextBlock object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ddl_LLT_Title_Aligment_DropDownClosed(System.Object,System.EventArgs)">
            <summary>
             Set AlignedPosition for Title
            </summary>
            <param name="sender">DropDownList object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cb_LLT_Title_Visible_CheckedChanged(System.Object,System.EventArgs)">
            <summary>
             Set Visible for Title
            </summary>
            <param name="sender">CheckBox object</param>
            <param name="e">Event arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.InitializeComponent">
            <summary>
            
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Wizard_MouseWheel(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Mouse Wheel support in the wizard tabs
            </summary>
            <param name="sender">Object</param>
            <param name="e">Mouse Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.tabsSetting_SelectedIndexChanged(System.Object,System.EventArgs)">
            <summary>
            Select Tab
            </summary>
            <param name="sender">Tab object</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.ApplySkin(System.Boolean)">
            <summary>
            Apply Skin
            </summary>
            <param name="applySkin">Should apply skin</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.OnCreateControl">
            <summary>
            Override OnCreateControl: initialize BackgroundImage for form
            </summary>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.OnPaint(System.Windows.Forms.PaintEventArgs)">
            <summary>
            Override OnPaint: Drawing BackgroundImage for form
            </summary>
            <param name="e">Paint Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.submitButton_Click(System.Object,System.EventArgs)">
            <summary>
            Submit button click
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.applyButton_Click(System.Object,System.EventArgs)">
            <summary>
            Apply button click
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.cancelButton_Click(System.Object,System.EventArgs)">
            <summary>
            Cancel button click
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Wizard_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard MouseMove event
            </summary>
            <param name="sender">Wizard</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.Wizard_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard MouseDown event
            </summary>
            <param name="sender">Wizard</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.WizardAdded(System.Windows.Forms.Form)">
            <summary>
            WizardAdded event
            </summary>
            <param name="container">Form</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.closeButton_Click(System.Object,System.EventArgs)">
            <summary>
            Close button click
            </summary>
            <param name="sender">Button object</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.wizardForm_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard form MouseDown event
            </summary>
            <param name="sender">Form</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.wizardForm_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard form MouseDown event
            </summary>
            <param name="sender">Wizard</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.controlTitle_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard Title MouseDown event
            </summary>
            <param name="sender">Wizard</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="M:Telerik.Charting.Design.Wizard.Wizard.controlTitle_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
            <summary>
            Wizard Title MouseMove event
            </summary>
            <param name="sender">Wizard</param>
            <param name="e">Event Arguments object</param>
        </member>
        <member name="T:Telerik.Charting.WizardControlsHelper">
            <summary>
            Support class for additional functionality which is used in the specific controls in wizard
            </summary>
        </member>
        <member name="M:Telerik.Charting.WizardControlsHelper.GetImageFromResource(System.String)">
            <summary>
            Gets image from resource library
            </summary>
            <param name="name">Resource name</param>
            <returns>Image</returns>
        </member>
        <member name="M:Telerik.Charting.WizardControlsHelper.ConvertBitmapToRegion(System.Drawing.Bitmap)">
            <summary>
            Trace Bitmap data into region
            </summary>
            <param name="bitmap">Image as bitmap</param>
            <returns>Region</returns>
        </member>
        <member name="T:Telerik.Charting.IOrderingCollection">
            <summary>
            Common interface for a ordering collections
            </summary>
        </member>
        <member name="M:Telerik.Charting.IOrderingCollection.AddRange(System.Collections.Generic.List{Telerik.Charting.IOrdering},System.Int32)">
            <summary>
            Adds IOrdering elements list in the collection
            </summary>
            <param name="order">IOrdering list to add</param>
            <param name="afterIndex">The starting index at collection to add elements to</param>
        </member>
        <member name="M:Telerik.Charting.IOrderingCollection.AddVisibleRange(System.Collections.Generic.List{Telerik.Charting.IOrdering},System.Int32)">
            <summary>
            Adds only visible items to collection
            </summary>
            <param name="order">IOrdering list to add</param>
            <param name="afterIndex">The starting index at collection to add elements to</param>
        </member>
        <member name="M:Telerik.Charting.IOrderingCollection.AddVisible(Telerik.Charting.IOrdering,System.Int32)">
            <summary>
            Adds only visible item to collection
            </summary>
            <param name="elem">IOrdering element to add</param>
            <param name="afterIndex">The starting index at collection to add element to</param>
        </member>
        <member name="P:Telerik.Charting.IOrderingCollection.Item(System.Int32)">
            <summary>
            Gets the IOrdering element from collection at the given index
            </summary>
            <param name="index">Element index</param>
            <returns>IOrdering element</returns>
        </member>
        <member name="T:Telerik.Charting.Resources">
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Resources.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Resources.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="T:Telerik.Charting.ChartClickEventArgs">
            <summary>
            Event arguments when a chart element is clicked.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartClickEventArgs.activeRegion">
            <summary>
            Reverse link to a parent
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartClickEventArgs.series">
            <summary>
            Chart series
            </summary>
        </member>
        <member name="F:Telerik.Charting.ChartClickEventArgs.seriesItem">
            <summary>
            Chart Series Item
            </summary>
        </member>
        <member name="M:Telerik.Charting.ChartClickEventArgs.#ctor(Telerik.Charting.IActiveRegion,Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Create instance of the class
            </summary>
            <param name="element">Parent object</param>
            <param name="series">series</param>
            <param name="seriesItem">series item</param>
        </member>
        <member name="M:Telerik.Charting.ChartClickEventArgs.#ctor(Telerik.Charting.IActiveRegion,Telerik.Charting.ChartSeries)">
            <summary>
            Create instance of the class
            </summary>
            <param name="element">Parent object</param>
            <param name="series">series</param>
        </member>
        <member name="M:Telerik.Charting.ChartClickEventArgs.#ctor(Telerik.Charting.IActiveRegion)">
            <summary>
            Create instance of the class
            </summary>
            <param name="element">Parent object</param>
        </member>
        <member name="P:Telerik.Charting.ChartClickEventArgs.Element">
            <summary>
            Reverse link to a parent
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartClickEventArgs.Series">
            <summary>
            Chart series
            </summary>
        </member>
        <member name="P:Telerik.Charting.ChartClickEventArgs.SeriesItem">
            <summary>
            Chart Series Item
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.image">
            <summary>
            Main Image object
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.graphics">
            <summary>
            Main Graphics object
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.chart">
            <summary>
            Chart that should be rendered
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.seriesList">
            <summary>
            Temporary series list for rendering
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.getAxisItemBoundOnly">
            <summary>
            Show if only bound of axis items be calculated
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.bitmapResolution">
            <summary>
            Resolution of resulting bitmap
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.originalSeries">
            <summary>
            Temporary series list
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.#ctor(Telerik.Charting.Chart,System.Single,System.Single)">
            <summary>
            Create instance of class
            </summary>
            <param name="chart">Chart</param>
            <param name="width">Image width</param>
            <param name="height">Image height</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.#ctor(Telerik.Charting.Chart,System.Single,System.Single,System.Single)">
            <summary>
            Create instance of class
            </summary>
            <param name="chart">Chart</param>
            <param name="width">Image width</param>
            <param name="height">Image height</param>
            <param name="dpi">Resolution</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.#ctor(Telerik.Charting.Chart,System.Single,System.Single,System.Boolean)">
            <summary>
            Create instance of class
            </summary>
            <param name="chart">Chart</param>
            <param name="width">Image width</param>
            <param name="height">Image height</param>
            <param name="initGraphics">Value that indicate should initialize graphics object or not</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Finalize">
            <summary>
            Destructor
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.ScaleTo(System.Drawing.Drawing2D.GraphicsPath,System.Single,System.Single)">
            <summary>
            Scaling graphic path
            </summary>
            <param name="path">Path for scale</param>
            <param name="width">Width</param>
            <param name="height">Height</param>
            <returns>Scaled path</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.MoveTo(System.Drawing.Drawing2D.GraphicsPath,System.Single,System.Single)">
            <summary>
            Moving graphic path
            </summary>
            <param name="path">Path for moving</param>
            <param name="x">New  X coordinate</param>
            <param name="y">New  Y coordinate</param>
            <returns>Moved path</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.LocalToGlobal(Telerik.Charting.IOrdering)">
            <summary>
            Translate local elements coordinates to global
            </summary>
            <param name="element">Chart element</param>
            <returns>Global positio</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPen(Telerik.Charting.Styles.StyleBorder,System.Drawing.Drawing2D.PenAlignment)">
            <summary>
            Translate elements visual setting to Pen object
            </summary>
            <param name="border">Border style</param>
            <param name="aligment">Pen Alignment</param>
            <returns>Pen</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPen(Telerik.Charting.Styles.StyleBorder)">
            <summary>
            Translate elements visual setting to Pen object
            </summary>
            <param name="border">Elements border style</param>
            <returns>Pen</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPen(Telerik.Charting.Styles.LineStyle,System.Drawing.Color,System.Single)">
            <summary>
            Translate elements visual setting to Pen object
            </summary>
            <param name="border">Elements line style</param>
            <param name="color">Color</param>
            <param name="width">Width</param>
            <returns>Pen</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetBrush(Telerik.Charting.Styles.FillStyle,System.Drawing.RectangleF)">
            <summary>
            Translate elements visual setting to Brush object
            </summary>
            <param name="fill">Fill style of elements</param>
            <param name="rect">Element bound rectangle</param>
            <returns>Brush</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetGradientBrush(System.Drawing.RectangleF,Telerik.Charting.Styles.FillStyle)">
            <summary>
            Translate elements visual setting to Brush object
            </summary>
            <param name="rect">Elements bound rectangle</param>
            <param name="fill">Elements fill setting</param>
            <returns>Brush</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.getDiagonalAngle(System.Drawing.RectangleF)">
            <summary>
            Return a angle for diagonal in rectangle
            </summary>
            <param name="rectS">Rectangle</param>
            <returns>Angle</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.AdjustRect(System.Drawing.RectangleF@)">
            <summary>
            Normalize rectangle
            </summary>
            <param name="rect">Rectangle</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.AdjustRoundSize(System.Int32,Telerik.Charting.Styles.CornerType,Telerik.Charting.Styles.CornerType,System.Int32,System.Int32)">
            <summary>
            Normalize corners round coefficient 
            </summary>
            <param name="roundSize">Round coefficient </param>
            <param name="widthCorner">Type of corner</param>
            <param name="heightCorner">Type of corner</param>
            <param name="width">Width</param>
            <param name="height">Height</param>
            <returns>Round coefficient</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetRoundArea(Telerik.Charting.Styles.Corners,System.Single,System.Single,System.Single,System.Single)">
            <summary>
            Rounding corners for rectangle elements
            </summary>
            <param name="corners">Corners</param>
            <param name="X">X coordinate</param>
            <param name="Y">Y coordinate</param>
            <param name="width">Width</param>
            <param name="height">Height</param>
            <returns>Graphics Path with rounded corners</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetRoundRectangle(Telerik.Charting.Styles.Corners,System.Drawing.RectangleF,Telerik.Charting.ChartSeries)">
            <summary>
            Rounding corners for rectangle elements
            </summary>
            <param name="corners">Corners</param>
            <param name="rect">Rectangle</param>
            <param name="series">Series</param>
            <returns>Graphics Path with rounded corners</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetMaxSize(System.Collections.Generic.List{System.Drawing.SizeF})">
            <summary>
            Compare list of SizeF object and return the largest of them
            </summary>
            <param name="sizes">List of sizes</param>
            <returns>Max size</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.AddString(Telerik.Charting.ChartGraphics,System.String,System.String,System.String,System.Single,System.Drawing.Font)">
            <summary>
            String manipulation use in PrepareForHorisontalOverflow and PrepareForVerticalOverflow methods
            </summary>
            <param name="graphics">Graphics</param>
            <param name="result">Result string</param>
            <param name="str">String for adding</param>
            <param name="space">Spacer</param>
            <param name="width">Width</param>
            <param name="font">Font</param>
            <returns>String</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.PrepareForVerticalOverflow(Telerik.Charting.ChartGraphics,System.String,System.Drawing.Font,System.Single)">
            <summary>
            Prepare text for vertical overflow
            </summary>
            <param name="graphics">Graphics</param>
            <param name="text">String</param>
            <param name="font">Font</param>
            <param name="width">Width</param>
            <returns>String</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetRenderRegion(Telerik.Charting.ChartYAxisType)">
            <summary>
            Return area (Region object) for clipping
            </summary>
            <param name="yAxisType">Type of YAxis</param>
            <returns>Region</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetRenderRegion(System.Object)">
            <summary>
            Return area(Region object) for clipping
            </summary>
            <param name="element">Chart element</param>
            <returns>Region</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Render(Telerik.Charting.IContainer)">
            <summary>
            Rendering chart and/or  its elements
            </summary>
            <param name="element">Chart element</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderPlotAreaElements(System.Boolean,System.Boolean)">
            <summary>
            Rendering PlotArea and its elements
            </summary>
            <param name="withGrid">Value that indicate should render grid lines or not</param>
            <param name="withTicks">Value that indicate should render ticks or not</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawScaleBreaks(Telerik.Charting.ChartYAxis)">
            <summary>
            Drawing ScaleBreacks
            </summary>
            <param name="chartYAxis">Y Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderMarkedZonesLabel">
            <summary>
            Rendering  MarkedZones Label
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderMarkedZones">
            <summary>
            Rendering  all MarkedZones
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderAxisItems(Telerik.Charting.ChartAxis)">
            <summary>
            Rendering chart axis items
            </summary>
            <param name="chartAxis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderAxis(Telerik.Charting.ChartAxis)">
            <summary>
            Rendering chart axis
            </summary>
            <param name="chartAxis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderYAxis(Telerik.Charting.ChartYAxis)">
            <summary>
            Rendering YAxis
            </summary>
            <param name="yAxis">Y axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderAxisLabel(Telerik.Charting.ChartLabel)">
            <summary>
            Rendering chart axis label
            </summary>
            <param name="axisLabel">Axis label</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderMarkedZone(Telerik.Charting.ChartMarkedZone,Telerik.Charting.ChartXAxis,Telerik.Charting.ChartYAxis)">
            <summary>
            Rendering  MarkedZone
            </summary>
            <param name="zone">Marked zone</param>
            <param name="chartXAxis">X Axis</param>
            <param name="chartYAxis">Y Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.ChangePlaces(System.Drawing.PointF@)">
            <summary>
            Change x to y and y to x
            </summary>
            <param name="point">Point</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawGrids(System.Drawing.PointF[],System.Drawing.Pen)">
            <summary>
            Grids line drawing
            </summary>
            <param name="gridPoints">Array of points</param>
            <param name="pen">Pen</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawTicks(System.Drawing.PointF[],System.Int32,System.Drawing.Pen)">
            <summary>
            Ticks drawing
            </summary>
            <param name="tickPoints">Array of points</param>
            <param name="tickLength">Length</param>
            <param name="pen">Pen</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawTicks">
            <summary>
            Ticks drawing
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawTicks(Telerik.Charting.ChartXAxis)">
            <summary>
            Ticks drawing
            </summary>
            <param name="axis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawTicks(Telerik.Charting.ChartYAxis)">
            <summary>
            Ticks drawing
            </summary>
            <param name="axis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawGrids">
            <summary>
            Grids line drawing
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawGrids(Telerik.Charting.ChartYAxis)">
            <summary>
            Grids line drawing
            </summary>
            <param name="axis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawGrids(Telerik.Charting.ChartXAxis)">
            <summary>
            Grids line drawing
            </summary>
            <param name="axis">Axis</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderTextBlock(Telerik.Charting.TextBlock)">
            <summary>
            Rendering TextBlock
            </summary>
            <param name="textBlock">Text block element</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderElement(Telerik.Charting.IOrdering)">
            <summary>
            Rendering chart  elements
            </summary>
            <param name="element">Chart element</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderElement(Telerik.Charting.IOrdering,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Rendering chart  elements
            </summary>
            <param name="element">Chart element</param>
            <param name="item">Series item</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderElement(Telerik.Charting.IOrdering,System.Boolean,System.Boolean)">
            <summary>
            Rendering chart  elements
            </summary>
            <param name="element">Chart element</param>
            <param name="withFill">Value that indicate should drawing fill or not</param>
            <param name="withBorder">Value that indicate should drawing border or not</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderChart">
            <summary>
            Rendering  chart
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderChartDataTableBorder(Telerik.Charting.ChartDataTable)">
            <summary>
            Rendering  chart data table border
            </summary>
            <param name="dataTable">Data table</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderChartDataTable(Telerik.Charting.ChartDataTable)">
            <summary>
            Rendering  chart data table
            </summary>
            <param name="dataTable">Data table</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetAlignedImageBrush(Telerik.Charting.Styles.FillStyle,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Image)">
            <summary>
            Translate elements visual setting to Brush object
            </summary>
            <param name="fs">FillStyle object</param>
            <param name="X">X coordinate of element</param>
            <param name="Y">Y coordinate of element</param>
            <param name="width">Elements width</param>
            <param name="height">Elements height</param>
            <param name="img">Image</param>
            <returns>Brush</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetStretchedImageBrush(System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Image)">
            <summary>
            Translate elements visual setting to Brush object
            </summary>
            <param name="X">X coordinate</param>
            <param name="Y">Y coordinate</param>
            <param name="width">Width</param>
            <param name="height">Height</param>
            <param name="img">Image</param>
            <returns>Brush</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetBasePoint(System.Drawing.RectangleF,Telerik.Charting.Styles.AlignedPositions)">
            <summary>
            Returns a base point for rotation aligned elements
            </summary>
            <param name="rect">Rectangle</param>
            <param name="pos">Aligned position</param>
            <returns>Point</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetParentList(Telerik.Charting.IOrdering,System.Collections.Generic.List{Telerik.Charting.IOrdering}@)">
            <summary>
            Return a list of all ancestry elements
            </summary>
            <param name="element">Element</param>
            <param name="list">Parents list</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetRotationAngle(Telerik.Charting.IOrdering,System.Drawing.Drawing2D.GraphicsPath@)">
            <summary>
            Return global Rotation angle
            </summary>
            <param name="elem">Chart element</param>
            <param name="drawPath">Path</param>
            <returns>Rotation angle</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.InitializeChartElements">
            <summary>
            Initializing elements of chart
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.CalculateElementsForRender">
            <summary>
            Prepare chart elements (calculating sizes, positions, etc) for rendering
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.ScalePlotArea(System.Single,System.Single)">
            <summary>
            Scaling PlotArea for zoom feature
            </summary>
            <param name="xScale">X scale coefficient</param>
            <param name="yScale">Y scale coefficient</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.CalculateElementsForRender(Telerik.Charting.IContainer)">
            <summary>
            Prepare chart elements (calculating sizes, positions, etc) for rendering
            </summary>
            <param name="element">IContainer chart element</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetLabelZone(Telerik.Charting.ChartBaseLabel,System.Boolean)">
            <summary>
            Create layout zone (for AutoLayout feature) based on chart label element
            </summary>
            <param name="label">Label</param>
            <param name="visible">Is label visible</param>
            <returns>Labels Layout zone</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.CalculateElementsForRender(Telerik.Charting.Chart)">
            <summary>
            Prepare chart elements (calculating sizes, positions, etc) for rendering
            </summary>
            <param name="chart">Chart object</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.CreateMetafile(System.Int32,System.Int32)">
            <summary>
            Creating graphics stage for EMF file format
            </summary>
            <param name="width">Image width</param>
            <param name="height">Image Height</param>
            <returns>Image MetaFile</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.InitGraphics(System.Int32,System.Int32)">
            <summary>
            First rendering engine initialization
            </summary>
            <param name="width">Image width</param>
            <param name="height">Image height</param>
            <returns>Succses</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Render">
            <summary>
            Renders default chart image and returns it
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Render(System.Boolean)">
            <summary>
            Renders default chart image. Could return image clone.
            </summary>
            <param name="shouldClone">Value that indicate should create clone of result image or not</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderPlotArea(System.Boolean)">
            <summary>
            Renders Plot area image only
            </summary>
            <param name="shouldClone">Value that indicate should create clone of result image or not</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderChartArea(System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean,System.Boolean)">
            <summary>
            Rendering chart background area image without plot area
            </summary>
            <param name="shouldClone">Value that indicate should create clone of result image or not</param>
            <param name="withBackground">Value that indicate use background or not</param>
            <param name="withTitle">Value that indicate should render title or not</param>
            <param name="withLegend">Value that indicate should legend or not</param>
            <param name="withPlotAreaBorder">Value that indicate should render plot area border or not</param>
            <param name="withXAxis">Value that indicate should render XAxis or not</param>
            <param name="withYAxis">Value that indicate should render YAxis or not</param>
            <param name="withYAxis2">Value that indicate should render YAxis2 or not</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderAxis(System.Boolean,Telerik.Charting.ChartAxisType)">
            <summary>
            Rendering chart axis image with ticks and items
            </summary>
            <param name="shouldClone">Value that indicate should create clone of result image or not</param>
            <param name="axisType">Axis type</param>
            <returns>Image</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderFinalImage(System.Boolean)">
            <summary>
            Renders the entire chart image
            </summary>
            <param name="shouldClone">Value that indicate should create clone of result image or not</param>
            <returns>Image</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Dispose">
            <summary>
            Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.renderEngineDrawOnlyShadow">
            <summary>
            Show if need render only shadows
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.barWidth">
            <summary>
            Common bars width
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.barWidthRatio">
            <summary>
            Common bars width ratio
            </summary>
        </member>
        <member name="F:Telerik.Charting.RenderEngine.renderEngineCurrentPalette">
            <summary>
            Selected Palette
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.Render(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering chart and/or  its elements
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderBar(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem,System.Int32,System.Drawing.RectangleF)">
            <summary>
            Rendering Bar - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
            <param name="item">Series item</param>
            <param name="itemIndex">Series item index</param>
            <param name="barRect">Bars rectangle</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderBarShadow(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem,System.Drawing.RectangleF)">
            <summary>
            Rendering series shadow for  Bar - type chart
            </summary>
            <param name="series">Series</param>
            <param name="item">Series item</param>
            <param name="barRect">Bars rectangle</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderBarSeries(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.BarOrderingMode)">
            <summary>
            Rendering series for  Bar - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
            <param name="mode">Bar ordering mode</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderStackedBarSeries(Telerik.Charting.ChartSeriesType,Telerik.Charting.BarOrderingMode)">
            <summary>
            Rendering series for StackedBar - type chart
            </summary>
            <param name="seriesType">Series type</param>
            <param name="mode">Bar ordering mode</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.StrictParametersModifyForStackedBars(Telerik.Charting.ChartSeriesItem,System.Single,System.Int32@,System.Single@,System.Single@)">
            <summary>
            Modifications in StackedBars for strict mode
            </summary>
            <param name="item">Series item</param>
            <param name="barOverlapRatio">Bars overlap ratio</param>
            <param name="ind">Item index</param>
            <param name="barX">Bars x position</param>
            <param name="barWidthPop">Bar width</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.StrictParametersModifyForStackedBarsPositive(Telerik.Charting.ChartSeriesItem,System.Double,System.Single,System.Single,System.Single@,System.Single@,System.Double@,System.Double@)">
            <summary>
            Modifications in StackedBars (with positive values) for strict mode
            </summary>
            <param name="item">Series item</param>
            <param name="val">Series item value</param>
            <param name="barWidthLocal">Bar width</param>
            <param name="barOverlapRatio">Bars overlap ratio</param>
            <param name="barX">Bars x position</param>
            <param name="barWidthPop">Bar width</param>
            <param name="minV">Minimal value</param>
            <param name="tvalp">Total positive value</param>
            <returns>Value</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.StrictParametersModifyForStackedBarsNegative(Telerik.Charting.ChartSeriesItem,System.Double,System.Single,System.Single,System.Single@,System.Single@,System.Double@,System.Double@)">
            <summary>
            Modifications in StackedBars (with negatives values) for strict mode
            </summary>
            <param name="item">Series item</param>
            <param name="val">Series item value</param>
            <param name="barWidthLocal">Bar width</param>
            <param name="barOverlapRatio">Bars overlap ratio</param>
            <param name="barX">Bars x position</param>
            <param name="barWidthPop">Bar width</param>
            <param name="minV">Minimal value</param>
            <param name="tvaln">Total negative value</param>
            <returns>Value</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPointsArrayForArea(System.Drawing.PointF[])">
            <summary>
            Returns array of points
            </summary>
            <param name="areaPoints">Array of points</param>
            <returns>Array of points</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPointaArrayForAreaPointMarks(System.Drawing.PointF[],System.Int32)">
            <summary>
            Returns array of points for drawing points Marks
            </summary>
            <param name="areaPoints">Array of points</param>
            <param name="maxItemsCount">Items count</param>
            <returns>Array of points</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetAreaPath(Telerik.Charting.ChartSeries,System.Int32,System.Int32,System.Drawing.PointF[])">
            <summary>
            Create path for Area-type series
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
            <param name="maxItemsCount">Max items count</param>
            <param name="points">Array of points</param>
            <returns>Area path</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetAreaItemActiveRegion(System.Drawing.PointF,System.Drawing.PointF,System.Single,System.Single,Telerik.Charting.ChartSeriesOrientation)">
            <summary>
            Create ActiveRegion for Area-type series item
            </summary>
            <param name="firstPoint">Point for first item</param>
            <param name="secondPoint">Point for second item</param>
            <param name="prevValue1">Value of first item</param>
            <param name="prevValue2">Value of second item</param>
            <param name="serOrientation">Series Orientation</param>
            <returns>Path for active region</returns>
            <returns>Area item active region path</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderAreaSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for Area - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderStackedAreaSeries(Telerik.Charting.ChartSeriesType)">
            <summary>
            Rendering series for  StackedArea - type chart
            </summary>
            <param name="seriesType">Series type</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderLineSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for  Line - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderPieSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for  Pie - type chart
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderEmptyPoint(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem,System.Int32,System.Single)">
            <summary>
            Rendering Empty point
            </summary>
            <param name="series">Series</param>
            <param name="item">Series item</param>
            <param name="itemIndex">Series item index</param>
            <param name="axisStart">Axis start value</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderGanttSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for Gantt - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderPointSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for Point - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderPointLabelAndMarker(Telerik.Charting.ChartSeries,Telerik.Charting.ChartSeriesItem,System.Int32,System.Int32,System.Drawing.PointF)">
            <summary>
            Rendering point label and marker
            </summary>
            <param name="series">Series</param>
            <param name="item">Series item</param>
            <param name="index">Series index</param>
            <param name="itemIndex">Series item index</param>
            <param name="point">Point</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderBubbleSeries(Telerik.Charting.ChartSeries,System.Int32)">
            <summary>
            Rendering series for  Bubble - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RenderCandlestickSeries(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.BarOrderingMode)">
            <summary>
            Rendering series for  CandleStickr - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
            <param name="mode">Ordering mode</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.SeriesLabelsDraw">
            <summary>
            Rendering Series labels
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawPointMark(Telerik.Charting.ChartSeries,System.Drawing.PointF[])">
            <summary>
            Rendering point marks
            </summary>
            <param name="series">Series</param>
            <param name="points">Array of points</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.AxisVisibleValues(Telerik.Charting.ChartSeries,Telerik.Charting.ChartPlotArea)">
            <summary>
            Checking YAxis type for Series 
            </summary>
            <param name="series">Series</param>
            <param name="plotArea">PlotArea</param>
            <returns>YAxis Visible Values</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawLineShadow(System.Drawing.Pen,Telerik.Charting.ChartSeries,System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Rendering shadow for  Line - type chart
            </summary>
            <param name="shadowPen">Pen for shadow drawing</param>
            <param name="series">Series</param>
            <param name="path">Path</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.RemoveZerosFromEndOfList(System.Collections.Generic.List{System.Byte})">
            <summary>
            Removing unnecessary zeros from lists' end
            </summary>
            <param name="list">List</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawLines(Telerik.Charting.ChartSeries,System.Int32,System.Drawing.PointF[])">
            <summary>
            Rendering series for  Line - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
            <param name="points">Array of points</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawBezier(Telerik.Charting.ChartSeries,System.Int32,System.Drawing.PointF[])">
            <summary>
            Rendering series for  Bezier - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Serie index</param>
            <param name="points">Array of points</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawLinesForAreas(Telerik.Charting.ChartSeries,System.Int32,System.Drawing.PointF[])">
            <summary>
            Rendering lines for  Area - type chart
            </summary>
            <param name="series">Series</param>
            <param name="index">Series index</param>
            <param name="points">Array of points</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.DrawPolygon(Telerik.Charting.ChartSeries,System.Int32,System.Drawing.PointF[],System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Drawing2D.GraphicsPath)">
            <summary>
            Rendering polygon for area-types chart series
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetBrush(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem,System.Int32,System.Drawing.RectangleF)">
            <summary>
            Translate elements visual setting to Brush object
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
            <param name="item">Series item</param>
            <param name="itemIndex">Series item index</param>
            <param name="rect">Item rectangle</param>
            <returns>Brush</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetEmptyBrush(Telerik.Charting.ChartSeries,System.Drawing.RectangleF)">
            <summary>
            Gets the empty brush.
            </summary>
            <param name="series">The series.</param>
            <param name="rect">The rect.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetFillStyle(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem,System.Int32)">
            <summary>
            Translate elements visual setting to Fill
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series  index</param>
            <param name="item">Series item</param>
            <param name="itemIndex">Series item index</param>
            <returns>FillStyle</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetDefaultColors(Telerik.Charting.Styles.FillStyle,System.Int32)">
            <summary>
            Return a default color
            </summary>
            <param name="fillStyle">Fill style of elements</param>
            <param name="index">Elements(series or series item) index</param>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetLineStyle(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Translate elements visual setting to Pen object
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
            <param name="item">Series item</param>
            <returns>StyleBorder</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetPen(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Translate elements visual setting to Pen object
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
            <param name="item">Series item</param>
            <returns>Pen</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.GetEmptyPen(Telerik.Charting.ChartSeries,System.Int32,Telerik.Charting.ChartSeriesItem)">
            <summary>
            Returns empty Pen object
            </summary>
            <param name="series">Series</param>
            <param name="seriesIndex">Series index</param>
            <param name="item">Series item</param>
            <returns>Pen</returns>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.ResetClip">
            <summary>
            Drop clip area
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.SetOrderingMode">
            <summary>
            Set correct ordering mode for x axis
            </summary>
        </member>
        <member name="M:Telerik.Charting.RenderEngine.CheckCategoricalOrderingMode">
            <summary>
            Checking a series. Should be applied categorical x axis or not
            </summary>
            <returns>BarOrderingMode</returns>
        </member>
        <member name="P:Telerik.Charting.RenderEngine.ErrorMessageRendered">
            <summary>
            Checks if error message rendered
            </summary>
            <returns>Signal</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.AlignedPositions">
            <summary>
            Aligned positions listing
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.Right">
            <summary>
            Assign the right position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.Left">
            <summary>
            Assign the left position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.Top">
            <summary>
            Assign the top position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.Bottom">
            <summary>
            Assign the bottom position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.Center">
            <summary>
            Assign the center position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.TopRight">
            <summary>
            Assign the top right position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.TopLeft">
            <summary>
            Assign the top left position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.BottomRight">
            <summary>
            Assign the bottom right position for element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AlignedPositions.BottomLeft">
            <summary>
            Assign the bottom left position for element
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.AutoTextWrap">
            <summary>
            Define auto wrap option for text
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AutoTextWrap.Auto">
            <summary>
            Means that value of auto text wrap will be inherit of parent element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AutoTextWrap.True">
            <summary>
            Means that auto text wrap will be applied.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.AutoTextWrap.False">
            <summary>
            Means that auto text wrap will not be applied.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartAxisLayoutMode">
            <summary>
            Specifies different axis styles for positioning of item labels and marks.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisLayoutMode.Normal">
            <summary>
            Sets the default axis layout style.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisLayoutMode.Inside">
            <summary>
            Sets the endmost axis items inside the axis.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisLayoutMode.Between">
            <summary>
            Sets axis items between axis marks.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartAxisVisibility">
            <summary>
            Define visibility option for axis
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibility.Auto">
            <summary>
            Means that axis will be visible if it is XAxis or any series belongs to it.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibility.True">
            <summary>
            Means that axis will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibility.False">
            <summary>
            Means that axis will be not visible.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartAxisVisibleValues">
            <summary>
            Axis visible values range positive / negative
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibleValues.All">
            <summary>
            All values will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibleValues.Positive">
            <summary>
            Only positive values will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartAxisVisibleValues.Negative">
            <summary>
            Only negative values will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.None">
            <summary>
            Specifies that no default format string is specified. Uses CustomFormat if is .
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.Currency">
            <summary>
            Default format string is set to currency : "C". 
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.Scientific">
            <summary>
            Default format string is set to scientific : "E".
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.General">
            <summary>
            Default format string is set to general : "G".
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.Number">
            <summary>
            Default format string is set to number : "N".
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.Percent">
            <summary>
            Default format string is set to percent : "P".
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.ShortDate">
            <summary>
            Converts to short date using ShortDatePattern set in CurrentCulture. Uses CustomFormat if is set.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.ShortTime">
            <summary>
            Converts to short time using ShortTimePattern set in CurrentCulture. Uses CustomFormat if is set.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.LongDate">
            <summary>
            Converts to long date using LongDatePattern set in CurrentCulture. Uses CustomFormat if is set.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartValueFormat.LongTime">
            <summary>		
            Converts to long time using LongTimePattern set in CurrentCulture. Uses CustomFormat if is set.
            </summary>
        </member>
        <member name="T:Telerik.Charting.GradientElement">
            <summary>
            Gradient element
            </summary>
        </member>
        <member name="M:Telerik.Charting.GradientElement.#ctor">
            <summary>
            Create new instance of GradientElement class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.GradientElement.#ctor(System.Drawing.Color,System.Single)">
            <summary>
            Create new instance of GradientElement class.
            </summary>
            <param name="color">Color </param>
            <param name="position">Position</param>
        </member>
        <member name="M:Telerik.Charting.GradientElement.Reset">
            <summary>
            Reset to default parameters
            </summary>
        </member>
        <member name="M:Telerik.Charting.GradientElement.Equals(System.Object)">
            <summary>
            Comparing to objects
            </summary>
            <param name="obj">Object for comparing</param>
            <returns>Whether objects are equal or not</returns>
        </member>
        <member name="M:Telerik.Charting.GradientElement.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.GradientElement.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of GradientElement class with the same fields as this one</returns>
        </member>
        <member name="P:Telerik.Charting.GradientElement.Color">
            <summary>
            Gets and sets Color
            </summary>
            <value>Color</value>
        </member>
        <member name="P:Telerik.Charting.GradientElement.Position">
            <summary>
            Gets and sets Position
            </summary>
            <value>Position</value>
        </member>
        <member name="T:Telerik.Charting.ColorBlend">
            <summary>
            Defines arrays of elements and positions used for interpolating GradientElement blending in a multicolor gradient.
            </summary>
        </member>
        <member name="F:Telerik.Charting.ColorBlend.colorBlendContainerObject">
            <summary>
            Container element
            </summary>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor(System.Drawing.Color[])">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
            <param name="colors">Colors to add</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor(System.Drawing.Color[],System.Object)">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
            <param name="colors">Colors to add to the object</param>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor(System.Drawing.Color[],System.Single[],System.Object)">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
            <param name="colors">Colors to add to the object.</param>
            <param name="positions">Positions of colors.</param>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor(System.Drawing.Color[],System.Single[])">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
            <param name="colors">Colors to add to the object</param>
            <param name="positions">Positions of colors</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.#ctor(System.Object)">
            <summary>
            Create new instance of ColorBlend class.
            </summary>
            <param name="containerObject">Container element.</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.AddRange(Telerik.Charting.ColorBlend)">
            <summary>
            Adds a range of elements to the collection.
            </summary>
            <param name="blend">Object that contains element to add</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.LoadFrom(Telerik.Charting.ColorBlend)">
            <summary>
            Load pairs colors\positions from specified object.
            </summary>
            <param name="blend">Object to load from.</param>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.GetColors">
            <summary>
            Gets ColorBlend's colors.
            </summary>
            <returns>ColorBlend's colors.</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.GetPositions">
            <summary>
            Gets ColorBlend's positions.
            </summary>
            <returns>ColorBlend's positions.</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.GetColor(System.Single)">
            <summary>
            Gets color at specified position. 
            </summary>
            <param name="pos">Position to get color.</param>
            <returns>Color at specified position.</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.GetBrush(System.Drawing.RectangleF,System.Single)">
            <summary>
            Returns gradient brush
            </summary>
            <param name="rectangle">Rectangle of brush</param>
            <param name="angle">Angle of brush.</param>
            <returns>Gradient brush</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.Equals(System.Object)">
            <summary>
            Comparing two objects.
            </summary>
            <param name="obj">Object to compare.</param>
            <returns>Whether objects equal or not</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.Compare(Telerik.Charting.ColorBlend,Telerik.Charting.ColorBlend)">
            <summary>
            Color blends comparer
            </summary>
            <param name="a">First object for comparing</param>
            <param name="b">Second object for comparing</param>
            <returns>Whether objects equal or not</returns>
        </member>
        <member name="M:Telerik.Charting.ColorBlend.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of ColorBlend class with the same fields as this one.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.Corners">
            <summary>
            Sets the edge type of rectangular shapes.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Corners.cornersContainerObject">
            <summary>
            Container object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.#ctor(System.Object)">
            <summary>
            Create new instance of Corners class.
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.#ctor">
            <summary>
            Create new instance of Corners class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.#ctor(System.Int32)">
            <summary>
             Create new instance of Corners class.
            </summary>
            <param name="roundSize">RoundSize for coners</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.#ctor(Telerik.Charting.Styles.CornerType,Telerik.Charting.Styles.CornerType,Telerik.Charting.Styles.CornerType,Telerik.Charting.Styles.CornerType,System.Int32)">
            <summary>
             Create new instance of Corners class.
            </summary>
            <param name="topLeft">Type of top left corner</param>
            <param name="topRight">Type of top right corner</param>
            <param name="bottomLeft">Type of bottom left corner</param>
            <param name="bottomRight">Type of bottom right corner</param>
            <param name="roundSize">RoundSize of corners</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.op_Implicit(System.String)~Telerik.Charting.Styles.Corners">
            <summary>
            Implicitly creates a Corners from the specified string.
            </summary>
            <param name="value">The string to parse</param>
            <returns>Object of corners type</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.Parse(System.String)">
            <summary>
            Converts the specified string to Corners.
            </summary>
            <param name="value">The string to convert.</param>
            <returns>Corners that represents the specified string.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.Parse(System.String,System.Globalization.CultureInfo)">
            <summary>
            Converts the specified string to a Corners.
            </summary>
            <param name="value">The string to convert.</param>
            <param name="culture">CultureInfo used</param>
            <returns>Object of corners type</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.SetCornersType(Telerik.Charting.Styles.CornerType)">
            <summary>
            Set specified type for all corners
            </summary>
            <param name="cornerType">Type of corners</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.Equals(System.Object)">
            <summary>
            Compare two objects of Corners type
            </summary>
            <param name="obj">Object to compare with</param>
            <returns>Whether objects equal</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.GetHashCode">
             <summary>
            Gets  HashCode
             </summary>
             <returns>HashCode</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of Corners type</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.CopyFrom(Telerik.Charting.Styles.Corners)">
            <summary>
            Copy fields from specified object
            </summary>
            <param name="sourceCorners">Object to copy from</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Corners.Reset">
            <summary>
            Reset all settings to default
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.TopLeft">
            <summary>
            Gets and sets the type of the top left corner of the rectangular shape.
            </summary>
            <value>Type of top left corner</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.TopRight">
             <summary>
            Gets and sets the type of the top right corner of the rectangular shape.
             </summary>
             <value>Type of top right corner</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.BottomLeft">
            <summary>
            Gets and sets the type of the bottom left corner of the rectangular shape.
            </summary>
            <value>Type of bottom left corner</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.BottomRight">
            <summary>
            Gets and sets the type of the bottom right corner of the rectangular shape.
            </summary>
            <value>Type of bottom right corner</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.RoundSize">
             <summary>
             Gets and sets the round size of the corner.
             </summary>
            <value>Round size of corners</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Corners.IsRectangle">
            <summary>
            Check whether all corners are of Rectangle type.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Check whether can convert an object of the given type to the type of this converter, using the specified context
            </summary>
            <param name="context">Context for types converting</param>
            <param name="sourceType">Type to convert</param>
            <returns>Can convert an object or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Conversion of an object to the type of this converter
            </summary>
            <param name="context">Context for types converting</param>
            <param name="culture">To use at the current culture</param>
            <param name="value">Object to convert</param>
            <returns>Converted object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Conversion of an object to the specified type 
            </summary>
            <param name="context">Context for types converting</param>
            <param name="culture">To use at the current culture</param>
            <param name="value">Object to convert</param>
            <param name="destinationType">Type to convert  the value parameter to</param>
            <returns>converted object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Get Properties Supported
            </summary>
            <param name="context">Context</param>
            <returns>Properties Supported</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
            <summary>
            Gets Properties of type
            </summary>
            <param name="context">Context</param>
            <param name="value"></param>
            <param name="attributes"></param>
            <returns>Properties of this type</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Get Create Instance Supported
            </summary>
            <param name="context">Context</param>
            <returns>Get Create Instance Supported</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.CornersConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            Create new instance
            </summary>
            <param name="context">Context</param>
            <param name="propertyValues">Properties</param>
            <returns>New instance</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.CornerType">
            <summary>
            Corner type
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.CornerType.Rectangle">
            <summary>
            Specifies a sharp corner.
            </summary>  
        </member>
        <member name="F:Telerik.Charting.Styles.CornerType.Round">
            <summary>
            Specifies a rounded corner.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.CustomShape">
            <summary>Represents custom shape of an element.</summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ElementShape">
            <summary>Represents element shape. Base class for specialized shapes such as 
            EllipseShape, RoundRectShape, Office12Shape, etc. </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ElementShape.SerializeProperties">
            <summary>
            Serializes properties. Required for serialization mechanism of telerik
            framework.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ElementShape.DeserializeProperties(System.String)">
            <summary>
            Deserializes properties. Required for the deserialization mechanism of telerik
            framework.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShape.#ctor">
            <summary>Initializes a new instance of the CustomShape class.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShape.#ctor(System.ComponentModel.IContainer)">
            <summary>Initializes a new instance of the CustomShape class using a container.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShape.CreatePath(System.Drawing.Rectangle)">
            <summary>Creates a path using a ractangle for bounds.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShape.SerializeProperties">
            <summary>Serializes properties. Required for telerik serialization mechanism.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShape.DeserializeProperties(System.String)">
            <summary>Deserializes properties. Required for telerik deserialization mechanism.</summary>
        </member>
        <member name="P:Telerik.Charting.Styles.CustomShape.Points">
            <summary>Gets a List of Shape points.</summary>
        </member>
        <member name="P:Telerik.Charting.Styles.CustomShape.Dimension">
            <summary>Gets or sets a Rectangle indicating the dimension of the shape.</summary>
        </member>
        <member name="T:Telerik.Charting.Styles.RadShapeEditorControl">
            <summary>
            Represents a shape editor control.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.RadShapeEditorControl.components">
            <summary> 
            Required designer variable.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RadShapeEditorControl.Dispose(System.Boolean)">
            <summary> 
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.RadShapeEditorControl.InitializeComponent">
            <summary> 
            Required method for Designer support - do not modify 
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.CustomShapeEditorForm.components">
            <summary>
            Required designer variable.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShapeEditorForm.Dispose(System.Boolean)">
            <summary>
            Clean up any resources being used.
            </summary>
            <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.CustomShapeEditorForm.InitializeComponent">
            <summary>
            Required method for Designer support - do not modify
            the contents of this method with the code editor.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShapePoint">
            <summary>
            Represents a shape point.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShapePointBase">
            <summary>
            Represents a base class of the ShapePoint class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.#ctor">
            <summary>
            Initializes a new instance of the ShapePointbase class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.#ctor(System.Single,System.Single)">
            <summary>
            Initializes a new instance of the ShapePoint class using X and Y
            coordinates.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.#ctor(System.Drawing.Point)">
            <summary>
            Initializes a new instance of the ShapePoint class using a Point structure.
            </summary>
            <param name="point"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.#ctor(Telerik.Charting.Styles.ShapePointBase)">
            <summary>
            Initializes a new instance of the ShapePoint class using an instance of the
            ShapePointBase class.
            </summary>
            <param name="point"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.Set(System.Single,System.Single)">
            <summary>
            Sets the X and Y coordinates of the shape point.
            </summary>
            <param name="x"></param>
            <param name="y"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.Set(System.Drawing.Point)">
            <summary>
            Sets the point position from a Point structure.
            </summary>
            <param name="point"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.GetPoint">
            <summary>
            Retrieves a Point structure corresponding to the point position.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.GetPoint(System.Drawing.Rectangle)">
            <summary>
            
            </summary>
            <param name="bounds"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePointBase.ToString">
            <summary>
            Retrieves a string representation of the ShapePointBase class.
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePointBase.X">
            <summary>
            Gets or sets a float value indicating the X coordinate of the shape point.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePointBase.Y">
            <summary>
            Gets or sets a float value indicating the Y coordinate of the shape point.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePointBase.Anchor">
            <summary>
            Gets or sets a value indicating the anchor style.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePointBase.Locked">
            <summary>
            Gets or sets a boolean value indicating whether the shape point is locked.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.#ctor">
            <summary>
            Initializes a new instance of the ShapePoint class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.#ctor(System.Int32,System.Int32)">
            <summary>
            Initializes a new instance of the ShapePoint class from
            the X and Y coordinates of the point.
            </summary>
            <param name="x"></param>
            <param name="y"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.#ctor(System.Drawing.Point)">
            <summary>
            Initializes a new instance of the ShapePoint class from a Point structure.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.#ctor(Telerik.Charting.Styles.ShapePoint)">
            <summary>
            Initializes a new instance of the ShapePoint class using a ShapePoint instance.
            </summary>
            <param name="point"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.CreateBezier(Telerik.Charting.Styles.ShapePointBase)">
            <summary>
            Creates a Bezier curve between the current point and the point given as a
            parameter.
            </summary>
            <param name="nextPoint"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.GetCurve(Telerik.Charting.Styles.ShapePoint)">
            <summary>
            
            </summary>
            <param name="nextPoint"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.IsVisible(Telerik.Charting.Styles.ShapePoint,System.Drawing.Point,System.Int32)">
            <summary>
            
            </summary>
            <param name="nextPoint"></param>
            <param name="pt"></param>
            <param name="width"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShapePoint.IsCurveVisible(System.Drawing.Point[],System.Drawing.Point,System.Double)">
            <summary>
            
            </summary>
            <param name="points"></param>
            <param name="pt"></param>
            <param name="radius"></param>
            <returns></returns>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePoint.ControlPoint1">
            <summary>
            Gets or sets the first control point.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShapePoint.ControlPoint2">
            <summary>
            Gets or sets the second control point.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShapePoint.LineDirections">
            <summary>
            Exposes the line direction.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShapePoint.LinePositions">
            <summary>
            Exposes the line position.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShapePoint.LinePositions.Horizontal">
            <summary>
            Indicates horizontal position.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShapePoint.LinePositions.Vertical">
            <summary>
            Indicates vertical position.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ElementShapeConverter">
            <summary>Represents element shape converter.</summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ElementShapeEditor">
            <exclude/> 
        </member>
        <member name="T:Telerik.Charting.Styles.RoundRectShape">
            <summary>Represents round rectangle shape.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RoundRectShape.#ctor">
            <summary>Initializes a new instance of the RoundRectShape class.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RoundRectShape.#ctor(System.Int32)">
            <summary>Initializes a new instance of the RoundRectShape class using a radius.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RoundRectShape.CreatePath(System.Drawing.Rectangle)">
            <summary>Greates round rectangle like path.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RoundRectShape.SerializeProperties">
            <summary>Serializes properties. Required for telerik serialization mechanism.</summary>
        </member>
        <member name="M:Telerik.Charting.Styles.RoundRectShape.DeserializeProperties(System.String)">
            <summary>Deserializes properties. Required for telerik deserialization mechanism.</summary>
        </member>
        <member name="P:Telerik.Charting.Styles.RoundRectShape.Radius">
            <summary><para>Gets or sets the radius of the shape.</para></summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DefaultValues">
            <summary>
            Defaults
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Dimensions">
            <summary>
            Dimensions base class
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ISizesAndPaddings">
            <summary>
            Interface that sizable objects implement.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ISizesAndPaddings.AutoSize">
            <summary>
            Gets and sets auto size mode.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ISizesAndPaddings.Height">
            <summary>
            Gets and sets height value.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ISizesAndPaddings.Width">
            <summary>
            Gets and sets width value.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ISizesAndPaddings.Margins">
            <summary>
            Gets and sets margins.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ISizesAndPaddings.Paddings">
            <summary>
            Gets and sets paddings.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Dimensions.dimensionsMargins">
            <summary>
            Specifies the margins properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Dimensions.dimensionsPaddings">
            <summary>
            Specifies the paddings properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.ShouldSerializeHeight">
            <summary>
            Gets if Height property should be serializable.
            </summary>
            <returns>If Height property should be serializable.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.ResetHeight">
            <summary>
            Reset Height to default value.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.ShouldSerializeWidth">
            <summary>
            Gets if Width property should be serializable.
            </summary>
            <returns>If Width property should be serializable.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.ResetWidth">
            <summary>
            Gets if Width property should be serializable.
            </summary>
            <returns>If Width property should be serializable.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(System.Object)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor">
            <summary>
            Create new instance of Dimensions class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(System.Single,System.Single)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="width">Width of element</param>
            <param name="height">Height of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="width">Width of element</param>
            <param name="height">Height of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(Telerik.Charting.Styles.ChartMargins)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="margins">Margins of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(Telerik.Charting.Styles.ChartPaddings)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="paddings">Paddings of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.#ctor(Telerik.Charting.Styles.ChartMargins,Telerik.Charting.Styles.ChartPaddings)">
            <summary>
            Create new instance of Dimensions class.
            </summary>
            <param name="margins">Margins of element</param>
            <param name="paddings">Paddings of element</param>
        </member>
        <member name="F:Telerik.Charting.Styles.Dimensions.containerObject">
            <summary>
            Container element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Dimensions.dimensionsCopy">
            <summary>
            Copy of this object.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.Reset">
            <summary>
            Resets to default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.EqualsWithoutMarginsPaddings(System.Object)">
            <summary>
            Checks if objects are equal without margins and paddings.
            </summary>
            <param name="obj">Object to compare</param>
            <returns>If objects are equal without margins and paddings</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.SetDimensions(System.Single,System.Single)">
            <summary>
            Sets the new Width and Height values
            </summary>
            <param name="width">Width of element</param>
            <param name="height">Height of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.SetDimensions(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Sets the new Width and Height values
            </summary>
            <param name="width">Width of element</param>
            <param name="height">Height of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.SetDimensions(Telerik.Charting.Styles.Dimensions)">
            <summary>
            Copy dimensions from the object.
            </summary>
            <param name="source">Object tot copy from.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.Equals(System.Object)">
            <summary>
            Comparing of two objects.
            </summary>
            <param name="obj">Object to compare with.</param>
            <returns>Whether objects are equal.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.GetHashCode">
            <summary>
            Gets hash code.
            </summary>
            <returns>Hash code.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.IsZero">
            <summary>
            Returns True if dimensions width and height are zero values
            </summary>
            <returns>True if dimensions width and height are zero values</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of Dimensions class with the same fields as this object.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.TrackViewState">
            <summary>
            Track ViewState.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState.
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Dimensions.SaveViewState">
            <summary>
            Save data to ViewState.
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.AutoSize">
            <summary>
            Gets and sets Auto sizing mode
            </summary>
            <value>True if auto size, false - if not.</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.Height">
            <summary>
            Specifies the height property
            </summary>
            <value>Height value of Unit type.</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.Width">
            <summary>
            Specifies the width property
            </summary>
            <value>Width value of Unit type</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.Margins">
            <summary>
            Specifies the margins properties
            </summary>
            <value>Margins for element</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.Paddings">
            <summary>
            Specifies the paddings properties
            </summary>
            <value>Paddings for element</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Dimensions.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name.
            </summary>
            <param name="name">Name of property.</param>
            <returns>Value of property.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsSeriesPointMark">
            <summary>
            Specific series point marks dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.#ctor(System.Object)">
            <summary>
            Create new instance of DimensionsSeriesPointMark class.
            </summary>
            <param name="containerObject">Container element.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.#ctor">
            <summary>
             Create new instance of DimensionsSeriesPointMark class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.ResetHeight">
            <summary>
            Resets Height to default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.ResetWidth">
            <summary>
            Resets Width to default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.Reset">
            <summary>
            Resets to default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsSeriesPointMark.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of DimensionsSeriesPointMark class with the same fields as this object.</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsSeriesPointMark.Height">
            <summary>
            Specifies Height of element.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsSeriesPointMark.Width">
            <summary>
            Specifies Width of element.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsSeriesPointMark.Margins">
            <summary>
            Specifies margins of element.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsSeriesPointMark.Paddings">
            <summary>
            Specifies paddings of element.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsTitle">
            <summary>
            Chart title's dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsTitle.#ctor">
            <summary>
             Create new instance of DimensionsTitle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsTitle.Reset">
            <summary>
            Reset to default values.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsTitle.Margins">
            <summary>
            Specifies margins of element.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsTitle.Paddings">
            <summary>
            Specifies paddings of element.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsPlotArea">
            <summary>
            Default plot area's dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsPlotArea.#ctor">
            <summary>
            Create new instance of DimensionsPlotArea class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsPlotArea.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsPlotArea.Margins">
            <summary>
            Specifies margins of element.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsChart">
            <summary>
            Chart's dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsChart.ResetHeight">
            <summary>
            Reset Height to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsChart.ResetWidth">
            <summary>
            Reset Width to default settings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DimensionsChart.defWidth">
            <summary>
            Default height
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DimensionsChart.defHeight">
            <summary>
            Default width
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsChart.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsChart.Height">
            <summary>
            Specifies Height of element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsChart.Width">
            <summary>
            Specifies Width of element
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsLegend">
            <summary>
            Legend's dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsLegend.#ctor">
            <summary>
            Create new instance of DimensionsLegend
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsLegend.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsLegend.Margins">
            <summary>
            Specifies margins of element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsLegend.Paddings">
            <summary>
            Specified paddings of element
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsMarker">
            <summary>
            Marker's default dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.#ctor(System.Object)">
            <summary>
            Create new instance of DimensionsMarker class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.#ctor">
            <summary>
            Create new instance of DimensionsMarker class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.#ctor(System.Single,System.Single)">
            <summary>
            Create new instance of DimensionsMarker class.
            </summary>
            <param name="width">Width of element</param>
            <param name="height">Height of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.ResetHeight">
            <summary>
            Reset Height to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.ResetWidth">
            <summary>
            Reset Width to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsMarker.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsMarker.Paddings">
            <summary>
            Specifies paddings of element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsMarker.AutoSize">
            <summary>
            Gets and sets Auto size mode of element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsMarker.Height">
            <summary>
            Specifies height of element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsMarker.Width">
            <summary>
            Specifies width of element
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.DimensionsPointMarker">
            <summary>
            PointMark's default dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DimensionsPointMarker.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of DimensionsPointMarker class with the same fields as this object.</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.DimensionsPointMarker.Margins">
            <summary>
            Specifies margins of element
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.EmtyValuesMode">
            <summary>
            Empty values representation mode
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.EmptyValue">
            <summary>
            Empty value
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.EmptyValue.emptyValueMarker">
            <summary>
            Empty value point appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.EmptyValue.emptyValueLine">
            <summary>
            Line, Spline, Bezier series line style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.EmptyValue.emptyValueFillStyle">
            <summary>
            Specifies an empty bar fill style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.#ctor">
            <summary>
            Create new instance of EmptyValue class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.Reset">
            <summary>
            Reset all settings to default.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.Clone">
            <summary>
            Clone this object.
            </summary>
            <returns>New instance of the object EmptyValue with the same fields as this object has.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.TrackViewState">
            <summary>
            Track ViewState.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState.
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.SaveViewState">
            <summary>
            Save data to ViewState.
            </summary>
            <returns>Saved data.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.EmptyValue.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.Styles.EmptyValue.Mode">
            <summary>
            Gets and sets Empty values representation mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.EmptyValue.Line">
            <summary>
            Gets and sets Empty line style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.EmptyValue.PointMark">
            <summary>
            Gets and sets Empty value point mark 
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.EmptyValue.FillStyle">
            <summary>
             Specifies an empty bar fill style
            </summary>
        </member>
        <member name="T:Telerik.Charting.CustomFigure">
            <summary>
            User-defined figure
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomFigure.#ctor">
            <summary>
            Creates new instance of CustomFigure class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomFigure.#ctor(System.String,System.String)">
            <summary>
            Creates new instance of CustomFigure class.
            </summary>
            <param name="name">Name of figure</param>
            <param name="description">Data in string format used for figure creation</param>
        </member>
        <member name="M:Telerik.Charting.CustomFigure.ToString">
            <summary>
            Gets String representation
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="P:Telerik.Charting.CustomFigure.Name">
            <summary>
            Gets and sets Figure's name
            </summary>
            <value>Name of figure</value>
        </member>
        <member name="P:Telerik.Charting.CustomFigure.Description">
            <summary>
            Gets and sets Figure's source
            </summary>
            <value>Data in string format needed to restore object</value>
        </member>
        <member name="T:Telerik.Charting.CustomFiguresCollection">
            <summary>
            Custom figures collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.GetFigure(System.Int32)">
            <summary>
            Gets or sets a custom figures collection item.
            </summary>
            <param name="index">Index to get figure</param>
            <returns>Figure at specified index</returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.GetFigure(System.String)">
            <summary>
            Gets or sets a custom figures collection item.
            </summary>
            <param name="name">Name of figure to get</param>
            <returns>Figure with specified name</returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.Add(Telerik.Charting.CustomFigure)">
            <summary>
            Adds a custom figure to the collection.
            </summary>
            <param name="figure">Figure for adding</param>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.AddRange(Telerik.Charting.CustomFigure[])">
            <summary>
            Adds an array of figure items to the figures collection.
            </summary>
            <param name="figure">Figures for adding</param>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.Contains(System.String)">
            <summary>
            Indicates whether the specified figure item exists in the collection.
            </summary>
            <param name="figureName">Figure name</param>
            <returns>Whether the specified figure item exists in the collection or not</returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.IndexOf(System.String)">
            <summary>
            Returns the index of the specified figure item.
            </summary>
            <param name="figureName">Name of figure</param>
            <returns>Index of figure with specified name</returns>
        </member>
        <member name="M:Telerik.Charting.CustomFiguresCollection.Remove(System.String)">
            <summary>
            Removes figure with specified name
            </summary>
            <param name="figureName">Name of figure</param>
        </member>
        <member name="F:Telerik.Charting.Styles.DefaultFigures.Cross">
            <summary>
            Default figures' names
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DefaultFigures.FiguresList">
            <summary>
            List of default figures' names
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DefaultFigures.Contains(System.String)">
            <summary>
            Gets whether list contains figure with specified name
            </summary>
            <param name="name">Name of figure</param>
            <returns>Whether list contains figure with specified name or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.DefaultFigures.GetPath(System.String)">
            <summary>
            Get graphics path of figure with specified name
            </summary>
            <param name="name">Name of figure</param>
            <returns>Graphics path</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.DefaultFigures.CreateStarPath(System.Int32,System.Drawing.Rectangle,System.Single)">
            <summary>
            Create graphics path for star figure
            </summary>
            <param name="pointsCount">Count of points in star</param>
            <param name="rect">Rectangle of star figure</param>
            <param name="widthRatio">Ratio</param>
            <returns>Graphics path of star figure</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.FiguresCollection">
            <summary>
            Default figures
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FiguresCollection.figures">
            <summary>
            List of figures
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.#ctor">
            <summary>
            Create new instance of FiguresCollection class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.#ctor(Telerik.Charting.Chart)">
            <summary>
            Create new instance of FiguresCollection class.
            </summary>
            <param name="chart">Chart to add figures into collection</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.Add(System.Collections.Generic.List{Telerik.Charting.CustomFigure})">
            <summary>
            Add list of figures into collection
            </summary>
            <param name="list">List of figures</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.Add(System.String)">
            <summary>
            Add figure with specified name
            </summary>
            <param name="name">Name figure for adding</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.GetPath(System.String)">
            <summary>
            Gets graphics path of figure with specified name
            </summary>
            <param name="name">Name of figure</param>
            <returns>Graphics path</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FiguresCollection.GetPath(System.String,Telerik.Charting.Chart)">
            <summary>
            Gets graphics path of figure with specified name in chart's custom figures
            </summary>
            <param name="name">Name of figure</param>
            <param name="chart">Chart with custom figures</param>
            <returns>Graphics path</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.FiguresCollection.Figures">
            <summary>
            Gets list of figures
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.GradientFillStyle">
            <summary>
            Specifies the direction of a linear gradient.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillSettings">
            <summary>
            Fill settings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillSettings.fillSettingsComplexGradient">
            <summary>
            Specifies the blend colors for Gradient fill
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.#ctor(System.Object)">
            <summary>
            Create new instance of FillSettings class.
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.#ctor">
            <summary>
            Create new instance of FillSettings class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.#ctor(Telerik.Charting.Styles.GradientFillStyle,System.Single,Telerik.Charting.ColorBlend)">
            <summary>
            Constructor for FillSettings for the Linear gradient fill mode
            </summary>
            <param name="lgMode">Linear gradient fill mode</param>
            <param name="lgAngle">Linear gradient fill angle</param>
            <param name="blend">Specifies the blend colors for Gradient fill</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.#ctor(System.Drawing.Drawing2D.HatchStyle)">
            <summary>
            Constructor for FillSettings for the Hatch fill mode
            </summary>
            <param name="style">Hatch style</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.#ctor(Telerik.Charting.Styles.ImageDrawMode,System.String,Telerik.Charting.Styles.ImageAlignModes,Telerik.Charting.Styles.ImageTileModes)">
            <summary>
            Constructor for FillSettings for the Image fill mode
            </summary>
            <param name="idMode">Image mode</param>
            <param name="imageURL">Image path</param>
            <param name="aligneMode">Alignment of image</param>
            <param name="flip">Flip mode</param>
        </member>
        <member name="F:Telerik.Charting.Styles.FillSettings.fillSettingsContainerObject">
            <summary>
            Container element
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.GetImage(Telerik.Charting.Chart)">
            <summary>
            Get background image of chart
            </summary>
            <param name="chart">Chart to get image</param>
            <returns>Image from resources</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of FillSettings class with the same fields as this object.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.Equals(System.Object)">
            <summary>
            Comparing two objects.
            </summary>
            <param name="obj">Object for comparing</param>
            <returns>Whether objects are equal or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettings.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.GradientMode">
            <summary>
            Specifies the Linear gradient fill mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.GradientAngle">
            <summary>
            Specifies the Linear gradient fill angle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.ComplexGradient">
            <summary>
            Specifies the blend colors for Gradient fill
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.HatchStyle">
            <summary>
            Specifies the style of hatch fill type
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.ImageDrawMode">
            <summary>
            Specifies how image should be drawing
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.BackgroundImage">
            <summary>
            Specifies the URL of Image file
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.ImageAlign">
            <summary>
            Specifies the Image align mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.ImageFlip">
            <summary>
            Specifies the image flip settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettings.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.FillSettingsVerticalGradient">
            <summary>
            Vertical gradient default fill settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillSettingsVerticalGradient.Reset">
            <summary>
            Reset values to default
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillSettingsVerticalGradient.GradientMode">
            <summary>
            Specifies the Linear gradient fill mode
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyle">
            <summary>
            Fill style base class
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillStyle.fillStyleFillSettings">
            <summary>
            Fill settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor">
            <summary>
            Create new instance of FillStyle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Object)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Drawing.Color)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="mainColor">Main color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Drawing.Color,System.Drawing.Color)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="mainColor">Main color</param>
            <param name="secondColor">Second color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Drawing.Color,Telerik.Charting.Styles.FillType)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="mainColor">Main color</param>
            <param name="fillType">One of FillType values(Solid, Gradient, ComplexGradient, Image,Hatch)</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Drawing.Color,System.Drawing.Color,Telerik.Charting.Styles.FillType)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="mainColor">Main color</param>
            <param name="secondColor">Second color</param>
            <param name="fillType">One of FillType values(Solid, Gradient, ComplexGradient, Image,Hatch)</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.#ctor(System.Drawing.Color,System.Drawing.Color,Telerik.Charting.Styles.FillSettings,System.Boolean,Telerik.Charting.Styles.FillType)">
            <summary>
            Create new instance of FillStyle class.
            </summary>
            <param name="mainColor">Main color</param>
            <param name="secondColor">Second color</param>
            <param name="fillSettings">Fill settings</param>
            <param name="gammaCorrection">Specifies whether gamma correction should be used</param>
            <param name="fillType">One of FillType values(Solid, Gradient, ComplexGradient, Image,Hatch)</param>
        </member>
        <member name="F:Telerik.Charting.Styles.FillStyle.fillStyleContainerObject">
            <summary>
            Container element
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.Clone">
            <summary>
            Clone of this object
            </summary>
            <returns>New instance of FillStyle class with the same fields as this object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.Equals(System.Object)">
            <summary>
            Comparing of two objects
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Whether objects are equal or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyle.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.MainColor">
            <summary>
            Gets and sets the main color of figure background
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.SecondColor">
             <summary>
            Gets and sets the second color of figure background
             </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.FillSettings">
            <summary>
            Gets and sets fill settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.MainColorOpacity">
            <summary>
            Gets and sets the main color opacity coefficient
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.SecondColorOpacity">
             <summary>
            Gets and sets the second color opacity coefficient
             </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.GammaCorrection">
            <summary>
            Specifies whether gamma correction should be used
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.FillType">
            <summary>
            Specifies which of fill styles (Hatch, Solid, Image, Gradient) should be used
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyle.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets value of property by its name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyleSeries">
            <summary>
            Series fill style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillStyleSeries.Empty">
            <summary>
            FillStyleSeries with default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeries.#ctor">
            <summary>
            Create new instance of FillStyleSeries class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeries.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Create new instance of FillStyleSeries class.
            </summary>
            <param name="series">Container element(series)</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeries.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleSeries.MainColor">
            <summary>
            Gets or sets the color of the data series.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleSeries.SecondColor">
            <summary>
            Gets or sets the color of the data series.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyleSeriesPoint">
            <summary>
            Series points fill style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeriesPoint.#ctor(System.Object)">
            <summary>
            Create new instance of FillStyleSeriesPoint class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeriesPoint.#ctor">
            <summary>
            Create new instance of FillStyleSeriesPoint class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleSeriesPoint.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyleChart">
            <summary>
            Chart's background fill style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleChart.#ctor">
            <summary>
            Create new instance of FillStyleChart class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleChart.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleChart.FillType">
            <summary>
            Specifies which of fill styles (Hatch, Solid, Image, Gradient) should be used
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleChart.MainColor">
            <summary>
            Gets or sets the color of the data series.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStylePlotArea.#ctor">
            <summary>
            Create new instance of FillStylePlotArea class.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillStylePlotArea.defMainColor">
            <summary>
            Default value of Main color
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillStylePlotArea.defSecondColor">
            <summary>
            Default value of Second color
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStylePlotArea.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStylePlotArea.MainColor">
            <summary>
            Chart plot area main color
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStylePlotArea.SecondColor">
            <summary>
            Chart plot area second color
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStylePlotArea.FillType">
            <summary>
            Specifies which of fill styles (Hatch, Solid, Image, Gradient) should be used
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyleTitle">
            <summary>
            Title's background fill style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleTitle.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleTitle.MainColor">
            <summary>
            Chart title main color
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleTitle.FillType">
            <summary>
            Specifies which of fill styles (Hatch, Solid, Image, Gradient) should be used
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillStyleMarkedZones">
            <summary>
            Marked zone fill style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.FillStyleMarkedZones.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleMarkedZones.MainColor">
            <summary>
            Chart marked zone main color
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.FillStyleMarkedZones.FillType">
            <summary>
            Specifies which of fill styles (Hatch, Solid, Image, Gradient) should be used
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.FillType">
            <summary>
            Fill types listing
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillType.Solid">
            <summary>
            Element is filled by one color.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillType.Gradient">
            <summary>
            Element is filled by two color.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillType.ComplexGradient">
            <summary>
            Element is filled by colors at specified positions.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillType.Hatch">
            <summary>
            Element is filled by Hatch type(standard).
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.FillType.Image">
            <summary>
            Element is filled by image.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.Top">
            <summary>
            Image is located at Top of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.Bottom">
            <summary>
            Image is located at Bottom of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.Right">
            <summary>
            Image is located at Right of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.Left">
            <summary>
            Image is located at Left of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.Center">
            <summary>
            Image is located at Center of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.TopRight">
            <summary>
            Image is located at TopRight of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.TopLeft">
             <summary>
            Image is located at TopLeft of element.
             </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.BottomRight">
            <summary>
            Image is located at BottomRight of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageAlignModes.BottomLeft">
            <summary>
            Image is located at BottomLeft of element.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageDrawMode.Align">
            <summary>
            Image is aligned by specified alignment.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageDrawMode.Stretch">
            <summary>
            Stretch image. 
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageDrawMode.Flip">
            <summary>
            Flip image.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageTileModes.Flip">
            <summary>
            Fill element by image that repeats by X and Y.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageTileModes.FlipX">
            <summary>
            Fill element by image that flips by X.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageTileModes.FlipY">
            <summary>
            Fill element by image that flips by Y.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageTileModes.FlipXY">
            <summary>
            Fill element by image that flips by X and Y.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.IPosition">
            <summary>
            Interface that objects with position implement.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.IPosition.Position">
            <summary>
            Gets position.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.LabelItemsCompositionTypes">
            <summary>
            Specifies how marker and text block are situated related to each other.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelItemsCompositionTypes.ColumnImageText">
            <summary>
            Marker at left, TextBlock - at right
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelItemsCompositionTypes.ColumnTextImage">
            <summary>
            Marker at right, TextBlock - at left
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelItemsCompositionTypes.RowImageText">
            <summary>
            Marker at top, TextBlock - at bottom
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelItemsCompositionTypes.RowTextImage">
            <summary>
            Marker at bottom, TextBlock - at top
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelItemsCompositionTypes.None">
            <summary>
            Marker and TextBlock use Position-AlignedPosition. Default value.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.LayoutDecoratorBase">
            <summary>
            Base class for a chart Margins and Paddings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LayoutDecoratorBase.chartLayoutDecoratorBaseContainerObject">
            <summary>
            Container element
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor(System.Object)">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor(System.Object,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
            <param name="containerObject">Container element</param>
            <param name="top">Top side</param>
            <param name="right">Right side</param>
            <param name="bottom">Bottom side</param>
            <param name="left">Left side</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
            <param name="top">Top side</param>
            <param name="right">Right side</param>
            <param name="bottom">Bottom side</param>
            <param name="left">Left side</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
            <param name="top">Top side</param>
            <param name="right">Right side</param>
            <param name="bottom">Bottom side</param>
            <param name="left">Left side</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.#ctor(Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of LayoutDecoratorBase class.
            </summary>
            <param name="value">Value in pixels or percents of all sides</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.Reset">
            <summary>
            Reset to default settings.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.Reset(Telerik.Charting.Styles.Unit)">
            <summary>
            Set value in pixels or percents of all sides
            </summary>
            <param name="value">Value in pixels or percents of all sides</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.Equals(System.Object)">
            <summary>
            Checks whether objects are equal
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.op_Equality(Telerik.Charting.Styles.LayoutDecoratorBase,Telerik.Charting.Styles.LayoutDecoratorBase)">
            <summary>
            Operator comparing
            </summary>
            <param name="layoutDecoratorOne">First object for comparing</param>
            <param name="layoutDecoratorTwo">Second object for comparing</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.op_Inequality(Telerik.Charting.Styles.LayoutDecoratorBase,Telerik.Charting.Styles.LayoutDecoratorBase)">
            <summary>
            Operator not equal
            </summary>
            <param name="layoutDecoratorOne">First object for comparing</param>
            <param name="layoutDecoratorTwo">Second object for comparing</param>
            <returns>Whether objects are not equal</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance of LayoutDecoratorBase class with the same fields as this one</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutDecoratorBase.CopyFrom(Telerik.Charting.Styles.LayoutDecoratorBase)">
            <summary>
            Copy fields from object
            </summary>
            <param name="layoutDecorator">Object to copy from</param>
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutDecoratorBase.Left">
            <summary>
            Sets the left side in pixels or percents of the chart's width.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutDecoratorBase.Right">
            <summary>
            Sets the right side in pixels or percents of the chart's width.
            </summary> 
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutDecoratorBase.Top">
            <summary>
            Sets the top side in pixels or percents of the chart's height.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutDecoratorBase.Bottom">
            <summary>
            Sets the bottom side in pixels or percents of the chart's height.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.LayoutStyle">
            <summary>
            Base appearance settings for any element being calculated
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Style">
            <summary>
            Base style class
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Style.styleShadow">
            <summary>
            Specifies the shadowStyle property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Style.styleBorder">
            <summary>
            Specifies the border for style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Style.styleContainerObject">
            <summary>
            Style container object
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Style.styleChart">
            <summary>
            Chart style related to
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.#ctor(System.Object)">
            <summary>
            Creates new instance of Style class.
            </summary>
            <param name="containerObject">Container object element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.#ctor">
            <summary>
            Creates new instance of Style class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.#ctor(Telerik.Charting.Styles.StyleBorder)">
            <summary>
            Creates new instance of Style class.
            </summary>
            <param name="border">Style border</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.#ctor(Telerik.Charting.Styles.StyleBorder,System.Boolean)">
            <summary>
            Creates new instance of Style class.
            </summary>
            <param name="border">Style border</param>
            <param name="visible">Visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.#ctor(Telerik.Charting.Styles.StyleBorder,System.Boolean,Telerik.Charting.Styles.ShadowStyle)">
            <summary>
            Creates new instance of Style class.
            </summary>
            <param name="border">Style border</param>
            <param name="visible">Visibility</param>
            <param name="shadowStyle">Shadow style</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.IsVisible(System.Object)">
            <summary>
            Gets element visibility
            </summary>
            <param name="element">Element visibility to check</param>
            <returns>Visibility of the specified element</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.Reset">
            <summary>
            Reset settings to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.SetPixelValues(Telerik.Charting.IOrdering,Telerik.Charting.IContainer)">
            <summary>
            Set pixels value to width and height properties of element
            </summary>
            <param name="elem">Element to calculate pixel values</param>
            <param name="container">Container of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.SetPixelValues(Telerik.Charting.IOrdering,System.Single,System.Single)">
            <summary>
            Set pixels value to width and height properties of element
            </summary>
            <param name="elem">Element to calculate pixel values</param>
            <param name="contWidth">Container's width</param>
            <param name="contHeight">Container's height</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.SetPixelValues(Telerik.Charting.Styles.Dimensions,System.Single,System.Single)">
            <summary>
             Set pixels value to width and height properties of element's dimensions
            </summary>
            <param name="objDims">Element's dimensions</param>
            <param name="contWidth">Container's width</param>
            <param name="contHeight">Container's height</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.GetRealBounds(Telerik.Charting.Styles.Dimensions,System.Nullable{System.Single})">
            <summary>
            Calculate bounds of element depend on its rotation and previous dimensions
            </summary>
            <param name="dimensions">Dimensions of element</param>
            <param name="rotation">Rotation angle</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.GetStyleProperty(System.Object,Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value of element by name 
            </summary>
            <param name="element">Element to get property</param>
            <param name="propertyName">Property name</param>
            <returns>Property value of specified element</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState to load data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Style.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Style.Border">
            <summary>
            Specifies the border style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Style.Shadow">
            <summary>
            Specifies the shadow settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Style.Visible">
            <summary>
            Specifies visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Style.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Style.Chart">
            <summary>
            Specifies chart style related to
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LayoutStyle.position">
            <summary>
            Position of element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LayoutStyle.dimensions">
            <summary>
            Dimensions of element
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.#ctor(System.Object)">
            <summary>
            Creates new instance of LayoutStyle class.
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.#ctor(Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of LayoutStyle class.
            </summary>
            <param name="position">Position of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.#ctor(Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of LayoutStyle class.
            </summary>
            <param name="dimensions">Dimensions of element.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.#ctor(Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of LayoutStyle class.
            </summary>
            <param name="position">Position of element</param>
            <param name="dimensions">Dimensions of element.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.#ctor(Telerik.Charting.Styles.StyleBorder,System.Boolean,Telerik.Charting.Styles.ShadowStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of LayoutStyle class.
            </summary>
            <param name="border">Border of element</param>
            <param name="visible">Visibility of element</param>
            <param name="shadowStyle">Shadow</param>
            <param name="position">Position</param>
            <param name="dimensions">Dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState 
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LayoutStyle.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutStyle.Position">
            <summary>
            Specifies the elements Position property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.LayoutStyle.Dimensions">
            <summary>
            Specifies the elements Dimensions property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleBorder">
            <summary>
            Border style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleBorder.lineStyleContainerObject">
            <summary>
            Style container object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.IsVisible">
            <summary>
            Determines whether this instance is visible.
            </summary>
            <returns>
            	<c>true</c> if this instance is visible; otherwise, <c>false</c>.
            </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor(System.Object)">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor(System.Boolean)">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
            <param name="visible">Border visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor(System.Drawing.Color)">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
            <param name="color">Border color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor(System.Drawing.Color,System.Single)">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
            <param name="color">Border color</param>
            <param name="width">Border width</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.#ctor(System.Drawing.Color,System.Single,System.Drawing.Drawing2D.DashStyle)">
            <summary>
            Creates new instance of StyleBorder class
            </summary>
            <param name="color">Border color</param>
            <param name="width">Border width</param>
            <param name="penStyle">Border PenStyle</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.Equals(System.Object)">
            <summary>
            Compare two objects
            </summary>
            <param name="obj">Object tot compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleBorder.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Object with the same fields as this one</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleBorder.Color">
            <summary>
            Specifies the line color property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleBorder.PenStyle">
            <summary>
            Specifies the pen style property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleBorder.Width">
            <summary>
            Specifies the width property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleBorder.Visible">
            <summary>
            Visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleBorder.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.LineStyle">
            <summary>
            Common lines style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Object)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor">
            <summary>
            Creates new instance of LineStyle class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Boolean)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="visible">Line visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Drawing.Color)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="color">Line color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Drawing.Color,System.Single)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="color">Line color</param>
            <param name="width">Line width</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Drawing.Color,System.Single,System.Drawing.Drawing2D.DashStyle)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="color">Line color</param>
            <param name="width">Line width</param>
            <param name="penStyle">Line PenStyle</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.#ctor(System.Drawing.Color,System.Single,System.Drawing.Drawing2D.DashStyle,System.Drawing.Drawing2D.LineCap)">
            <summary>
            Creates new instance of LineStyle class
            </summary>
            <param name="color">Line color</param>
            <param name="width">Line width</param>
            <param name="penStyle">Line PenStyle</param>
            <param name="endCap">Line end cap</param>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.Equals(System.Object)">
            <summary>
            Compare two objects
            </summary>
            <param name="obj">Object tot compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.LineStyle.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Object with the same fields as this one</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.LineStyle.EndCap">
            <summary>
            Specifies the end cap property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.LineStyle.StartCap">
            <summary>
            Specifies the start cap property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.LineStyle.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLineSeries">
            <summary>
            Line series specific style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleLineSeries.tmpStyleLineSeriesColor">
            <summary>
            Line series color
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLineSeries.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLineSeries.Width">
            <summary>
            Gets or sets the width of the series line.
            </summary>
            <value>Width of line</value>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLineSeries.PenStyle">
            <summary>
            Gets or sets PenStyle of the series line
            </summary>
            <value>PenStyle of line</value>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLineSeries.IsEmptyLine">
            <summary>
            Checks if line belongs to StyleEmptyLineSeries class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLineSeries.Color">
            <summary>
            Gets or sets color of the series line
            </summary>
            <value>Color of line</value>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLineSeries.Visible">
            <summary>
            Line series visibility (same as Series.Visible)
            </summary>
            <value> Visibility of line</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleEmptyLineSeries">
            <summary>
            Empty Line series specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleEmptyLineSeries.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleEmptyLineSeries.Color">
            <summary>
            Gets or sets color of the series line
            </summary>
            <value>Color of line</value>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleEmptyLineSeries.PenStyle">
            <summary>
            Gets or sets PenStyle of the series line
            </summary>
            <value>PenStyle of line</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleSeriesBorder">
            <summary>
            Series border specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesBorder.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates new instance of StyleSeriesBorder class.
            </summary>
            <param name="series">Series object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesBorder.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesBorder.PenStyle">
            <summary>
            Gets or sets PenStyle of the series border
            </summary>
            <value>PenStyle of line</value>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesBorder.Color">
            <summary>
            Gets or sets color of the series border
            </summary>
            <value>Color of line</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTitleBorder">
            <summary>
            Title border specific style 
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLegendBorder">
            <summary>
            Legend border specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLegendBorder.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLegendBorder.Color">
            <summary>
            Gets and sets border color
            </summary>
            <value>Legend's border color</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleChartBorder">
            <summary>
            Chart border specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartBorder.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartBorder.Color">
            <summary>
            Gets and sets border color
            </summary>
            <value>Chart's border color</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleDataTableBorder">
            <summary>
            Data table's border specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleDataTableBorder.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleDataTableBorder.Color">
            <summary>
            Gets and sets border color
            </summary>
            <value>DataTable's border color</value>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleItemLabelConnector">
            <summary>
            Series item label connector line specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleItemLabelConnector.#ctor">
            <summary>
            Creates new instance of StyleItemLabelConnector class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleItemLabelConnector.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleItemLabelConnector.Color">
            <summary>
            Gets and sets item label connector's color
            </summary>
            <value>Item label connector'scolor</value>
        </member>
        <member name="T:Telerik.Charting.Styles.ScaleBreaksLineStyle">
            <summary>
            Scale breaks line specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ScaleBreaksLineStyle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ScaleBreaksLineStyle.Color">
            <summary>
            Gets and sets ScaleBreak's  color
            </summary>
            <value>ScaleBreak's color</value>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartMargins">
            <summary>
            Margins base class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor(System.Object)">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
            <param name="containerObject">Container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor(System.Object,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
            <param name="containerObject">Container object</param>
            <param name="top">Top margin in pixels or percents</param>
            <param name="right">Right margin in pixels or percents</param>
            <param name="bottom">Bottom margin in pixels or percents</param>
            <param name="left">Left margin in pixels or percents</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
            <param name="top">Top margin in pixels or percents</param>
            <param name="right">Right margin in pixels or percents</param>
            <param name="bottom">Bottom margin in pixels or percents</param>
            <param name="left">Left margin in pixels or percents</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
            <param name="top">Top margin in pixels</param>
            <param name="right">Right margin in pixels</param>
            <param name="bottom">Bottom margin in pixels</param>
            <param name="left">Left margin in pixels</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.#ctor(Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartMargins class.
            </summary>
            <param name="margin">Value to set for all margins</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.op_Implicit(System.String)~Telerik.Charting.Styles.ChartMargins">
            <summary>
            Implicitly creates a new instance of ChartMargins from the specified string.
            </summary>
            <param name="value">The string to parse</param>
            <returns>New instance of ChartMargins from the specified string</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.Parse(System.String)">
            <summary>
            Converts the specified string to an instance of ChartMargins.
            </summary>
            <param name="value">The string to convert from.</param>
            <returns>New instance of ChartMargins from the specified string</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMargins.Parse(System.String,System.Globalization.CultureInfo)">
            <summary>
            Converts the specified string to an instance of ChartMargins.
            </summary>
            <param name="value">The string to convert from.</param>
            <param name="culture">Culture info</param>
            <returns>New instance of ChartMargins from the specified string</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartMarginsTitle">
            <summary>
            Title's margins
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsTitle.#ctor">
            <summary>
            Creates new instance of ChartMarginsTitle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsTitle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsTitle.Right">
            <summary>
            Sets the right margin in pixels or percent of the chart's width.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsTitle.Top">
            <summary>
            Sets the top margin in pixels or percent of the chart's height.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsTitle.Bottom">
            <summary>
            Sets the bottom margin in pixels or percent of the chart's height.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsTitle.Left">
            <summary>
            Sets the left margin in pixels or percent of the chart's width.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartMarginsPlotArea">
            <summary>
            Plot area's margins
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsPlotArea.#ctor">
            <summary>
            Creates new instance of ChartMarginsPlotArea class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsPlotArea.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsPlotArea.Left">
            <summary>
            Sets the left margin in pixels or percent of the chart's width.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsPlotArea.Right">
            <summary>
            Sets the right margin in pixels or percent of the chart's width.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsPlotArea.Top">
            <summary>
            Sets the top margin in pixels or percent of the chart's height.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsPlotArea.Bottom">
            <summary>
            Sets the bottom margin in pixels or percent of the chart's height.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartMarginsLegend">
            <summary>
            Legend's margins
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsLegend.#ctor">
            <summary>
            Creates new instance of ChartMarginsLegend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartMarginsLegend.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartMarginsLegend.Right">
            <summary>
            Sets the right margin in pixels or percent of the chart's width.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Orientation.Horizontal">
            <summary>
            Specifies a horizontal drawing
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Orientation.Vertical">
            <summary>
            Specifies a vertical drawing
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Orientation.Undefined">
            <summary>
            Not set
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Overflow.Auto">
            <summary>
            Full auto resizing by contents
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Overflow.Row">
            <summary>
            Horizontal auto resizing by contents
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Overflow.Column">
            <summary>
            Vertical auto resizing by contents
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Overflow.Manual">
            <summary>
            No auto resizing
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartPaddings">
            <summary>
            Base paddings class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor(System.Object)">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor(System.Object,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
            <param name="containerObject">Container object</param>
            <param name="top">Top padding in pixels or percents</param>
            <param name="right">Right padding in pixels or percents</param>
            <param name="bottom">Bottom padding in pixels or percents</param>
            <param name="left">Left padding in pixels or percents</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
            <param name="top">Top padding in pixels or percents</param>
            <param name="right">Right padding in pixels or percents</param>
            <param name="bottom">Bottom padding in pixels or percents</param>
            <param name="left">Left padding in pixels or percents</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor(System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
            <param name="top">Top padding in pixels</param>
            <param name="right">Right padding in pixels</param>
            <param name="bottom">Bottom padding in pixels</param>
            <param name="left">Left padding in pixels</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.#ctor(Telerik.Charting.Styles.Unit)">
            <summary>
            Creates new instance of ChartPaddings class.
            </summary>
            <param name="margin">Value to set for all paddings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.op_Implicit(System.String)~Telerik.Charting.Styles.ChartPaddings">
            <summary>
            Implicitly creates an instance of ChartPaddings class from the specified string.
            </summary>
            <param name="value">The string to parse</param>
            <returns>Instance of ChartPaddings class from the specified string</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.Parse(System.String)">
            <summary>
            Converts the specified string to an instance of ChartPaddings class.
            </summary>
            <param name="value">The string to convert from.</param>
            <returns>Instance of ChartPaddings class from the specified string</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddings.Parse(System.String,System.Globalization.CultureInfo)">
            <summary>
            Converts the specified string to an instance of ChartPaddings class.
            </summary>
            <param name="value">The string to convert from.</param>
            <param name="culture">Culture info</param>
            <returns>Instance of ChartPaddings class from the specified string</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartPaddingsTitle">
            <summary>
            Chart title's paddings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddingsTitle.#ctor">
            <summary>
            Creates new instance of ChartPaddingsTitle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddingsTitle.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsTitle.Left">
            <summary>
            Specifies the left padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsTitle.Right">
            <summary>
            Specifies the right padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsTitle.Top">
            <summary>
            Specifies the top padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsTitle.Bottom">
            <summary>
            Specifies the bottom padding
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartPaddingsLegend">
            <summary>
            Chart title's paddings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddingsLegend.#ctor">
            <summary>
            Creates new instance of ChartPaddingsLegend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartPaddingsLegend.Reset">
            <summary>
            Reset to default values
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsLegend.Top">
            <summary>
            Specifies the top padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsLegend.Right">
            <summary>
            Specifies the right padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsLegend.Bottom">
            <summary>
            Specifies the bottom padding
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartPaddingsLegend.Left">
            <summary>
            Specifies the left padding
            </summary>
        </member>
        <member name="T:Telerik.Charting.CustomPalettesCollection">
            <summary>
            User-defined palettes collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.#ctor">
            <summary>
            Create new instance of CustomPalettesCollection class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.Contains(System.String)">
            <summary>
            Indicates whether the specified palette item exists in the collection.
            </summary>
            <param name="paletteName">Name of palette</param>
            <returns>Whether the specified palette item exists in the collection</returns>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.IndexOf(System.String)">
            <summary>
            Returns the index of the specified palette item.
            </summary>
            <param name="paletteName">Name of palette</param>
            <returns>Index of the specified palette item</returns>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.Remove(System.String)">
            <summary>
            Removes palette with specified name from collection
            </summary>
            <param name="paletteName">Name of palette</param>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.GetPalette(System.Int32)">
            <summary>
            Returns a reference to the Palette object at the specified index.
            </summary>
            <param name="index">Index to get palette</param>
            <returns>Palette at specified index</returns>
        </member>
        <member name="M:Telerik.Charting.CustomPalettesCollection.GetPalette(System.String)">
            <summary>
            Returns a reference to the Palette object by the specified name.
            </summary>
            <param name="name">Name of palette</param>
            <returns>Palette object with specified name</returns>
        </member>
        <member name="T:Telerik.Charting.Palette">
            <summary>
            Series color palette. Used for an automatic series items colors assignment
            </summary>
        </member>
        <member name="F:Telerik.Charting.Palette.paletteItems">
            <summary>
            Palette items collection that palette contains
            </summary>
        </member>
        <member name="M:Telerik.Charting.Palette.#ctor">
            <summary>
            Create new instance of Palette class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Palette.#ctor(System.String)">
            <summary>
            Create new instance of Palette class.
            </summary>
            <param name="name">Name of palette</param>
        </member>
        <member name="M:Telerik.Charting.Palette.#ctor(System.String,System.Drawing.Color[],System.Drawing.Color[])">
            <summary>
            Create new instance of Palette class.
            </summary>
            <param name="name">Name of palette</param>
            <param name="mainColors">Main colors of palette items</param>
            <param name="secondColors">Second colors of palette items</param>
        </member>
        <member name="M:Telerik.Charting.Palette.#ctor(System.String,Telerik.Charting.ColorBlend[])">
            <summary>
            Create new instance of Palette class.
            </summary>
            <param name="name">Name of Palette</param>
            <param name="addtionalColors">Additional colors of palette</param>
        </member>
        <member name="M:Telerik.Charting.Palette.#ctor(System.String,System.Drawing.Color[],System.Boolean)">
            <summary>
            Create new instance of Palette class.
            </summary>
            <param name="name">Name </param>
            <param name="colors">Colors of items</param>
            <param name="twoColors">If true than second and main colors are equal</param>
        </member>
        <member name="M:Telerik.Charting.Palette.FillItemsCollectionFromTwoArrays(System.Drawing.Color[],System.Drawing.Color[])">
            <summary>
            Fill items collection from two color arrays
            </summary>
            <param name="mainColors">Main colors of items</param>
            <param name="secondColors">Second color of items</param>
        </member>
        <member name="M:Telerik.Charting.Palette.GetPaletteItem(System.Int32)">
            <summary>
            Gets palette item with specified index
            </summary>
            <param name="index">Index where palette item should be get</param>
            <returns>Palette item</returns>
        </member>
        <member name="M:Telerik.Charting.Palette.ToString">
            <summary>
            Gets string representation
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="M:Telerik.Charting.Palette.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance with the same fields as this one</returns>
        </member>
        <member name="M:Telerik.Charting.Palette.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Palette.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState data</param>
        </member>
        <member name="M:Telerik.Charting.Palette.SaveViewState">
            <summary>
            Save data into ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Palette.Item(System.Int32)">
            <summary>
            Gets and sets Palette item at specified index
            </summary>
            <param name="index">Index to get palette item</param>
            <returns>Palette item at specified index</returns>
            <value>Palette item </value>
        </member>
        <member name="P:Telerik.Charting.Palette.Items">
            <summary>
            Gets Palette Items Collection
            </summary>
        </member>
        <member name="P:Telerik.Charting.Palette.Name">
            <summary>
            Specifies the palette name
            </summary>
            <value>Palette name</value>
        </member>
        <member name="T:Telerik.Charting.PaletteItem">
            <summary>
            Palette item
            </summary>
        </member>
        <member name="F:Telerik.Charting.PaletteItem.paletteItemAdditionalColors">
            <summary>
            Defines arrays of colors and positions used for interpolating color blending
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.#ctor">
            <summary>
            Create new instance of PaletteItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.#ctor(Telerik.Charting.ColorBlend)">
            <summary>
            Create new instance of PaletteItem class.
            </summary>
            <param name="additionalColors">Colors with positions</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.#ctor(System.String,Telerik.Charting.ColorBlend)">
            <summary>
             Create new instance of PaletteItem class.
            </summary>
            <param name="name">Name of item</param>
            <param name="additionalColors">Colors with positions</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.#ctor(System.String,System.Drawing.Color,System.Drawing.Color)">
            <summary>
             Create new instance of PaletteItem class.
            </summary>
            <param name="name">Name of item</param>
            <param name="mainColor">Main color of item</param>
            <param name="secondColor">Second color of item</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.#ctor(System.Drawing.Color,System.Drawing.Color)">
            <summary>
             Create new instance of PaletteItem class.
            </summary>
            <param name="mainColor">Main color of item</param>
            <param name="secondColor">Second color of item</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.Reset">
            <summary>
            Reset all settings to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.ToString">
            <summary>
            Gets string representation
            </summary>
            <returns>String representation</returns>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.SaveViewState">
            <summary>
            Save data into ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="M:Telerik.Charting.PaletteItem.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance with fields equal to these ones</returns>
        </member>
        <member name="P:Telerik.Charting.PaletteItem.AdditionalColors">
            <summary>
            Defines arrays of colors and positions used for interpolating color blending
            </summary>
        </member>
        <member name="P:Telerik.Charting.PaletteItem.MainColor">
            <summary>
            Specifies the main color for palette item
            </summary>
            <value>Main color of item</value>
        </member>
        <member name="P:Telerik.Charting.PaletteItem.SecondColor">
            <summary>
            Specifies the second color for palette item
            </summary>
            <value>Second color of item</value>
        </member>
        <member name="P:Telerik.Charting.PaletteItem.Name">
            <summary>
            Specifies the name for palette item
            </summary>
            <value>Name of item</value>
        </member>
        <member name="T:Telerik.Charting.PaletteItemsCollection">
            <summary>
            Palette items collection
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItemsCollection.#ctor">
            <summary>
            Create new instance of PaletteItemsCollection class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.PaletteItemsCollection.GetItem(System.Int32)">
            <summary>
            Gets Palette item at specified index
            </summary>
            <param name="index">Index to get palette item</param>
            <returns>Palette item at specified index</returns>
        </member>
        <member name="T:Telerik.Charting.PalettesCollection">
            <summary>
            Default palettes
            </summary>
        </member>
        <member name="F:Telerik.Charting.PalettesCollection.Palettes">
            <summary>
            Default color palettes listing
            </summary>
        </member>
        <member name="M:Telerik.Charting.PalettesCollection.#cctor">
            <summary>
            Creates object of PalettesCollection class
            </summary>
        </member>
        <member name="M:Telerik.Charting.PalettesCollection.GetPalette(System.String)">
            <summary>
            Returns default palette by name
            </summary>
            <param name="name">Name of palette</param>
        </member>
        <member name="M:Telerik.Charting.PalettesCollection.Contains(System.String)">
            <summary>
            Checks whether palette name exist in default palettes list
            </summary>
            <param name="name">Name of palette</param>
            <returns>Whether palette name exist in default palettes list or not</returns>
        </member>
        <member name="M:Telerik.Charting.PalettesCollection.GetPalette(System.String,Telerik.Charting.Chart)">
            <summary>
            Returns custom palette by name
            </summary>
            <param name="name">Name of palette</param>
            <param name="chart">Chart to get custom palettes</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Charting.Styles.PlacementDirection">
            <summary>
            Direction of label position in auto mode
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.PlacementDirection.Horizontal">
            <summary>
            Horizontal label's direction
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.PlacementDirection.Vertical">
            <summary>
            Vertical label's direction
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Position">
            <summary>
            Represents the element position in the container
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Position.positionGlobalX">
            <summary>
            Contains elements' calculated position X for speed optimization
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Position.positionGlobalY">
            <summary>
            Contains elements' calculated position Y for speed optimization
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Position.requireCalculation">
            <summary>
            Contains True if calculation of Positions is needed
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Position.positionCopy">
            <summary>
            Copy of positions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.ShouldSerializeX">
            <summary>
            Manages design-time serialization of X
            </summary>
            <returns>True if value should be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.ResetX">
            <summary>
            Reset X coordinate to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.ShouldSerializeY">
            <summary>
            Manages design-time serialization of Y
            </summary>
            <returns>True if value should be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.ResetY">
            <summary>
            Reset Y coordinate to default
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.#ctor(System.Object)">
            <summary>
            Creates an instance of Position class.
            </summary>
            <param name="container">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.#ctor">
            <summary>
            Creates an instance of Position class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.#ctor(System.Single,System.Single)">
            <summary>
            Creates an instance of Position class.
            </summary>
            <param name="x">X coordinate</param>
            <param name="y">Y coordinate</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.#ctor(Telerik.Charting.Styles.AlignedPositions)">
            <summary>
            Creates an instance of Position class.
            </summary>
            <param name="position">Aligned position of element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.#ctor(Telerik.Charting.Styles.AlignedPositions,System.Single,System.Single)">
            <summary>
            Creates an instance of Position class.
            </summary>
            <param name="position">Aligned position of element</param>
            <param name="x">X coordinate</param>
            <param name="y">Y coordinate</param>
        </member>
        <member name="F:Telerik.Charting.Styles.Position.positionContainerObject">
            <summary>
            Container element
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.ResetGlobal">
            <summary>
            Resets the cached position
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.SetPositionForAutoLayout">
            <summary>
            Aligned Positions correction for AutoLayout
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.Equals(System.Object)">
            <summary>
            Determines whether the specified System.Object is equal to the current System.Object.
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Position.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsTop">
            <summary>
            Defines if position is Top (Top, TopLeft, TopRight, None)
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsBottom">
            <summary>
            Defines if position is Bottom (Bottom, BottomLeft, BottomRight)
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsLeft">
            <summary>
            Defines if position is Left (Left, BottomLeft, TopLeft)
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsRight">
            <summary>
            Defines if position is Right (Right, TopRight, BottomRight)
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsNone">
            <summary>
            Defines if position is None
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.Copy">
            <summary>
            Gets and sets copy of positions
            </summary>
            <value>Positions to copy</value>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.Auto">
            <summary>
            Automatic positioning
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.X">
            <summary>
            Specifies the X coordinate of the figure position
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.Y">
            <summary>
            Specifies the Y coordinate of the figure position
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets value of property by name
            </summary>
            <param name="name">Property name</param>
            <returns>Object</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.GlobalX">
            <summary>
            Gets and sets X calculated position used for speed optimization
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.GlobalY">
            <summary>
            Gets and sets Y calculated position used for speed optimization
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Position.IsSetGlobal">
            <summary>
            Defines whether position coordinates were already calculated
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionCenter">
            <summary>
            Specific Position object with predefined AlignedPosition.Center
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionCenter.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionCenter.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionTop">
            <summary>
            Specific Position object with predefined AlignedPosition.Top
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionTop.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionTop.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionBottom">
            <summary>
            Specific Position object with predefined AlignedPosition.Bottom
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionBottom.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionBottom.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionTopLeft">
            <summary>
            Specific Position object with predefined AlignedPosition.TopLeft
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionTopLeft.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionTopLeft.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionRight">
            <summary>
            Specific Position object with predefined AlignedPosition.Right
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionRight.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionRight.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionTopRight">
            <summary>
            Specific Position object with predefined AlignedPosition.TopRight
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionTopRight.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionTopRight.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.PositionLeft">
            <summary>
            Specific Position object with predefined AlignedPosition.Left
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PositionLeft.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.PositionLeft.AlignedPosition">
            <summary>
            Specifies aligned position in comprehensive figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.SkinnablePropertyAttribute">
            <summary>
            Represents the custom property attribute used to mark property as skinable and being used with a skin application
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.SkinnablePropertyAttribute.isSkinnable">
            <summary>
            Defines whether attribute is skinable
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.SkinnablePropertyAttribute.#ctor">
            <summary>
            Create new instance of SkinnablePropertyAttribute class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.SkinnablePropertyAttribute.IsSkinnable">
            <summary>
            Gets whether attribute is skinable
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSerializer.xmlDoc">
            <summary>
            XML document to save and load style data
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSerializer.processAll">
            <summary>
            Should serialize all properties or only that have skinable property attributes 
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.SaveXMLString(System.Object)">
            <summary>
            Save specified object to XML
            </summary>
            <param name="styleContainer">Object which properties should be save to XML</param>
            <returns>Saved XML text</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.Serialize(System.Object)">
            <summary>
            Serialize properties to XML
            </summary>
            <param name="styleContainer">Object which properties should be save to XML</param>
            <returns>Elemnt created in XML</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.Serialize(System.Object,System.String)">
            <summary>
            Serialize properties to XML
            </summary>
            <param name="styleContainer">Object which properties should be save to XML</param>
            <param name="elementName">Name that created element in XML should have</param>
            <returns>Elemnt created in XML</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.SerializeProperty(System.ComponentModel.PropertyDescriptor,System.Xml.XmlElement,System.Object)">
            <summary>
            Serialize specified property to XML
            </summary>
            <param name="propDescriptor">Abstraction of property style</param>
            <param name="propElement">Parent element</param>
            <param name="styleContainer">Object which properties should be save to XML</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.SerializeComplexObject(System.ComponentModel.PropertyDescriptor,System.Xml.XmlElement,System.Object)">
            <summary>
            Serialize complex object
            </summary>
            <param name="propDescriptor">Abstraction of property style</param>
            <param name="propElement">Parent element</param>
            <param name="styleContainer">Object which properties should be save to XML</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.LoadXMLString(System.String,System.Object)">
            <summary>
            Load elements and properties from XML
            </summary>
            <param name="xmlString">String that contains XML representation of the object</param>
            <param name="styleContainer">Object which properties should be load from XML</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.Deserialize(System.Xml.XmlElement,System.Object)">
            <summary>
            Deserialize element from XML
            </summary>
            <param name="rootElement">Root element</param>
            <param name="styleContainer">Object which properties should be load from XML</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.DeserializeProperty(System.ComponentModel.PropertyDescriptor,System.Xml.XmlElement,System.Object)">
            <summary>
            Deserialize property from XML
            </summary>
            <param name="propDescriptor">Abstraction of property on a one of styles class</param>
            <param name="propElement">Property element that should be deserialized</param>
            <param name="styleContainer">Object which properties should be load from XML</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.DeserializeColorBlend(System.Xml.XmlElement,Telerik.Charting.ColorBlend,System.Int32)">
            <summary>
            Deserialize element of ColorBlend type
            </summary>
            <param name="rootElement">Root element</param>
            <param name="colorBlend">ColorBlend object</param>
            <param name="index">High index limit for which deserialization should take place</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.IsDefaultValue(System.ComponentModel.PropertyDescriptor,System.Object)">
            <summary>
            Checks if property has default value
            </summary>
            <param name="propDescriptor">Abstraction of property on a one of styles class</param>
            <param name="styleContainer">Style container object</param>
            <returns>Whether property has default value or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.GetDefaultPropertyValue(System.ComponentModel.PropertyDescriptor)">
            <summary>
            Gets the default value for specified property 
            </summary>
            <param name="propDescriptor">Abstraction of property on a one of styles class</param>
            <returns>Default value</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSerializer.GetPropertyValue(System.ComponentModel.PropertyDescriptor,System.Object)">
            <summary>
            Gets the default value for specified property 
            </summary>
            <param name="propDescriptor">Abstraction of property on a one of styles class</param>
            <param name="styleContainer">Style container object</param>
            <returns>Default value</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSerializer.XmlDoc">
            <summary>
            Gets and sets XML document
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSerializer.ProcessAllProperties">
             <summary>
            Should serialize all properties or only that have skinable property attributes 
             </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShadowStyle">
            <summary>
            Shadow settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.#ctor">
            <summary>
            Create new instance of ShadowStyle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.#ctor(System.Drawing.Color,System.Single,System.Single,Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Create new instance of ShadowStyle class.
            </summary>
            <param name="shadowColor">Shadow color</param>
            <param name="shadowBlur">Shadow blur</param>
            <param name="shadowDistance">Shadow distance</param>
            <param name="shadowPosition">Shadow position</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.Equals(System.Object)">
            <summary>
            Comparing of two objects
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyle.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>New instance with the same fields as this one</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyle.Color">
            <summary>
            Specifies the shadow color property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyle.ColorOpacity">
            <summary>
            The main color opacity coefficient
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyle.Position">
            <summary>
            Specifies the shadow position property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyle.Blur">
            <summary>
            Specifies the shadow blur property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyle.Distance">
            <summary>
            Specifies the shadow distance property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShadowStyleChart">
            <summary>
            Common shadow settings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowStyleChart.chart">
            <summary>
            Chart shadow related to
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyleChart.#ctor(Telerik.Charting.Chart)">
            <summary>
            Create new instance of ShadowStyleChart class.
            </summary>
            <param name="parent">Parent chart element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyleChart.SetShadowBlur(System.Single)">
            <summary>
            Sets blur for all chart elements
            </summary>
            <param name="blur">Blur to set</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyleChart.SetShadowPosition(Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Sets position for all chart elements
            </summary>
            <param name="position">Position to set</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyleChart.SetShadowDistance(System.Single)">
            <summary>
            Sets distance for all chart elements
            </summary>
            <param name="distance">Distance to set</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowStyleChart.SetShadowColor(System.Drawing.Color)">
            <summary>
            Sets color for all chart elements
            </summary>
            <param name="color">Color to set</param>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyleChart.Blur">
            <summary>
            Specifies the shadow blur property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyleChart.Color">
            <summary>
            Specifies the shadow color property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyleChart.Distance">
            <summary>
            Specifies the shadow distance property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.ShadowStyleChart.Position">
            <summary>
            Specifies the shadow position property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ShadowManager">
            <summary>
            Shadow rendering support class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawLineShadow(Telerik.Charting.ChartGraphics,System.Drawing.Pen,System.Drawing.PointF[],System.Int32,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color,System.Single,Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Draw shadow for line
            </summary>
            <param name="graphics">Chart graphics object</param>
            <param name="pen">Pen used for line shadow</param>
            <param name="points">Points that create line's path</param>
            <param name="lineType">Type of line(0-Line, 1-Bezier, 2-Spline)</param>
            <param name="lineWidth">Width of line</param>
            <param name="pa_width">PlotArea's width</param>
            <param name="pa_height">PlotArea's height</param>
            <param name="shadowDistance">Shadow's distance</param>
            <param name="shadowColor">Shadow's color</param>
            <param name="shadowBlur">Shadow's blur</param>
            <param name="shadowPosition">Shadow's position type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawLineShadow(Telerik.Charting.ChartGraphics,System.Drawing.Pen,System.Drawing.Drawing2D.GraphicsPath,System.Int32,System.Int32,System.Int32,System.Int32,System.Drawing.Color,System.Single,Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Draw shadow for line
            </summary>
            <param name="graphics">Chart graphics object</param>
            <param name="pen">Pen used for line shadow</param>
            <param name="path">Line's path</param>
            <param name="lineWidth">Line's width</param>
            <param name="pa_width">PlotArea's width</param>
            <param name="pa_height">PlotArea's height</param>
            <param name="shadowDistance">Shadow's distance</param>
            <param name="shadowColor">Shadow's color</param>
            <param name="shadowBlur">Shadow's blur</param>
            <param name="shadowPosition">Shadow's position type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.SetShadowPosition(Telerik.Charting.Styles.ShadowPosition,System.Drawing.PointF,System.Single)">
            <summary>
            Set shadow start point position by shadowPosition parameter and shadowDistance 
            </summary>
            <param name="position">Shadow's position type</param>
            <param name="point">Calculated shadow position</param>
            <param name="shadowDistance">Shadow's distance</param>
            <returns>Corrected shadow position depended on distance and position type</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawPolygonShadow(Telerik.Charting.ChartSeries,System.Drawing.Drawing2D.GraphicsPath,Telerik.Charting.ChartGraphics,System.Int32,System.Int32)">
            <summary>
            Draws shadow for polygon
            </summary>
            <param name="chartSeries">ChartSeries that contains shadow style</param>
            <param name="grPath">Garphics path of polygon</param>
            <param name="graphics">ChartGraphics object</param>
            <param name="width">PlotArea's width</param>
            <param name="height">PlotArea's height</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawPolygonShadow(Telerik.Charting.ChartSeries,System.Drawing.PointF[],Telerik.Charting.ChartGraphics,System.Int32,System.Int32)">
            <summary>
            Draw shadow for polygon
            </summary>
            <param name="chartSeries">ChartSeries that contains shadow style</param>
            <param name="points">Points that form polygon</param>
            <param name="graphics">ChartGraphics object</param>
            <param name="width">PlotArea's width</param>
            <param name="height">PlotArea's height</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawPolygonShadow(System.Drawing.Drawing2D.GraphicsPath,Telerik.Charting.ChartGraphics,System.Int32,System.Int32,System.Int32,System.Drawing.Color,System.Single,Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Draw shadow for polygon
            </summary>
            <param name="grPath">Garphics path of polygon</param>
            <param name="graphics">ChartGraphics object</param>
            <param name="width">PlotArea's width</param>
            <param name="height">PlotArea's height</param>
            <param name="shadowDistance">Shadow's distance</param>
            <param name="shadowColor">Shadow's color</param>
            <param name="shadowBlur">Shadow's blur</param>
            <param name="shadowPosition">Shadow's position type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawPolygonShadow(System.Drawing.PointF[],Telerik.Charting.ChartGraphics,System.Int32,System.Int32,System.Int32,System.Drawing.Color,System.Single,Telerik.Charting.Styles.ShadowPosition)">
            <summary>
            Draw shadow for polygon
            </summary>
            <param name="points">Points that form polygon</param>
            <param name="graphics">ChartGraphics object</param>
            <param name="width">PlotArea's width</param>
            <param name="height">PlotArea's height</param>
            <param name="shadowDistance">Shadow's distance</param>
            <param name="shadowColor">Shadow's color</param>
            <param name="shadowBlur">Shadow's blur</param>
            <param name="shadowPosition">Shadow's position type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.DrawShadow(System.Drawing.Drawing2D.GraphicsPath,System.Drawing.Brush,System.Drawing.Pen,System.Single,System.Single,System.Drawing.Size,Telerik.Charting.Styles.DrawType)">
            <summary>
            Method creates shadow for path, based on shadow parameters and Gaussian blur logic for render shadow
            </summary>
            <param name="Path">Path, that describe a figure</param>
            <param name="Brush">Brush, that used for drawing a shadow (define shadow color and transparency)</param>
            <param name="Pen">Pen, that used for drawing a shadow</param>
            <param name="Distance">Distance from object to it shadow</param>
            <param name="BlurCoef">Blur coefficient</param>
            <param name="ShadowImageSize">Size for image, that contain shadow</param>
            <param name="DrawType">Draw figure type</param>
            <returns>Image that contains shadow with blur</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.GetArrayFromImageManaged(System.Drawing.Bitmap,System.Int32,System.Int32)">
            <summary>
            Creates pixels array from image using managed code
            </summary>
            <param name="source">Source bitmap to get pixels</param>
            <param name="wi">Weight of bitmap</param>
            <param name="hi">Height of bitmap</param>
            <returns>Pixels colors</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.GetArrayFromImageUnManaged(System.Drawing.Imaging.BitmapData,System.Int32,System.Int32)">
            <summary>
            Creates pixels array from image using unmanaged code
            </summary>
            <param name="bmpData">Data about bitmap locked in memory</param>
            <param name="wi">Weight of bitmap</param>
            <param name="hi">Height of bitmap</param>
            <returns>Pixels colors</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.GetArrayFromImage(System.Drawing.Bitmap,System.Drawing.Imaging.BitmapData,System.Int32,System.Int32,System.Boolean)">
            <summary>
            Creates pixels array from image
            </summary>
            <param name="source">Source bitmap to get pixels</param>
            <param name="bmpData">Data about bitmap locked in memory</param>
            <param name="wi">Weight of bitmap</param>
            <param name="hi">Height of bitmap</param>
            <param name="isGranted">Can unmanaged code be used</param>
            <returns>Pixels colors</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.UpdateImageFromArray(System.Drawing.Bitmap,Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.Styles.BColor[],System.Int32,System.Int32,System.Drawing.Imaging.BitmapData,System.Boolean)">
            <summary>
            Updates image from pixels array
            </summary>
            <param name="source">Source bitmap to get pixels</param>
            <param name="src">Pixels colors</param>
            <param name="top">Blur top point</param>
            <param name="height">Blur height</param>
            <param name="left">Blur left point</param>
            <param name="width">Blur width</param>
            <param name="dst">Pixels colors as one-dimensioned array</param>
            <param name="srcWidth">Weight of bitmap</param>
            <param name="srcHeight">Height of bitmap</param>
            <param name="bmpData">Data about bitmap locked in memory</param>
            <param name="isGranted">Can unmanaged code be used</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.UpdateImageFromArrayManaged(System.Drawing.Bitmap,Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.Styles.BColor[],System.Int32,System.Int32)">
            <summary>
            Updates image from pixels array using managed code
            </summary>
            <param name="source">Source bitmap to get pixels</param>
            <param name="src">Pixels colors</param>
            <param name="top">Blur top point</param>
            <param name="height">Blur height</param>
            <param name="left">Blur left point</param>
            <param name="width">Blur width</param>
            <param name="dst">Pixels colors as one-dimensioned array</param>
            <param name="srcWidth">Weight of bitmap</param>
            <param name="srcHeight">Height of bitmap</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.UpdateImageFromArrayUnManaged(System.Drawing.Bitmap,Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.Styles.BColor[],System.Int32,System.Int32,System.Drawing.Imaging.BitmapData)">
            <summary>
            Updates image from pixels array using unmanaged code
            </summary>
            <param name="source">Source bitmap to get pixels</param>
            <param name="src">Pixels colors</param>
            <param name="top">Blur top point</param>
            <param name="height">Blur height</param>
            <param name="left">Blur left point</param>
            <param name="width">Blur width</param>
            <param name="dst">Pixels colors as one-dimensioned array</param>
            <param name="srcWidth">Weight of bitmap</param>
            <param name="srcHeight">Height of bitmap</param>
            <param name="bmpData">Data about bitmap locked in memory</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.Blur(System.Drawing.Bitmap,System.Int32,System.Drawing.Rectangle)">
            <summary>
            Gaussian blur algorithm for bitmap image
            </summary>
            <param name="source">Image, that can be degraded</param>
            <param name="blurCoefficient">Blur coefficient</param>
            <returns>Degraded bitmap</returns>
            <param name="rect">Blur rectangle</param>
            <returns>Blur image</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.GBlurRow(System.Int32)">
            <summary>
            Support function for blur, generate one dimensional array with coefficients
            </summary>
            <param name="count">Blur coefficient</param>
            <returns>Array with blur coefficients</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ShadowManager.SetMatrix(System.Drawing.Bitmap,Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.Styles.BColor[],System.Int32,System.Int32)">
            <summary>
            Sets pixels colors to image
            </summary>
            <param name="source">Image to set pixels colors</param>
            <param name="src">Pixels colors as two-dimensioned array</param>
            <param name="top">Blur top point</param>
            <param name="height">Blur height</param>
            <param name="left">Blur left point</param>
            <param name="width">Blur width</param>
            <param name="dst">Pixels colors as one-dimensioned array</param>
            <param name="srcWidth">Image width</param>
            <param name="srcHeight">Image height</param>
        </member>
        <member name="T:Telerik.Charting.Styles.DrawType">
            <summary>
            Types for drawing figures
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DrawType.Line">
            <summary>
            Only lines
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DrawType.Fill">
            <summary>
            Only fills
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.DrawType.LineAndFill">
            <summary>
            Lines and fills
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.BColor">
            <summary>
            Describe a 4-byte color and functionality that works with color and byte arrays
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.BColor.R">
            <summary>
            Red channel
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.BColor.G">
            <summary>
            Green channel
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.BColor.B">
            <summary>
            Blue channel
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.BColor.A">
            <summary>
            Alpha (transparency) channel
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.CreateInstance(System.Byte,System.Byte,System.Byte,System.Byte)">
            <summary>
            Create new instance of BColor class 
            </summary>
            <param name="r">Red component</param>
            <param name="g">Green component</param>
            <param name="b">Blue component</param>
            <param name="a">Transparency channel</param>
            <returns>New instance of BColor class </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.CreateInstance">
            <summary>
            Create new instance of BColor class 
            </summary>
            <returns>New instance of BColor class </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.#ctor(System.Byte,System.Byte,System.Byte,System.Byte)">
            <summary>
            Create new instance of BColor class 
            </summary>
            <param name="r">Red channel value</param>
            <param name="g">Green channel value</param>
            <param name="b">Blue channel value</param>
            <param name="a">Alpha (transparency) channel value</param>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.ToString">
            <summary>
            Convert BColor object to string representation
            </summary>
            <returns>String</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.GetMatrix(System.Drawing.Bitmap,System.Int32,System.Int32)">
            <summary>
            Get pixels colors from image
            </summary>
            <param name="source">Iamge to get pixels</param>
            <param name="width">Width of image</param>
            <param name="height">Height of image</param>
            <returns>Pixels colors from image</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.GetMatrix(System.Byte[],System.Int32,System.Int32)">
            <summary>
            Transform one dimensional byte array to two dimensional BColor array, that describe the image 
            </summary>
            <param name="bytes">Array of 4 channel image bytes</param>
            <param name="width">Image width</param>
            <param name="height">Image height</param>
            <returns>Two dimensional BColor array, that describe the image</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.GetRectAsLine(Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32)">
            <summary>
            Convert two-dimensioned array of pixels colors to one-dimensioned array
            </summary>
            <param name="src">Two-dimensioned array of pixels colors</param>
            <param name="top">Top</param>
            <param name="height">Height</param>
            <param name="left">Left</param>
            <param name="width">Width</param>
            <returns>One-dimensioned array of pixels colors</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.BColor.GetAsLine(Telerik.Charting.Styles.BColor[][],System.Int32,System.Int32,System.Int32,System.Int32,Telerik.Charting.Styles.BColor[],System.Int32,System.Int32)">
            <summary>
            Pixels colors represented as one-dimensioned array each four elements of it contain information about pixel color(r,g,b,a)
            </summary>
            <param name="src">Two-dimensioned array of pixels colors</param>
            <param name="top">Top</param>
            <param name="height">Height</param>
            <param name="left">Left</param>
            <param name="width">Width</param>
            <param name="dst">Pixels colors as one-dimensioned array</param>
            <param name="srcWidth">Image height</param>
            <param name="srcHeight">Image width</param>
            <returns></returns>
        </member>
        <member name="T:Telerik.Charting.Styles.ShadowPosition">
            <summary>
            Possible shadow positions listing
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.Right">
            <summary>
            Assign the right position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.Left">
            <summary>
            Assign the left position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.Top">
            <summary>
            Assign the top position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.Bottom">
            <summary>
            Assign the bottom position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.TopRight">
            <summary>
            Assign the  top right position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.TopLeft">
            <summary>
            Assign the top  left position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.BottomRight">
            <summary>
            Assign the bottom right position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.BottomLeft">
            <summary>
            Assign the bottom left position for shadow
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ShadowPosition.Behind">
            <summary>
            Assign the behind position for shadow
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartSkin">
            <summary>
            Chart skin
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartSkin.skinName">
            <summary>
            Skin name
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartSkin.skinXmlSource">
            <summary>
            XML document that contains skin properties.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.#ctor">
            <summary>
            Create new instance of ChartSkin class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.#ctor(System.String)">
            <summary>
            Create new instance of ChartSkin class with specified name.
            </summary>
            <param name="name">Name of skin.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.#ctor(System.Xml.XmlDocument)">
            <summary>
            Create new instance of ChartSkin class.
            </summary>
            <param name="source">XML document that contains skin properties.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.IsEmpty(System.String)">
            <summary>
            Checks if skin is not specified for chart.
            </summary>
            <param name="name">Skin name</param>
            <returns>Whether skin is not specified for chart or not</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.ApplyTo(Telerik.Charting.Chart)">
            <summary>
            Applies skin to given chart
            </summary>
            <param name="chart">Chart to apply skin</param>
        </member>
        <member name="M:Telerik.Charting.Styles.ChartSkin.CreateFromChart(Telerik.Charting.Chart,System.String)">
            <summary>
            Grabs skin from given chart
            </summary>
            <param name="chart">Chart to get skin</param>
            <param name="name">Skin name</param>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartSkin.Name">
            <summary>
            Gets and sets skin name.
            </summary>
            <value>Name of skin</value>
        </member>
        <member name="P:Telerik.Charting.Styles.ChartSkin.XmlSource">
            <summary>
            Gets and sets XML document that contains skin properties.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Skins.ChartSkinsCollection">
            <summary>
            Chart skins collection
            </summary>
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.ChartSkinsCollection.skinNames">
            <summary>
            Skins listing. New skin name should be added here
            </summary>      
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.ChartSkinsCollection.resourceManager">
            <summary>
            Resource that holds skins.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Skins.ChartSkinsCollection.GetNames">
            <summary>
            Gets the names of the skins in the collection.
            </summary>
            <returns>Names of skins in collection.</returns>
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.ChartSkinsCollection.resourceMan">
            <summary>
            Resource manager.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.ChartSkinsCollection.resourceCulture">
            <summary>
            Provides information about resource.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.ChartSkinsCollection.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.ChartSkinsCollection.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Skins.Images">
            <summary>
            Embedded background images for skins.
            </summary>
            <summary>
              A strongly-typed resource class, for looking up localized strings, etc.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Skins.Images.GetImageFromResource(System.String,System.String)">
            <summary>
            Get image with specified name of specified skin.
            </summary>
            <param name="name">Name of image.</param>
            <param name="skinName">Skin name.</param>
            <returns>Image from resource</returns>
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.Images.resourceMan">
            <summary>
            Resource manager.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Skins.Images.resourceCulture">
            <summary>
            Provides information about resource.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.ResourceManager">
            <summary>
              Returns the cached ResourceManager instance used by this class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.Culture">
            <summary>
              Overrides the current thread's CurrentUICulture property for all
              resource lookups using this strongly typed resource class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.chartInox">
            <summary>
            Chart background image of Inox skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.chartMac">
            <summary>
            Chart background image of Mac skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.chartMarble">
            <summary>
            Chart background image of Marble skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.chartMetal">
            <summary>
            Chart background image of Metal skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.chartWood">
            <summary>
            Chart background image of Wood skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.plotareaInox">
            <summary>
            PlotArea background image of Inox skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.plotareaMarble">
            <summary>
            PlotArea background image of Marble skin.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Skins.Images.plotareaMetal">
            <summary>
            PlotArea background image of Metal skin.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleProperties">
            <summary>
            Possible style properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleAxis">
            <summary>
            Axis appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisOrientation">
            <summary>
            Specifies the orientation property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisLabelAppearance">
            <summary>
            Default style for axis label
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisTextAppearance">
            <summary>
            Default axis items text properties style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisMinorTick">
            <summary>
            Axis minor ticks style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisMajorTick">
             <summary>
            Axis major ticks style
             </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisMajorGridLines">
            <summary>
            Major Grid Lines options
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleAxis.styleAxisMinorGridLines">
            <summary>
            Minor Grid Lines options
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.ChartAxis)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="axis">Axis related to</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.Styles.Orientation)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="orientation">Axis orientation</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.Styles.Orientation,Telerik.Charting.ChartAxis)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="orientation">Axis orientation</param>
            <param name="axis">Axis related to</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.Styles.Orientation,Telerik.Charting.Styles.ChartAxisVisibility)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="orientation">Axis orientation</param>
            <param name="visibility">Visibility of axis</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.Styles.Orientation,Telerik.Charting.Styles.ChartAxisVisibility,Telerik.Charting.ChartAxis)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="orientation">Axis orientation</param>
            <param name="visibility">Visibility of axis</param>
            <param name="axis">Axis orientation</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.#ctor(Telerik.Charting.Styles.Orientation,Telerik.Charting.Styles.ChartAxisVisibility,Telerik.Charting.Styles.LineStyle)">
            <summary>
            Creates new instance of StyleAxis class
            </summary>
            <param name="orientation">Axis orientation</param>
            <param name="visibility">Visisbility of axis</param>
            <param name="lineStyle">Line style of axis</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState 
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxis.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.MajorGridLines">
            <summary>
            Major Grid Lines options
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.MinorGridLines">
            <summary>
            Minor Grid Lines options
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.Orientation">
            <summary>
            Specifies the orientation property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.Color">
            <summary>
            Color of Axis
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.Visible">
            <summary>
            Specifies the axis visibility option
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.ValueFormat">
            <summary>
            Specifies a predefined numerical format string.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.LabelAppearance">
            <summary>
            Default style for all axis items
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.MinorTick">
            <summary>
            ChartAxis minor ticks style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.MajorTick">
            <summary>
            ChartAxis major ticks style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.CustomFormat">
            <summary>
            Specifies a custom numerical format string.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.Width">
            <summary>
            Specifies the width of the axis.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.TextAppearance">
            <summary>
            Common axis items labels text blocks settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxis.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleAxisY">
            <summary>
            Y axis specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisY.#ctor(Telerik.Charting.ChartYAxis)">
            <summary>
            Creates new instance of StyleAxisY class
            </summary>
            <param name="axis">Axis related to</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisY.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxisY.Orientation">
            <summary>
            Specifies the orientation property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleAxisX">
            <summary>
            X axis specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisX.#ctor(Telerik.Charting.ChartXAxis)">
            <summary>
            Creates new instance of StyleAxisX class
            </summary>
            <param name="axis">Axis related to</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisX.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxisX.MinorTick">
            <summary>
            Specifies minor ticks options
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxisX.MinorGridLines">
            <summary>
            Specifies major ticks options
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleAxisX.Orientation">
            <summary>
            Specifies the orientation property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TextQuality">
            <summary>
            Specifies the quality at which text is rendered.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.SystemDefault">
            <summary>
            Specifies that each character is drawn using its glyph bitmap, with the system default rendering hint. The text will be drawn using whatever font smoothing settings the user has selected for the system.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.SingleBitPerPixel">
            <summary>
            Specifies that each character is drawn using its glyph bitmap. Hinting is not used.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.SingleBitPerPixelGridFit">
            <summary>
            Specifies that each character is drawn using its glyph bitmap. Hinting is used to improve character appearance on stems and curvature.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.AntiAlias">
            <summary>
            Specifies that each character is drawn using its anti aliased glyph bitmap without hinting. Better quality due to anti aliasing. Stem width differences may be noticeable because hinting is turned off.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.AntiAliasGridFit">
            <summary>
            Specifies that each character is drawn using its anti aliased glyph bitmap with hinting. Much better quality due to anti aliasing, but at a higher performance cost.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextQuality.ClearTypeGridFit">
            <summary>
            Specifies that each character is drawn using its glyph CT bitmap with hinting. The highest quality setting. Used to take advantage of ClearType font features.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ImageQuality">
            <summary>
            Specifies the quality at which image is rendered.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageQuality.Default">
            <summary>
            Specifies the default mode.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageQuality.AntiAlias">
            <summary>
            Specifies anti aliased rendering.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageQuality.HighQuality">
            <summary>
            Specifies high quality, low speed rendering.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ImageQuality.None">
            <summary>
            Specifies no anti aliasing.
            </summary>        
        </member>
        <member name="T:Telerik.Charting.Styles.StyleChart">
            <summary>
            Main chart appearance settings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChart.styleChartCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChart.styleChartFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.#ctor(Telerik.Charting.Chart)">
            <summary>
            Creates new instance of StyleChart class.
            </summary>
            <param name="chart">Chart related to.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.#ctor(Telerik.Charting.Styles.DimensionsChart,Telerik.Charting.Styles.FillStyleChart,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates new instance of StyleChart class.
            </summary>
            <param name="dimensions">Chart dimensions</param>
            <param name="fillStyle">FillStyle of chart</param>
            <param name="corners">Corners of chart</param>
            <param name="border">Chart border style</param>
            <param name="shadowStyle">Chart shadow style</param>
            <param name="visible">Visibility of chart</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewSatate with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChart.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.BarWidthPercent">
            <summary>
            Determines the width of bars.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.BarOverlapPercent">
            <summary>
            Determines how much of the bar's area is overlapped in multiple bar charts.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.TextQuality">
            <summary>
            Specifies the quality at which text in chart is rendered.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.ImageQuality">
            <summary>
            Specifies the quality at which chart image is rendered.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.Corners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.Figure">
            <summary>
            Specifies the figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.Visible">
            <summary>
            Gets visibility of chart
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.Position">
            <summary>
            Gets positions
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChart.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleChartDataTable">
            <summary>
            DataTable appearance settings
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChartDataTable.styleChartDataTableFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChartDataTable.styleChartDataTableTextProperties">
            <summary>
            Specifies the text properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChartDataTable.styleChartDataTableCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleChartDataTable.styleChartDataTableParent">
            <summary>
            Style parent object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.#ctor">
            <summary>
            Creates a new instance of StyleChartDataTable class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.#ctor(Telerik.Charting.ChartDataTable)">
            <summary>
            Creates a new instance of StyleChartDataTable class.
            </summary>
            <param name="parent">Parent element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.#ctor(Telerik.Charting.Styles.Dimensions,Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.TextProperties,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates a new instance of StyleChartDataTable class.
            </summary>
            <param name="dimensions">DataTable's dimensions</param>
            <param name="fillStyle">DataTable's fillStyle</param>
            <param name="position">DataTable's position</param>
            <param name="textProperties">DataTable's textProperties</param>
            <param name="border">DataTable's border</param>
            <param name="shadowStyle">DataTable's shadowStyle</param>
            <param name="visible">DataTable's visiblity</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.SaveDimensions">
            <summary>
            Save DataTable's dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.SetAutoLayoutDefaults">
            <summary>
            Save DataTable's dimensions and positions for auto layout
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.RestoreDimensions">
            <summary>
            Restore dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.RestoreInitialValues">
            <summary>
            Restore margins
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleChartDataTable.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.Visible">
            <summary>
            Specifies DataTable visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.CellWidth">
            <summary>
            Specifies data table cell width
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.CellHeight">
            <summary>
            Specifies data table cell height
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.RenderType">
            <summary>
            Specifies data table rendering type
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.DrawHorizontalLines">
            <summary>
            Should horizontal lines be rendered
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.DrawVerticalLines">
            <summary>
            Should vertical lines be rendered
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.DrawLines">
            <summary>
            Hide/show all lines
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.TextVerticalAlign">
            <summary>
            Specifies text vertical alignment
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.TextHorizontalAlign">
            <summary>
            Specifies text horizontal alignment
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.Figure">
            <summary>
            Specifies the figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.AutoTextWrap">
            <summary>
            Specifies text wrap property for texts in Data Table
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleChartDataTable.TextProperties">
            <summary>
            Specifies the text properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ChartGridLineLayoutMode">
            <summary>
            Specifies RadChart's styles for the grid lines layout.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartGridLineLayoutMode.Normal">
            <summary>
            Sets normal grid lines.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.ChartGridLineLayoutMode.Expanded">
            <summary>
            Sets expanded grid lines.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleGridLine">
            <summary>
            Grid line specific style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleGridLine.ShouldRender(System.Boolean)">
            <summary>
            Checks whether grid line be rendered or not
            </summary>
            <param name="axisVisible"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleGridLine.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLine.HideWithAxis">
            <summary>
            Should grid lines be hidden with axis or not
            </summary>
            <remarks>Default value is true</remarks>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLine.Width">
            <summary>
            Gets or sets the width of the grid line.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLine.PenStyle">
            <summary>
            Specifies the pen style used for grid lines' drawing.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLine.Color">
            <summary>
            Specifies the color of the grid lines.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleGridLineHidden.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLineHidden.Visible">
            <summary>
            Gets and sets grid lines' visibility
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleGridLineMajor.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleGridLineMajorXAxis.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleGridLineMajorXAxis.PenStyle">
            <summary>
            Specifies the pen style used for grid lines' drawing.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLabel">
            <summary>
            Base label appearance style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleLabel.styleLabelCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleLabel.styleLabelFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleLabel.styleLabelIsSet">
            <summary>
            Specifies that style has container object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(System.Object)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="containerObject">Style container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.FillStyle)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="position">Label's position</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Label's position</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Label's position</param>
            <param name="dimensions">Label's dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="corners">Corners of label</param>
            <param name="position">Label's position</param>
            <param name="dimensions">Label's dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.#ctor(Telerik.Charting.Styles.LabelItemsCompositionTypes,Telerik.Charting.Styles.Dimensions,System.String,Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,System.Single,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates new instance of StyleLabel class.
            </summary>
            <param name="compositionType">CompositionType to specify textblock and marker positions</param>
            <param name="dimensions">Label's dimensions</param>
            <param name="figure">Label's figure</param>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Label's position</param>
            <param name="rotationAngle">Rotation angle</param>
            <param name="corners">Corners of label</param>
            <param name="border">Label's border</param>
            <param name="shadowStyle">Shadow style of label</param>
            <param name="visible">Label's visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.SaveDimensions">
            <summary>
            Copy dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.RestoreDimensions">
            <summary>
            Restore saved dimensions value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.RestoreInitialValues">
            <summary>
            Restore margins initial value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.SetAutoLayoutDefaults">
            <summary>
            Save dimensions and positions for autolayout
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabel.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.Corners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.Figure">
            <summary>
            Specifies the figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.RotationAngle">
            <summary>
            Specifies the rotation angle property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.CompositionType">
            <summary>
            Specifies the label's items composition type
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.Visible">
            <summary>
            Specifies tha label's visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.IsSet">
            <summary>
            Specifies that style has container object
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabel.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Property value</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor(System.Object)">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
            <param name="containerObject">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor(Telerik.Charting.Styles.FillStyle)">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor(Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
            <param name="position">Label's position</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Label's position</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of StyleLabelHidden class.
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Label's position</param>
            <param name="dimensions">Label's dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelHidden.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabelHidden.Visible">
            <summary>
            Specifies tha label's visibility
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleExtendedLabel.styleExtendedLabelItemAppearance">
            <summary>
            Specifies label item's style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleExtendedLabel.styleExtendedLabelItemMarkerAppearance">
            <summary>
            Specifies label item's marker's style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleExtendedLabel.styleExtendedLabelItemTextAppearance">
            <summary>
            Specifies label item's textblock's style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="series">Container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.Styles.FillStyle)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="fillStyle">FillStyle of label</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="position">Position of label</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Position of label</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="fillStyle">FillStyle of label</param>
            <param name="position">Position of label</param>
            <param name="dimensions">Label's dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.#ctor(Telerik.Charting.Styles.LabelItemsCompositionTypes,Telerik.Charting.Styles.Dimensions,System.String,Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Overflow,Telerik.Charting.Styles.Position,System.Single,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates new instance of StyleExtendedLabel class 
            </summary>
            <param name="compositionType">Composition type of label items</param>
            <param name="dimensions">Label's dimensions</param>
            <param name="figure">Label's figure</param>
            <param name="fillStyle">Label's fillstyle settings</param>
            <param name="overflow">Layout of label items</param>
            <param name="position">Label's position</param>
            <param name="rotationAngle">Label's rotation angle</param>
            <param name="corners">Label's corners</param>
            <param name="border">Label's border</param>
            <param name="shadowStyle">Label's shadow style</param>
            <param name="visible">Label's visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.Reset">
            <summary>
            Dispose object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleExtendedLabel.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.Location">
            <summary>
            Specifies label location (InsidePlotArea, OutsidePlotArea)
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.ItemAppearance">
            <summary>
            Specifies item label's style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.ItemTextAppearance">
            <summary>
            Specifies item label's text's style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.ItemMarkerAppearance">
            <summary>
            Specifies item label's marker's style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.Overflow">
            <summary>
            Specifies the behavior when overflow occurred
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleExtendedLabel.GroupNameFormat">
            <summary>
            Specifies the series names format shown in Legend when data grouping being used and names are digits.
            </summary>
            <remarks>Supported format strings as "#VALUE" / "#NAME"</remarks>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleSeriesItemLabel">
            <summary>
            Series item appearance style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItemLabel.styleSeriesItemLabelLabelConnectorStyle">
            <summary>
            Style of connector line
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItemLabel.styleSeriesItemLabelIsSet">
            <summary>
            Specifies that style has container object
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.#ctor">
            <summary>
            Creates new instance of StyleSeriesItemLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates new instance of StyleSeriesItemLabel class.
            </summary>
            <param name="series">Style container element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemLabel.SaveViewState">
            <summary>
            Save data to ViewState
            </summary>
            <returns>Saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItemLabel.Distance">
            <summary>
            Label distance from series when LabelLocation equals Auto
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItemLabel.Visible">
            <summary>
            Specifies labels' visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItemLabel.LabelConnectorStyle">
            <summary>
            Gets label's connector's style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItemLabel.LabelLocation">
            <summary>
            Specifies label's layout
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItemLabel.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItemLabel.ItemLabelLocation.Inside">
            <summary>
            Inside item
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItemLabel.ItemLabelLocation.Outside">
            <summary>
            Outside item
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItemLabel.ItemLabelLocation.Auto">
            <summary>
            Auto
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelLocation.InsidePlotArea">
            <summary>
            Inside PlotArea location
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.LabelLocation.OutsidePlotArea">
            <summary>
            Outside PlotArea location
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLabelLegend">
            <summary>
            Legend appearance style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelLegend.#ctor">
            <summary>
            Creates new instance of StyleLabelLegend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelLegend.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelLegend.SetAutoLayoutDefaults">
            <summary>
            Save dimensions and positions for AutoLayout
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabelLegend.Figure">
            <summary>
            Gets label's figure
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabelLegend.Overflow">
            <summary>
            Specifies label's overflow
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleAxisLabel">
            <summary>
            Axis label style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisLabel.#ctor">
            <summary>
            Creates new instance of StyleAxisLabel class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisLabel.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleYAxisLabel">
            <summary>
            Axis label style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleYAxisLabel.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleYAxisLabel.RotationAngle">
            <summary>
            Specifies label's rotation angle
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLabelTitle">
            <summary>
            Chart title style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelTitle.#ctor">
            <summary>
            Creates new instance of StyleLabelTitle class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelTitle.#ctor(Telerik.Charting.Chart)">
            <summary>
            Creates new instance of StyleLabelTitle class.
            </summary>
            <param name="chart">Style container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelTitle.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelTitle.SetAutoLayoutDefaults">
            <summary>
            Save dimensions and positions for AutoLayout
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleLabelEmptySeriesMessage">
            <summary>
            Empty series message style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelEmptySeriesMessage.#ctor">
            <summary>
            Creates new instance of StyleLabelEmptySeriesMessage class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleLabelEmptySeriesMessage.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleLabelEmptySeriesMessage.Visible">
            <summary>
            Specifies label' visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarkedZone">
            <summary>
            Marked zone. Used to mark the values ranges at the plot area.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleMarkedZone.styleMarkedZoneFillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.#ctor">
            <summary>
            Creates a new instance of StyleMarkedZoneclass.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.#ctor(Telerik.Charting.Styles.FillStyleMarkedZones,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates a new instance of StyleMarkedZoneclass.
            </summary>
            <param name="fillStyle">FillStyle of Marked Zone</param>
            <param name="border">Marked Zone's border</param>
            <param name="shadowStyle">Marked Zone's shadow style</param>
            <param name="visible">Visibility of Marked Zone</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkedZone.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkedZone.FillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkedZone.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Get property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarker">
            <summary>
            Base marker's style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleMarker.styleMarkerCorners">
            <summary>
            Specifies the corners of background rectangle 
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleMarker.styleMarkerFillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor(System.Object)">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
            <param name="containerObject">Style container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor(System.String)">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
            <param name="figureType">Marker's figure name</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor(System.String,System.Int32)">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
            <param name="figureType">Marker's figure name</param>
            <param name="pointSize">Width and height of marker</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor(System.String,Telerik.Charting.Styles.Dimensions,Telerik.Charting.Styles.FillStyle)">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
            <param name="figureType">Marker's figure name</param>
            <param name="dimensions">Dimensions of marker</param>
            <param name="fillStyle">Marker's fillstyle settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.#ctor(Telerik.Charting.Styles.Dimensions,System.String,Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,System.Single,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates a new instance of StyleMarker class.
            </summary>
            <param name="dimensions">Dimensions of marker</param>
            <param name="figure">Marker's figure name</param>
            <param name="fillStyle">Marker's fillstyle settings</param>
            <param name="position">Marker's positions</param>
            <param name="rotationAngle">Marker's rotation angle</param>
            <param name="corners">Corners of marker</param>
            <param name="border">Border of marker</param>
            <param name="shadowStyle">Marker's shadow style</param>
            <param name="visible">Marker's visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.Equals(System.Object)">
            <summary>
            Comparing of two objects
            </summary>
            <param name="obj">Object to compare</param>
            <returns>Result of comparing</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.GetHashCode">
            <summary>
            Gets hash code
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.Clone">
            <summary>
            Clone this object
            </summary>
            <returns>Cloned object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarker.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.Visible">
            <summary>
            Specifies marker's visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.Corners">
            <summary>
            Specifies the corners of background rectangle 
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.FillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.RotationAngle">
            <summary>
            Specifies the Rotation angle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.Figure">
            <summary>
            Specifies the Figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarker.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarkerSeriesPoint">
            <summary>
            Specific series point markers style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerSeriesPoint.#ctor(Telerik.Charting.ChartSeries,System.String)">
            <summary>
            Creates a new instance of StyleMarkerSeriesPoint class.
            </summary>
            <param name="series">Series that is style container object</param>
            <param name="subPropertyName"></param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerSeriesPoint.#ctor">
            <summary>
            Creates a new instance of StyleMarkerSeriesPoint class.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerSeriesPoint.Position">
            <summary>
             Specifies marker's positions
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerSeriesPoint.Visible">
            <summary>
            Specifies marker's visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerSeriesPoint.Figure">
            <summary>
            Specifies Figure 
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarkerLegend">
            <summary>
            Specific series point markers style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerLegend.#ctor">
            <summary>
            Creates a new instance of StyleMarkerLegend class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerLegend.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerLegend.Figure">
            <summary>
            Specifies marker's figure
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerLegend.Visible">
            <summary>
            Specifies marker's visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarkerEmptyValue">
            <summary>
            Specific empty point marker style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerEmptyValue.#ctor">
            <summary>
            Creates a new instance of StyleMarkerEmptyValue class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerEmptyValue.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerEmptyValue.Visible">
            <summary>
            Specifies marker's visibility
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerEmptyValue.Figure">
            <summary>
            Specifies marker's figure
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleMarkerPositionNone">
            <summary>
            Specific empty point marker style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerPositionNone.#ctor">
            <summary>
            Creates a new instance of StyleMarkerPositionNone class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleMarkerPositionNone.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleMarkerPositionNone.Visible">
            <summary>
            Specifies marker's visibility
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StylePlotArea">
            <summary>
            Plot area's appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StylePlotArea.stylePlotAreaParent">
            <summary>
            Parent element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StylePlotArea.stylePlotAreaCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StylePlotArea.stylePlotAreaFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StylePlotArea.autoLayoutMargins">
            <summary>
            Margins for auto layout
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.#ctor">
            <summary>
            Creates a new instance of StylePlotArea class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.#ctor(Telerik.Charting.Styles.Dimensions,Telerik.Charting.Styles.FillStylePlotArea,Telerik.Charting.Styles.Position,System.String,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates a new instance of StylePlotArea class.
            </summary>
            <param name="dimensions">Dimensions of PlotArea</param>
            <param name="fillStyle">FillStyle settings</param>
            <param name="position">PlotArea's position</param>
            <param name="palette">Palette used in PlotArea</param>
            <param name="corners">PlotArea's corners</param>
            <param name="border">Border of PlotArea</param>
            <param name="shadowStyle">PlotArea's shadow style</param>
            <param name="visible">PlotArea's visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.SetAutoLayoutDefaults">
            <summary>
            Save dimensions for auto layout
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.SaveDimensions">
            <summary>
            Save dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.RestoreDimensions">
            <summary>
            Restore previous saved dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.RestoreDimensions(System.Boolean)">
            <summary>
            Restore previous saved dimensions
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.RestoreAutoLayoutMargins">
            <summary>
            Restore previous saved margins
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.Clone">
            <summary>
            Cloned this object
            </summary>
            <returns>New instance of StylePlotArea class with the same fields as this one</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StylePlotArea.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.PlotArea">
            <summary>
            Specifies parent element
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.Corners">
            <summary>
            Specifies the corners for background rectangle
            </summary>    
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.Figure">
            <summary>
            Specifies the figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.SeriesPalette">
            <summary>
            Specifies the series palette
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StylePlotArea.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets property value by name
            </summary>
            <param name="name">Name of property</param>
            <returns>Value of property</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleSeries">
            <summary>
            Series appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.DEFAULT_BUBBLE_SIZE">
            <summary>
            Default size of bubbles
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.DEFAULT_DISPLAY_MODE">
            <summary>
            Default series legend display mode
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesLabelAppearance">
            <summary>
            Default series items labels style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesTextAppearance">
            <summary>
            Default series item labels' text style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesPointAppearance">
            <summary>
            Point marks style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesLineSeriesAppearance">
            <summary>
            Line, Spline, Bezier series line style
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesEmptyValue">
            <summary>
            Style of empty values
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesParent">
            <summary>
            Parent series element
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeries.styleSeriesPointDimentions">
            <summary>
            Dimensions of points in Point series
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Constructor for Series's style
            </summary>
            <param name="series">Parent series element</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.#ctor">
            <summary>
            Creates new instance of StyleSeries class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.#ctor(Telerik.Charting.Styles.FillStyleSeries,Telerik.Charting.Styles.StyleSeriesItemLabel,Telerik.Charting.Styles.StyleMarkerSeriesPoint,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates new instance of StyleSeries class.
            </summary>
            <param name="fillStyle">FillStyle of series</param>
            <param name="styleSeriesLabel">Series default labels' settings</param>
            <param name="stylePointMarker">Style of Point marker</param>
            <param name="corners">Items' corners</param>
            <param name="border">Border of series</param>
            <param name="shadowStyle">Series' shadow style</param>
            <param name="visible">Visibility of series</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.Clone">
            <summary>
            Cloned this object
            </summary>
            <returns>New instance of StyleSeries class with the same fields as this one</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeries.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.BarWidthPercent">
            <summary>
            Determines the width of bars.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.Corners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.PointShape">
            <summary>
            Specifies the shape for point series
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.PointDimentions">
            <summary>
            Specifies the dimensions of points in point series
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.PointRotationAngle">
            <summary>
            Specifies the Rotation angle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.LegendDisplayMode">
            <summary>
            Legend visualization mode
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.ShowLabels">
            <summary>
            Specifies whether the item labels should be shown or not.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.ShowLabelConnectors">
            <summary>
            Specifies whether a line should be drawn between the label and the item.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.StartAngle">
            <summary>
            Gets or sets the start angle of the pie. Zero angle is identical with the X axis direction.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.DiameterScale">
            <summary>
            Gets or sets the pie's diameter length according to the size of the plot area.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.ExplodePercent">
            <summary>
            Gets or sets the explode percent of the exploded items.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.CenterXOffset">
            <summary>
            Specifies the x offset of the pie center.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.CenterYOffset">
            <summary>
            Specifies the y offset of the pie center.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.BubbleSize">
            <summary>
            Default bubble size
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.LabelAppearance">
            <summary>
            Gets or sets the common settings for the series items labels
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.LineSeriesAppearance">
            <summary>
            Line, Spline, Bezier series line style
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.PointMark">
            <summary>
            Series points appearance
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.TextAppearance">
            <summary>
            Gets or sets the common text settings for the series items
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.EmptyValue">
            <summary>
            Empty value point mark 
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.Border">
            <summary>
            Specifies the border
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeries.Visible">
            <summary>
            Specifies visibility of series 
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleSeriesItem">
            <summary>
            Series item appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItem.styleSeriesItemFillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItem.styleSeriesItemCorners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleSeriesItem.styleSeriesItemPointDimentions">
            <summary>
            Dimensions of points in Point series
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
             Creates new instance of StyleSeriesItem class.
            </summary>
            <param name="series">Style container object</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.#ctor">
            <summary>
            Creates new instance of StyleSeriesItem class.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.Reset">
            <summary>
            Reset to default settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.Clone">
            <summary>
            Cloned this object
            </summary>
            <returns>New instance of StyleSeriesItem class with the same fields as this one</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.TrackViewState">
            <summary>
            Track ViewState
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.LoadViewState(System.Object)">
            <summary>
            Load data from ViewState
            </summary>
            <param name="savedState">ViewState with data</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItem.SaveViewState">
            <summary>
            Saved data to ViewState
            </summary>
            <returns>saved data</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.Shadow">
            <summary>
            Specifies item's shadow
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.FillStyle">
            <summary>
            Specifies the background property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.Exploded">
            <summary>
            Exploded of item in Pie series
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.Corners">
            <summary>
            Specifies the corners for background rectangle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.PointShape">
            <summary>
            Specifies the figure property for point series
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.PointRotationAngle">
            <summary>
            Specifies the Rotation angle
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleSeriesItem.PointDimentions">
            <summary>
            Specifies the dimensions of points in point series
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTextBlock">
            <summary>
            Text block appearance
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockCorners">
            <summary>
            Specifies the corners of background rectangle 
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockFillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockRotationAngle">
            <summary>
            Specifies the Rotation angle
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockTextProperties">
            <summary>
            Specifies the Text properties
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockOverflow">
            <summary>
            Specifiers the overflow behavior
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.StyleTextBlock.styleTextBlockStringFormat">
            <summary>
            Text string formatting properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.ShouldSerializeMaxLength">
            <summary>
            Should the MaxLength property be serialized or not
            </summary>
            <returns>True if should be serialized</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.ResetMaxLength">
            <summary>
            Sets the default value for a MaxLength property
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.FillStyle)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
            <param name="position">Position settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.TextProperties)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="textProperties">Text appearance settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.TextProperties)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
            <param name="textProperties">Text appearance settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.TextProperties)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
            <param name="position">Position settings</param>
            <param name="textProperties">Text appearance settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,Telerik.Charting.Styles.TextProperties,Telerik.Charting.Styles.Dimensions)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
            <param name="position">Position settings</param>
            <param name="textProperties">Text appearance settings</param>
            <param name="dimensions">Dimensions</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.#ctor(Telerik.Charting.Styles.Dimensions,Telerik.Charting.Styles.FillStyle,Telerik.Charting.Styles.Position,System.Single,Telerik.Charting.Styles.TextProperties,Telerik.Charting.Styles.Corners,Telerik.Charting.Styles.StyleBorder,Telerik.Charting.Styles.ShadowStyle,System.Boolean)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="fillStyle">Fill style settings</param>
            <param name="position">Position settings</param>
            <param name="textProperties">Text appearance settings</param>
            <param name="dimensions">Dimensions</param>
            <param name="rotationAngle">Rotation angle</param>
            <param name="corners">Corners appearance</param>
            <param name="border">Border settings</param>
            <param name="shadowStyle">Shadow settings</param>
            <param name="visible">Visibility settings</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.SetStringFormat">
            <summary>
            Sets the text alignment accordingly to the AlignedPosition property value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.Clone">
            <summary>
            Creates the object's clone
            </summary>
            <returns>Clone</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.Dispose(System.Boolean)">
            <summary>
            Releases unmanaged and - optionally - managed resources
            </summary>
            <param name="disposing"><c>true</c> to release both managed and unmanaged resources; <c>false</c> to release only unmanaged resources.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.TrackViewState">
            <summary>
            Tracks view state changes
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.LoadViewState(System.Object)">
            <summary>
            Loads class settings from a view state
            </summary>
            <param name="savedState">ViewState to load from</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlock.SaveViewState">
            <summary>
            Saves class data to a view state
            </summary>
            <returns>Saved view state</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.MaxLength">
            <summary>
            Max number of visible characters. Rest will be truncated
            <remarks>Full string will be added to parent label's ActiveRegion.Tooltip</remarks>
            </summary>
        </member>
        <member name="E:Telerik.Charting.Styles.StyleTextBlock.MaxLengthChanged">
            <summary>
            MaxLength property changed event
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.Corners">
            <summary>
            Specifies the corners of background rectangle 
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.FillStyle">
            <summary>
            Specifies the FillStyle property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.Figure">
            <summary>
            Specifies the Figure property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.TextProperties">
            <summary>
            Specifies the Text properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets the property value by its name
            </summary>
            <param name="name">Name of the property. String</param>
            <returns>Object</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.AutoTextWrap">
            <summary>
            Gets or sets the automatic text wrapping functionality switch
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlock.StringFormat">
            <summary>
            Gets the string format
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleSeriesItemTextBlock">
            <summary>
            Series item label text block's appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemTextBlock.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemTextBlock.#ctor(Telerik.Charting.ChartSeries)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="series">Chart series</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemTextBlock.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemTextBlock.ShouldSerializeMaxLength">
            <summary>
            Gets should the MaxLength value be serialized
            </summary>
            <returns>True if can be serialized, overwise returns false</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleSeriesItemTextBlock.ResetMaxLength">
            <summary>
            Sets the default value
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleAxisItemText">
            <summary>
            Axis item label text block's appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisItemText.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisItemText.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisItemText.ShouldSerializeMaxLength">
            <summary>
            Gets should the MaxLength value be serialized
            </summary>
            <returns>True if can be serialized, overwise returns false</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleAxisItemText.ResetMaxLength">
            <summary>
            Sets the default value
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTextBlockTitle">
            <summary>
            Title text block's appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockTitle.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockTitle.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTextBlockError">
            <summary>
            Error text block's appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockError.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockError.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTextBlockHidden">
            <summary>
            Hidden text block's default appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockHidden.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTextBlockHidden.Visible">
            <summary>
            Visibility. False by default
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTextBlockAxisLabel">
            <summary>
            Hidden text block's default appearance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockAxisLabel.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTextBlockAxisLabel.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTick">
            <summary>
            Base axis ticks appearance settings
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTick.#ctor">
            <summary>
            Creates the new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTick.#ctor(System.Int32)">
            <summary>
            Creates the new class instance
            </summary>
            <param name="length">Tick length in pixels</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTick.#ctor(System.Int32,System.Boolean)">
            <summary>
            Creates the new class instance
            </summary>
            <param name="length">Tick length in pixels</param>
            <param name="visible">Tick visibility</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTick.#ctor(System.Boolean,System.Int32,System.Drawing.Color)">
            <summary>
            Creates the new class instance
            </summary>
            <param name="length">Tick length in pixels</param>
            <param name="visible">Tick visibility</param>
            <param name="color">Tick line color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTick.Reset">
            <summary>
            Sets the default values for a class properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTick.Length">
            <summary>
            Specifies the Length of tick
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTick.Color">
            <summary>
            Tick line color
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTick.Width">
            <summary>
            Tick line width
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTick.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets the property by its name
            </summary>
            <param name="name">Property name. String</param>
            <returns>Object or null</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTickMinor">
            <summary>
            Minor ticks style
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTickMinor.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTickMinor.#ctor(System.Int32)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="count">Minor ticks count</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTickMinor.#ctor(System.Boolean)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="visible">Visibility value</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTickMinor.#ctor(System.Boolean,System.Int32,System.Int32)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="visible">Minor tick visibility</param>
            <param name="length">Minor tick length</param>
            <param name="count">Minor ticks count between two major ticks</param>
        </member>
        <member name="M:Telerik.Charting.Styles.StyleTickMinor.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTickMinor.MinorTickCount">
            <summary>
            Minor ticks count between the two major ticks
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTickMinor.Length">
            <summary>
            Specifies the Length of tick
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.StyleTickMinor.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets the property value by its name
            </summary>
            <param name="name">Name of the property</param>
            <returns>Object or null</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.StyleTickMajor">
            <summary>
            Major ticks visual style
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TextDirection">
            <summary>
            Specifies the text rendering direction
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextDirection.RightToLeft">
            <summary>
            Assign the right to left text direction
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextDirection.LeftToRight">
            <summary>
            Assign the left to right text direction
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextDirection.TopToBottom">
            <summary>
            Assign the left to right top to bottom text direction
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TextDirection.BottomToTop">
            <summary>
            Assign the left to right bottom to top text direction
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TextProperties">
            <summary>
            Base text appearance settings class (Font, Color)
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.#ctor">
            <summary>
            Creates a new class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.#ctor(System.Drawing.Color)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="color">Text color</param>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.#ctor(System.Drawing.Color,System.Drawing.Font)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="color">Text color</param>
            <param name="font">Text font</param>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.#ctor(System.Drawing.Color,System.String,System.Single,System.Drawing.FontStyle,System.Drawing.GraphicsUnit)">
            <summary>
            Creates a new class instance
            </summary>
            <param name="color">Text color</param>
            <param name="familyName">Font family</param>
            <param name="emSize">Font size in EM</param>
            <param name="fontStyle">Font style</param>
            <param name="grUnit">Graphics measurement unit</param>
        </member>
        <member name="F:Telerik.Charting.Styles.TextProperties.textPropertiesContainerObject">
            <summary>
            Class instance container
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.Reset">
            <summary>
            Sets the default values
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.Clone">
            <summary>
            Creates an object clone
            </summary>
            <returns>object</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.Equals(System.Object)">
            <summary>
            Determines whether the specified System.Object is equal to the current System.Object.
            </summary>
            <param name="obj">The System.Object to compare with the current System.Object</param>
            <returns>true if the specified System.Object is equal to the current System.Object;
                otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.TextProperties.GetHashCode">
            <summary>
            Serves as a hash function for a TextProperties type. 
            </summary>
            <returns>A hash code for the current class instance</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.TextProperties.Color">
            <summary>
            Specifies the text color property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextProperties.Font">
            <summary>
            Specifies the text font properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextProperties.Item(Telerik.Charting.Styles.StyleProperties)">
            <summary>
            Gets the property by its name
            </summary>
            <param name="name">Property name. String</param>
            <returns>Object</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.TextPropertiesTitle">
            <summary>
            Default Title's text properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextPropertiesTitle.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesTitle.Font">
            <summary>
            Specifies the text font properties
            </summary>
            <remarks>Default value is Verdana, 15pt</remarks>
        </member>
        <member name="T:Telerik.Charting.Styles.TextPropertiesError">
            <summary>
            Errors text properties 
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextPropertiesError.Reset">
            <summary>
            Sets the default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesError.Color">
            <summary>
            Specifies the text color property
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesError.Font">
            <summary>
            Specifies the text font properties
            </summary>
            <remarks>Default value is Verdana, 10pt, style=Bold</remarks>
        </member>
        <member name="T:Telerik.Charting.Styles.TextPropertiesAxisItem">
            <summary>
            Axis item label text properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextPropertiesAxisItem.Reset">
            <summary>
            Sets default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesAxisItem.Color">
            <summary>
            Specifies the text color property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TextPropertiesAxisLabel">
            <summary>
            Axis item label text properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextPropertiesAxisLabel.Reset">
            <summary>
            Sets default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesAxisLabel.Color">
            <summary>
            Specifies the text color property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TextPropertiesSeriesItem">
            <summary>
            Series item label text properties
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.TextPropertiesSeriesItem.Reset">
            <summary>
            Sets default values for a properties
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.TextPropertiesSeriesItem.Color">
            <summary>
            Specifies the text color property
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.TickLocation">
            <summary>
            Specifies the axis Ticks location relatively to plot area
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TickLocation.Inside">
            <summary>
            Inside of plot area
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TickLocation.Outside">
            <summary>
            Outside of plot area (default value)
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.TickLocation.Cross">
            <summary>
            Tick line crosses the axis line
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.ListConverter">
            <summary>
            Provides a type converter to convert IList objects to and from a different representations
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.ListConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Checks the possibility to convert from a different object type
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="sourceType">The type to convert from</param>
            <returns>True if conversion is possible</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ListConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the type of this converter, using the specified
                context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">Current culture settings</param>
            <param name="sourceObj">The System.Object to convert.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ListConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Returns whether this converter can convert the object to the specified type,
                using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
            <returns>true if this converter can perform the conversion; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.ListConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given value object to the specified type, using the specified
                context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture
                is assumed.</param>
            <param name="destinationObj">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.DoubleConverter2">
            <summary>
            Provides a unified way of converting Double type values to other types, as well
                as for accessing standard values and sub properties.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.DoubleConverter2.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Checks the possibility to convert from a different object type
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="sourceType">The type to convert from</param>
            <returns>True if conversion is possible</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.DoubleConverter2.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the Double type, using the specified
                context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">Current culture settings</param>
            <param name="value">The System.Object to convert.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.DoubleConverter2.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given Double object to the specified type, using the specified
                context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture
                is assumed.</param>
            <param name="value">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.MarginsConverter">
            <summary>
            Provides a unified way of converting ChartMargins type values to other types, as well
            as for accessing standard values and sub properties.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Checks the possibility to convert from a different object type
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="sourceType">The type to convert from</param>
            <returns>True if conversion is possible</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the ChartMargins, using the specified
                context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">Current culture settings</param>
            <param name="value">The System.Object to convert.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given value object to the specified type, using the specified
               context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture
                is assumed.</param>
            <param name="value">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            Creates an instance of the type that this MarginsConverter
                is associated with, using the specified context, given a set of property
                values for the object.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="propertyValues">An System.Collections.IDictionary of new property values.</param>
            <returns>An System.Object representing the given System.Collections.IDictionary, or
                null if the object cannot be created. </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether changing a value on this object requires a call to System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)
             to create a new value, using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <returns>true</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether this object supports properties, using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <returns>true</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.MarginsConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
            <summary>
            Returns a collection of properties for the type of array specified by the
            value parameter, using the specified context and attributes.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="value">An System.Object that specifies the type of array for which to get properties.</param>
            <param name="attributes">An array of type System.Attribute that is used as a filter.</param>
            <returns>A System.ComponentModel.PropertyDescriptorCollection with the properties
             that are exposed for this data type, or null if there are no properties.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.PaddingsConverter">
            <summary>
            Provides a unified way of converting ChartMargins type values to other types, as well
            as for accessing standard values and sub properties.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Checks the possibility to convert from a different object type
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="sourceType">The type to convert from</param>
            <returns>True if conversion is possible</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the ChartPaddings, using the specified
            context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">Current culture settings</param>
            <param name="value">The System.Object to convert.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given value object to the specified type, using the specified
            context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture
                is assumed.</param>
            <param name="value">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.CreateInstance(System.ComponentModel.ITypeDescriptorContext,System.Collections.IDictionary)">
            <summary>
            Creates an instance of the type that this PaddingsConverter
            is associated with, using the specified context, given a set of property
            values for the object.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="propertyValues">An System.Collections.IDictionary of new property values.</param>
            <returns>An System.Object representing the given System.Collections.IDictionary, or
                null if the object cannot be created. </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.GetCreateInstanceSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether changing a value on this object requires a call to System.ComponentModel.TypeConverter.CreateInstance(System.Collections.IDictionary)
             to create a new value, using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <returns>true</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.GetPropertiesSupported(System.ComponentModel.ITypeDescriptorContext)">
            <summary>
            Returns whether this object supports properties, using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <returns>true</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.PaddingsConverter.GetProperties(System.ComponentModel.ITypeDescriptorContext,System.Object,System.Attribute[])">
            <summary>
            Returns a collection of properties for the type of array specified by the
            value parameter, using the specified context and attributes.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="value">An System.Object that specifies the type of array for which to get properties.</param>
            <param name="attributes">An array of type System.Attribute that is used as a filter.</param>
            <returns>A System.ComponentModel.PropertyDescriptorCollection with the properties
             that are exposed for this data type, or null if there are no properties.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.UnitConverter">
            <summary>
            Provides a unified way of converting Units type values to other types, as well
            as for accessing standard values and sub properties.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.UnitConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Checks the possibility to convert from a different object type
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="sourceType">The type to convert from</param>
            <returns>True if conversion is possible</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.UnitConverter.CanConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Type)">
            <summary>
            Returns whether this converter can convert the object to the specified type,
            using the specified context.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="destinationType">A System.Type that represents the type you want to convert to.</param>
            <returns>true if this converter can perform the conversion; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.UnitConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object)">
            <summary>
            Converts the given object to the Unit type, using the specified
            context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">Current culture settings</param>
            <param name="value">The System.Object to convert.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.UnitConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext,System.Globalization.CultureInfo,System.Object,System.Type)">
            <summary>
            Converts the given value object to the specified type, using the specified
            context and culture information.
            </summary>
            <param name="context">An System.ComponentModel.ITypeDescriptorContext that provides a format context.</param>
            <param name="culture">A System.Globalization.CultureInfo. If null is passed, the current culture
                is assumed.</param>
            <param name="value">The System.Object to convert.</param>
            <param name="destinationType">The System.Type to convert the value parameter to.</param>
            <returns>An System.Object that represents the converted value.</returns>
        </member>
        <member name="T:Telerik.Charting.Styles.UnitType">
            <summary>
            Specifies the unit of measurement.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.UnitType.Pixel">
            <summary>
            Measurement is in pixels.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.UnitType.Percentage">
            <summary>
            Measurement is a percentage relative to the parent element.
            </summary>
        </member>
        <member name="T:Telerik.Charting.Styles.Unit">
            <summary>
            Represents a length measurement.
            </summary>
        </member>
        <member name="F:Telerik.Charting.Styles.Unit.Empty">
            <summary>
            Represents an empty Unit. This field is read-only.
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.op_Inequality(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Compares two Unit objects to determine whether they are not equal.
            </summary>
            <param name="left">The Unit on the left side of the operator.</param>
            <param name="right">The Unit on the right side of the operator.</param>
            <returns>true if the Unit objects are not equal; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.op_Equality(Telerik.Charting.Styles.Unit,Telerik.Charting.Styles.Unit)">
            <summary>
            Compares two Unit objects to determine whether they are equal.
            </summary>
            <param name="left">The Unit on the left side of the operator.</param>
            <param name="right">The Unit on the right side of the operator.</param>
            <returns>true if both Unit objects are equal; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.op_Implicit(System.Single)~Telerik.Charting.Styles.Unit">
            <summary>
            Implicitly creates a Unit of type Pixel from the specified float.
            </summary>
            <param name="n">A float that represents the length of the Unit.</param>
            <returns>A Unit of type Pixel that represents the specified by the n parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.Parse(System.String)">
            <summary>
            Converts the specified string to a Unit.
            </summary>
            <param name="s">The string to convert.</param>
            <returns>A Unit that represents the specified string.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.Pixel(System.Single)">
            <summary>
            Creates a Unit of type Pixel from the specified 32-bit signed integer.
            </summary>
            <param name="n">A 32-bit signed integer that represents the length of the Unit.</param>
            <returns>A Unit of type Pixel that represents the length specified by the n parameter.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.Percentage(System.Double)">
            <summary>
            Creates a Unit of type Percentage from the specified double-precision floating-point number.
            </summary>
            <param name="n">A double-precision floating-point number that represents the length of the Unit</param>
            <returns>A Unit of type Percentage that represents the length specified by the double-precision floating-point number.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.GetStringFromType(Telerik.Charting.Styles.UnitType)">
            <summary>
            Gets the string representation of the Unit type
            </summary>
            <param name="type">Unit type value to get string of</param>
            <returns>System.String with unit type value</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.GetTypeFromString(System.String)">
            <summary>
            Gets the UnitType by its string representation
            </summary>
            <param name="value">Unit type string</param>
            <returns>UnitType</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor">
            <summary>
            Creates a class instance
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(Telerik.Charting.Styles.UnitType)">
            <summary>
            Creates a class instance
            </summary>
            <param name="type">UnitType specifies the target Unit type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Double)">
            <summary>
            Initializes a new instance of the Unit with the specified double precision floating point number.
            </summary>
            <param name="value">A double precision floating point number that represents the length of the Unit in pixels.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Single)">
            <summary>
            Initializes a new instance of the Unit with the specified double precision floating point number.
            </summary>
            <param name="value">A float precision floating point number that represents the length of the Unit in pixels.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Int32)">
            <summary>
            Initializes a new instance of the Unit with the specified 32-bit signed integer.
            </summary>
            <param name="value">A 32-bit signed integer that represents the length of the Unit in pixels.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Int32,Telerik.Charting.Styles.UnitType)">
            <summary>
            Initializes a new instance of the Unit with the specified 32-bit signed integer and the target type
            </summary>
            <param name="value">A 32-bit signed integer that represents the length of the Unit in pixels.</param>
            <param name="type">Unit type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Double,Telerik.Charting.Styles.UnitType)">
            <summary>
            Initializes a new instance of the Unit with the specified double precision floating point number and the target type
            </summary>
            <param name="value">A double precision floating point number that represents the length of the Unit in pixels.</param>
            <param name="type">Unit type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.Single,Telerik.Charting.Styles.UnitType)">
            <summary>
            Initializes a new instance of the Unit with the specified double precision floating point number and the target type.
            </summary>
            <param name="value">A float precision floating point number that represents the length of the Unit in pixels.</param>
            <param name="type">Unit type (Pixel / Percentage) </param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.String)">
            <summary>
            Initializes a new instance of the Unit with the specified length.
            </summary>
            <param name="value">A string that represents the length of the Unit.</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.String,System.Globalization.CultureInfo)">
            <summary>
            Initializes a new instance of the Unit with the specified length.
            </summary>
            <param name="value">A string that represents the length of the Unit.</param>
            <param name="culture">CultureInfo</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.#ctor(System.String,System.Globalization.CultureInfo,Telerik.Charting.Styles.UnitType)">
            <summary>
            Initializes a new instance of the Unit with the specified length.
            </summary>
            <param name="value">A string that represents the length of the Unit.</param>
            <param name="culture">CultureInfo</param>
            <param name="defaultType">Unit type</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.GetHashCode">
            <summary>
            Returns a hash code for this Unit.
            </summary>
            <returns>Hash code</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.Equals(System.Object)">
            <summary>
            Compares this Unit with the specified object.
            </summary>
            <param name="obj">The specified object for comparison.</param>
            <returns> true if the Unit that this method is called from is equal to the specified object; otherwise, false.</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.CalculatePixelValue(System.Single)">
            <summary>
            Gets the pixels equivalent of the Unit.Value
            </summary>
            <param name="from">The parent elements dimension to get the percents of</param>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.CalculatePixelValue">
            <summary>
            Gets the pixels equivalent of the Unit.Value
            </summary>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.Clone">
            <summary>
            Creates a Unit clone
            </summary>
            <returns>New Unit class instance </returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.ToString">
            <summary>
            Base ToString override
            </summary>
            <returns>String representation of the Unit instance</returns>
        </member>
        <member name="M:Telerik.Charting.Styles.Unit.ToString(System.Globalization.CultureInfo)">
            <summary>
            Base ToString override
            </summary>
            <param name="culture">CultureInfo</param>
            <returns>String representation of the Unit instance</returns>
        </member>
        <member name="P:Telerik.Charting.Styles.Unit.IsEmpty">
            <summary>
            Gets whether Unit is empty
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Unit.PixelValue">
            <summary>
            The unit length in Pixels
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Unit.Type">
            <summary>
            Gets or sets the unit type of the Unit.
            </summary>
        </member>
        <member name="P:Telerik.Charting.Styles.Unit.Value">
            <summary>
            Gets or sets the length of the Unit.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ChartClientScrollMode">
            <summary>
            PlotArea scrollable mode.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ChartClientScrollMode.XOnly">
            <summary>
            PlotArea will be scrollable by X axis.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ChartClientScrollMode.YOnly">
            <summary>
            PlotArea will be scrollable by Y axis.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ChartClientScrollMode.Both">
            <summary>
            PlotArea will be scrollable by both X and Y axis.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ChartClientScrollMode.None">
            <summary>
            PlotArea will not be scrollable.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ChartClientSettings">
            <summary>Chart client settings</summary>
        </member>
        <member name="M:Telerik.Web.UI.ChartClientSettings.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.EnableAxisMarkers">
            <summary>
            Gets or sets a value indicating whether the zoom assist axis markers are enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.AxisMarkersColor">
            <summary>
            Gets or sets a value indicating the color of the zoom assist axis markers.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.AxisMarkersSize">
            <summary>
            Gets or sets a value indicating the size of the axis markers in pixels (size for the YAxis marker represents its width, while size for the XAxis marker -- its height).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.EnableZoom">
            <summary>
            Gets or sets a value indicating whether the client-side zoom functionality is enabled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.ZoomRectangleColor">
            <summary>
            Gets or sets a value indicating the color of the zoom rectangle.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.ZoomRectangleOpacity">
            <summary>
            Gets or sets a value indicating the opacity of the zoom rectangle.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.ScrollMode">
            <summary>
            Gets or sets a value indicating the plotarea client scroll mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.YScrollOffset">
            <summary>
            Gets or sets a value indicating the YAxis scroll offset ratio.
            </summary>
            <value>
            YScrollOffset accepts values between 0 and 1.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.XScrollOffset">
            <summary>
            Gets or sets a value indicating the XAxis scroll offset ratio.
            </summary>
            <value>
            XScrollOffset accepts values between 0 and 1.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.YScale">
            <summary>
            Gets or sets a value indicating the plotarea scale value by Y axis.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ChartClientSettings.XScale">
            <summary>
            Gets or sets a value indicating the plotarea scale value by X axis.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadChart">
            <summary>
            The class represents the base functionality of the RadChart.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.AddChartSeries(Telerik.Charting.ChartSeries)">
            <summary>
            Adds a new data series to the RadChart's series collection.
            </summary>
            <param name="chartSeries"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.#ctor">
            <summary>
            Creates a new instance of RadChart.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.LoadControlState(System.Object)">
            <summary>
            Restores control-state information from a previous page request that was saved by the SaveControlState() method.
            </summary>
            <param name="savedState">An System.Object that represents the control state to be restored</param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.SaveControlState">
            <summary>
            Saves any server control state changes that have occurred since the time the page was posted back to the server.
            </summary>
            <returns>Returns the chart control's current state. If there is no state associated
            with the control, this method returns null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.GetControlState">
            <summary>
            The control-state information
            </summary>
            <returns>Returns the chart control's current state as objects array</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.ClearSkin">
            <summary>
            Resets current chart's skin to default
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.LoadSkin(System.IO.TextWriter)">
            <summary>
            Loads user skin from a TextWriter object
            </summary>
            <param name="text"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.SaveToXml">
            <summary>
            Exports current chart's settings into TextWriter object
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.SaveToXml(System.String)">
            <summary>
            Saves the chart's state into XML file in the specified by fileName location.
            </summary>
            <param name="fileName">Path to the file</param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.LoadFromXml(System.String)">
            <summary>
            Loads RadChart's settings and data from external XML file.
            </summary>
            <param name="relativeFileName"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.LoadFromXml(System.IO.TextReader)">
            <summary>
            Loads entire chart settings from a TextWriter object
            </summary>
            <param name="reader"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.SaveSkin">
            <summary>
            Exports current chart's skin into TextWriter object
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.Clear">
            <summary>
            Removes the data series associated with the chart control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.RemoveAllSeries">
            <summary>
            Removes all data series from the series collection without removing axis items.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.RemoveSeriesAt(System.Int32)">
            <summary>
            Removes the data series at the specified index.
            </summary>
            <param name="seriesIndex"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.GetSeries(System.Int32)">
            <summary>
            Gets a reference to the data series object at the specified index.
            </summary>
            <param name="seriesIndex"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.GetSeries(System.String)">
            <summary>
            Gets a reference to the data series object with the specified name.
            </summary>
            <param name="seriesName"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.GetSeries(System.Drawing.Color)">
            <summary>
            Gets a reference to the data series object with the specified color.
            </summary>
            <param name="seriesColor"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.CreateSeries(System.String,System.Drawing.Color,System.Drawing.Color,Telerik.Charting.ChartSeriesType)">
            <summary>
            Creates a new chart series and adds it to the series collection.
            </summary>
            <param name="seriesName"></param>
            <param name="mainColor"></param>
            <param name="secondColor"></param>
            <param name="chartSeriesType"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.Save(System.String)">
            <summary>
            Saves the chart with the specified file name.
            </summary>
            <param name="filename"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.Save(System.String,System.Drawing.Imaging.ImageFormat)">
            <summary>
            Saves the chart with the specified file name and the specified image format.
            </summary>
            <param name="filename"></param>
            <param name="imageFormat"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.SetDataSourceID(System.String)">
            <summary>
            Changes the DataSourceID property without DataBind method call
            </summary>
            <param name="id"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadChart.DataBind">
            <summary>
            Binds a data source to the invoked server control and all its child controls.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.EnableHandlerDetection">
            <summary>
                    Gets or sets a value indicating whether RadChart should automatically check for the 
                ChartHttpHandler existence in the system.web section of the application configuration file.
            </summary>
            <remarks>
                    Set this property to false if you are running your application under IIS7 Integrated Mode 
                and have set the validateIntegratedModeConfiguration flag that does not allow legacy 
                HttpHandler registration under the system.web configuration section.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.HttpHandlerUrl">
            <summary>
                Gets or sets a value indicating the URL to the ChartHttpHandler that is necessary for the correct operation 
            of the RadChart control.
            </summary>
            <value>
                Returns the URL of the ChartHttpHandler. The default value is "ChartImage.axd".
            </value>
            <remarks>
                Generally the default relative value should work as expected and you do not need to modify it manually here; 
            however in some scenarios where url rewriting is involved, the default value might not work out-of-the-box 
            and you can customize it via this property to suit the requirements of your application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.CustomFigures">
            <summary>
            Specifies the custom palettes for chart
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Chart">
            <summary>
            Chart engine
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DefaultType">
            <summary>
            Default chart series type
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.AutoLayout">
            <summary>
            Specifies AutoLayout mode to all items on the chart control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.AutoTextWrap">
            <summary>
            Specifies AutoLayout mode to all items on the chart control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.SeriesPalette">
            <summary>
            Specifies the series palette
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Appearance">
            <summary>
            Chart style
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.SkinsOverrideStyles">
            <summary>
            Should skin override user setting or not
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DataManager">
            <summary>
            Data management support object
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Series">
            <summary>
            Collection of the chart's data series.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Height">
            <summary>
            Chart height
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Width">
            <summary>
            Chart width
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.Legend">
            <summary>
            Gets or sets RadChart's legend object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.PlotArea">
            <summary>
            Specifies the chart's plot area.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.ChartTitle">
            <summary>
            The chart title message.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadChart.UseSession">
            <summary>
            Enables or disables use of session.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.CreateImageMap">
            <summary>
            Enables or disables use of image maps.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.TempImagesFolder">
            <summary>
            Sets folder for the chart's temp images.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadChart.ContentFile">
            <summary>
            Gets or sets RadChart's content file path and file name.
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadChart.ChartImageFormat">
            <summary>
            Specifies the image format in which the image is streamed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.AlternateText">
            <summary>
            The alternate text displayed when the image cannot be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.CustomPalettes">
            <summary>
            Specifies the custom palettes for chart
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.SeriesOrientation">
            <summary>
            Specifies the orientation of chart series on the plot area.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.IntelligentLabelsEnabled">
            <summary>
            Enables / disables Intelligent labels logic for series items labels in all plot areas.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.MapAreaBuilder">
            <exclude/>
            <excludetoc/>
            <summary>Image maps support</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.ClientSettings">
            <summary>
            Client-side settings.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DataSourceID">
            <summary>
            Gets or sets the ID of the control from which the data-bound control retrieves its list of data items. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DataSource">
            <summary>
            The DataSource object
            </summary>
            <remarks>Gets or sets the object from which the chart control retrieves its list of data items</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DataMember">
            <summary>
            Gets or sets the name of the list of data that the data-bound control binds to, in cases where the data source contains more than one distinct list of data items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.DataGroupColumn">
            <summary>
            Gets or sets the name of the DataSource column (member) that will be used to split one column data into several chart Series
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadChart.ScaleEnabled">
            <summary>
            This property supports the RadChart infrastructure and is not intended for public use.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ColorPickerItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.ColorPickerItem">ColorPickerItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadColorPicker">RadColorPicker</see> control.
            </summary>
            <remarks>
            	<para>The <strong>ColorPickerItemCollection</strong> class represents a collection of
                <strong>ColorPickerItem</strong> objects. The <strong>ColorPickerItem</strong> objects in turn represent 
                Colors items within a <strong>RadColorPicker</strong> control.</para>
            	<list type="bullet">
            		<item>
                        Use the <see cref="T:Telerik.Web.UI.ColorPickerItemCollection">indexer</see> to programmatically retrieve a
                        single ColorPickerItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of Items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.StronglyTypedStateManagedCollection`1.Add(`0)">Add</see> method to add Items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.StronglyTypedStateManagedCollection`1.Remove(`0)">Remove</see> method to remove Items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="T:Telerik.Web.UI.PaletteModes">
            <summary>
            Specifies the visible modes of the RadColorPicker's palette.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.PaletteModes.WebPalette">
            <summary>
            A palete with a set of predefined colors.
            </summary>
            <value>1</value>
        </member>
        <member name="F:Telerik.Web.UI.PaletteModes.RGBSliders">
            <summary>
            RGB RadSliders which define a point in the RGB color space.
            </summary>
            <value>2</value>
        </member>
        <member name="F:Telerik.Web.UI.PaletteModes.HSB">
            <summary>
            HSB (hue, saturation, lightness) representation of points in an RGB color space.
            </summary>
            <value>4</value>
        </member>
        <member name="F:Telerik.Web.UI.PaletteModes.HSV">
            <summary>
            HSV (hue, saturation, brightness) representation of points in an RGB color space.
            </summary>
            <value>8</value>
        </member>
        <member name="F:Telerik.Web.UI.PaletteModes.All">
            <summary>
            Default object behavior: all together.
            </summary>
            <value>(WebPalette | RGBSliders | HSB | HSV)</value>
        </member>
        <member name="T:Telerik.Web.UI.RadColorPicker">
            <summary>
            RadColorPicker class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadColorPicker.OnColorChanged(System.EventArgs)">
            <summary>
            Gets or sets a value indicating the server-side event handler that is called 
            when the value of the ColorPicker has been changed.
            </summary>
            <value>
            A string specifying the name of the server-side event handler that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnColorChanged</strong>
            		<font color="black">event handler that is called 
            when the value of the ColorPicker has been changed.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnColorChanged</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnColorChanged="OnColorChanged"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadColorPicker.GetStandardColors">
            <summary>
            Retrieves all the colors from the Standard preset.
            </summary>
            <returns>
            	<font size="1">A <strong>ColorPickerItemCollection</strong> collection with the colors from the Standard preset.</font>
            </returns>
            <example>
            	<code lang="VB" title="[New Example]">
            Dim colors As ColorPickerItemCollection = RadColorPicker1.GetStandardColors()
                </code>
            	<code lang="CS" title="[New Example]">
            ColorPickerItemCollection colors = RadColorPicker1.GetStandardColors();
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadColorPicker.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous request that was saved with the System.Web.UI.WebControls.WebControl.SaveViewState() method.
            </summary>
            <param name="state">An object that represents the control state to restore.</param>     
        </member>
        <member name="M:Telerik.Web.UI.RadColorPicker.SaveViewState">
            <summary>
            Saves any state that was modified after the System.Web.UI.WebControls.Style.TrackViewState() method was invoked.
            </summary>
            <returns>An object that contains the current view state of the control; otherwise, if there is no view state associated with the control, null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadColorPicker.TrackViewState">
            <summary>
            Causes the control to track changes to its view state so they can be stored in the object's System.Web.UI.Control.ViewState property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.Items">
            <summary>
            Collection of the color picker items
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.Preset">
            <summary>
            Get/Set the preset colors of the color picker
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.SelectedColor">
            <summary>
            Get/Set the selected color of the ColorPicker
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.Columns">
            <summary>
            Get/Set the number of the columns in the palette
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.AutoPostBack">
            <summary>
            True to cause a postback on value change.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.ShowEmptyColor">
            <summary>
            True to show the None color selection
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.ShowIcon">
            <summary>
            True to show the color picker as an icon, which when clicked opens the palette
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.PreviewColor">
            <summary>
            True to preview the color which has been selected
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.Localization">
            <summary>
            Gets or sets the localization strings for the color picker
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.PickColorText">
            <summary>
            Gets or sets the tooltip of the icon
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.CurrentColorText">
            <summary>
            Gets or sets the text in the icon
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.NoColorText">
            <summary>
            Gets or sets the text for the no color box
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.PaletteModes">
            <summary>
            Gets or sets a value indicating the behavior of this object - if can be resized, has expand/collapse commands, closed command, etc.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.Overlay">
            <summary>Gets or sets a value indicating whether the colorpicker will create an overlay element.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.KeepInScreenBounds">
            <summary>Gets or sets a value indicating whether the ColorPicker popup will stay in the visible viewport of the browser window.</summary>
            <value>The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.ShowRecentColors">
            <summary>Gets or sets a value indicating whether the ColorPicker will display an array of recently used colors.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.EnableCustomColor">
            <summary>Gets or sets a value indicating whether the ColorPicker will display a button for choosing a custom color in the WebPalette tab.</summary>
            <value>The default value is <strong>false</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadColorPicker</strong> control is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, args)<br/>
                         {<br/>
                         var ColorPicker = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.OnClientColorPreview">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when a user previews a color.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker that fired the event.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientColorPreview</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientColorPreview(sender, args)<br/>
                         {<br/>
                         var ColorPicker = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientColorPreview="OnClientColorPreview"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.OnClientColorChanging">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            just before the value of the color picker is changed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientColorChanging</strong>
            		<font color="black">client-side event handler that is called 
            just before the value of the color picker is changed.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientColorChanging</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnColorChangingHandler(sender, args)<br/>
                         {<br/>
                         var ColorPicker = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientColorChanging="OnColorChangingHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.OnClientColorChange">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            while the value of the color picker has been changed.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientColorChange</strong>
            		<font color="black">client-side event handler that is called 
            when the value of the color picker has been changed.</font> Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the
                <strong>OnClientColorChange</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnColorChangeHandler(sender, args)<br/>
                         {<br/>
                         var ColorPicker = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientColorChange="OnColorChangeHandler"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadColorPicker.OnClientPopUpShow">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called 
            when the popup element of the RadColorPicker (in case ShowIcon=true) shows.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is empty string.
            </value>
            <remarks>
            	<para>If specified, the <strong>OnClientPopUpShow</strong>
            		<font color="black">client-side event handler is called when the value of the color picker has been changed.</font>
                    Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadColorPicker object.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientPopUpShow</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientPopUpShow(sender, args)<br/>
                         {<br/>
                         var ColorPicker = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadColorPicker ID="RadColorPicker1"<br/>
                         runat= "server"<br/>
            			<strong>OnClientPopUpShow="OnClientPopUpShow"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadColorPicker&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.ComboBoxAnimationSettings">
            <summary>
            Represents the animation settings like type and duration for the <see cref="T:Telerik.Web.UI.RadComboBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AnimationSettings">
            <summary>
            Represents the animation settings like type and duration.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.AnimationSettings.#ctor(System.String,System.Web.UI.StateBag)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.AnimationSettings.Type">
            <summary><para>Gets or sets the effect that will be used for the animation.</para></summary>
            <value>
                On of the <see cref="T:Telerik.Web.UI.AnimationType">AnimationType</see> values. The default value
                is <strong>OutQuart</strong>.
            </value>
            <remarks>
            Use the <strong>Type</strong> property of the <strong>AnimationSettings</strong>
            class to customize the effect used for the animation. To turn off animation effects set
            this property to <strong>None</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.AnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>An integer representing the duration in milliseconds of the animation.</value>
        </member>
        <member name="P:Telerik.Web.UI.ComboBoxAnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>
            	An integer representing the duration in milliseconds of the animation. 
            	The default value is 450 milliseconds.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxFilter">
            <summary>
            The Telerik.Web.UI.RadComboBoxFilter enumeration supports three values - None, Contains, StartsWith. Default is None.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxSort">
            <summary>
            The Telerik.Web.UI.RadComboBoxSort enumeration supports three values - None, Ascending, Descending. Default is None.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBoxSort.None">
            <summary>
            Items are not sorted at all.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBoxSort.Ascending">
            <summary>
            Items are sorted in ascending order (min to max)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadComboBoxSort.Descending">
            <summary>
            Items are sorted in descending order (max to min)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ComboBoxStrings">
            <summary>
            The localization strings to be used in RadComboBox.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.HttpRequestInfo">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.IHttpRequestInfo">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.Common.ControlRenderer.GetControlScriptsCollection(System.Web.UI.Control,System.Boolean)">
            <summary>
            Gets all script URLs that should be registered by a script manager for the given control
            </summary>
            <param name="controlRef">A control reference to get scripts from</param>
            <param name="isRecursive">Whether to check child controls as well</param>
            <returns>A list of script URLs</returns>
        </member>
        <member name="T:Telerik.Web.UI.Common.RadControlRenderHelper">
            <summary>
            This control is used to render a on a dummy page so we can get the actual control scripts when RegisterWithScriptManager is false
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompression.IsHttpCompressionEnabled">
            <summary>
            Gets value indicating if the HTTP compression is activated
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompression.GetConfigurationSection">
            <summary>
            Retrieves <see cref="T:Telerik.Web.UI.RadCompression"/>'s configuration section from the webconfig 
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCompression.ShouldApplyOnPostback">
            <summary>
            Gets value indicating if the compression filter should be applied on full page postbacks
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadCompression.IsStateCompressionEnabled">
            <summary>
            Gets value indicating if the ViewState compression is activated
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadCompression.ShouldExplicitlyAddContentEncoding">
            <summary>
            Indicates if compression type should be explicitly added to content encoding header
            </summary>
            <returns></returns>
        </member>
        <member name="P:Telerik.Web.UI.RadCompressionExcludeSetting.HandlerPath">
            <summary>
            Represents request handler name
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadCompressionExcludeSetting.MatchExact">
            <summary>
            Indicates if handler's name represents only portion of request handler
            URL. Default value is true
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadHiddenFieldPageStatePersister.ShouldApplyCompressionOnAjax">
            <summary>
            If return <c>true</c> ViewState data will be compressed even the
            HTTPCompression is applied.Default is <c>false</c>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.#ctor">
            <summary>
            creates a new instance of the LayoutBuilder class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.LoadTableHtmlXml">
            <summary>
            Sets the RowCollection collection using the XML in the TableHtmlXml
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.GetLayoutXml">
            <summary>
            Returns a XmlDocument object based on the LayoutBuilderRow collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.GetLayoutTableHTML">
            <summary>
            Returns a Html Table version of current Layout.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.WriteLayoutXmlToFile(System.String)">
            <summary>
            Saves the 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.LoadXmlDocument(System.Xml.XmlDocument)">
            <summary>
            Saves the 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Loads the client state data
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilder.SaveClientState">
            <summary>
            Saves the client state data
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.LayoutXmlFile">
            <summary>
            Gets or sets the xml file.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.LayoutWidth">
            <summary>
            Gets or sets the width of the Layout.
            </summary>        
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.LayoutHeight">
            <summary>
            Gets or sets the height of the Layout.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.RequireCellId">
            <summary>
            Gets or sets the value indicating whether every cell should has id.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.TableHtml">
            <summary>
            Gets or sets the current table html source.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilder.TableHtmlXml">
            <summary>
            Gets a XmlDocument in which is loaded the TableHtml.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.LayoutBuilderEngine">
            <summary>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.LayoutBuilderAttributeCollection.HashCodeCombiner">
            <summary>
            Copied from Reflector
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilderCell.System#Web#UI#IAttributeAccessor#GetAttribute(System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.LayoutBuilderCell.System#Web#UI#IAttributeAccessor#SetAttribute(System.String,System.String)">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.LayoutBuilderCell.Attributes">
            <summary>
            Gets the custom attributes which will be serialized on the client.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ClientPersistedPropertyAttribute">
            <summary>
            Used internally.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ClientOperation`1">
            <summary>
            	Represents an client-side operation (e.g. adding an item, removing an item, updating an item etc.)
            </summary>
            <typeparam name="T">The type of the item (e.g. <see cref="T:Telerik.Web.UI.RadTreeNode"/>, <see cref="T:Telerik.Web.UI.RadMenuItem"/>,
            	<see cref="T:Telerik.Web.UI.RadComboBoxItem"/>, <see cref="T:Telerik.Web.UI.RadToolBarItem"/>, <see cref="T:Telerik.Web.UI.RadTab"/>, <see cref="T:Telerik.Web.UI.RadPanelItem"/>)
            </typeparam>
        </member>
        <member name="P:Telerik.Web.UI.ClientOperation`1.Item">
            <summary>
            Returns the item (<see cref="T:Telerik.Web.UI.RadTreeNode"/>, <see cref="T:Telerik.Web.UI.RadMenuItem"/>,
            <see cref="T:Telerik.Web.UI.RadComboBoxItem"/>, <see cref="T:Telerik.Web.UI.RadToolBarItem"/>, <see cref="T:Telerik.Web.UI.RadTab"/>, <see cref="T:Telerik.Web.UI.RadPanelItem"/>)
            associated with this client operation.
            </summary>
            <remarks>
            When the <see cref="P:Telerik.Web.UI.ClientOperation`1.Type"/> of the operation is <see cref="F:Telerik.Web.UI.ClientOperationType.Clear"/> the Item property will
            return null (Nothing in VB.NET) in case the items of the control have been cleared.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ClientOperation`1.Type">
            <summary>
            Gets the type of the client operation
            </summary>
            <value>
            	One of the <see cref="T:Telerik.Web.UI.ClientOperationType"/> enumeration values.
            </value>
            <remarks>
            	If the Type property is equal to <see cref="F:Telerik.Web.UI.ClientOperationType.Update"/> the <see cref="T:Telerik.Web.UI.UpdateClientOperation`1"/> type will be used.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfInterpreter.AddInterpreterListener(Telerik.Web.UI.Editor.Rtf.IRtfInterpreterListener)">
            <summary>
            Adds a listener that will get notified along the interpretation process.
            </summary>
            <param name="listener">the listener to add</param>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfInterpreter.RemoveInterpreterListener(Telerik.Web.UI.Editor.Rtf.IRtfInterpreterListener)">
            <summary>
            Removes a listener from this instance.
            </summary>
            <param name="listener">the listener to remove</param>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfInterpreter.Interpret(Telerik.Web.UI.Editor.Rtf.IRtfGroup)">
            <summary>
            Parses the given RTF document and informs the registered listeners about
            all occurring events.
            </summary>
            <param name="rtfDocument">the RTF documet to interpret</param>
            <exception cref="T:Telerik.Web.UI.Editor.Rtf.RtfException">in case of an unsupported RTF structure</exception>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.IRtfTextFormat.SuperScript">
            <summary>
            Combines the setting for sub/super script: negative values are considered
            equivalent to subscript, positive values correspond to superscript.<br/>
            Same unit as font size.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfColorException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfInterpreterException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInterpreterException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInterpreterException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInterpreterException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInterpreterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfColorTableFormatException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorTableFormatException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorTableFormatException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorTableFormatException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfColorTableFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfFontTableFormatException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfFontTableFormatException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfFontTableFormatException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfFontTableFormatException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfFontTableFormatException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfInvalidDataException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInvalidDataException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInvalidDataException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInvalidDataException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfInvalidDataException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfUndefinedColorException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedColorException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedColorException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedColorException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedColorException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfUndefinedFontException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedFontException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedFontException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedFontException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUndefinedFontException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfUnsupportedStructureException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnsupportedStructureException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnsupportedStructureException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnsupportedStructureException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnsupportedStructureException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfGroup.SelectChildGroupWithDestination(System.String)">
            <summary>
            Searches for the first child group which has a tag with the given name
            as its first child, e.g. the given destination.
            </summary>
            <param name="destination">the name of the start tag of the group to search</param>
            <returns>the first matching group or null if nothing found</returns>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.IRtfGroup.Destination">
            <summary>
            Returns the name of the first element if it is a tag, null otherwise.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.IRtfGroup.IsExtensionDestination">
            <summary>
            Determines whether the first element is a '\*' tag.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParser.AddParserListener(Telerik.Web.UI.Editor.Rtf.IRtfParserListener)">
            <summary>
            Adds a listener that will get notified along the parsing process.
            </summary>
            <param name="listener">the listener to add</param>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParser.RemoveParserListener(Telerik.Web.UI.Editor.Rtf.IRtfParserListener)">
            <summary>
            Removes a listener from this instance.
            </summary>
            <param name="listener">the listener to remove</param>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParser.Parse(Telerik.Web.UI.Editor.Rtf.IRtfSource)">
            <summary>
            Parses the given RTF text that is read from the given source.
            </summary>
            <param name="rtfTextSource">the source with RTF text to parse</param>
            <exception cref="T:Telerik.Web.UI.Editor.Rtf.RtfException">in case of invalid RTF syntax</exception>
            <exception cref="T:System.IO.IOException">in case of an IO error</exception>
            <exception cref="T:System.ArgumentNullException">in case of a null argument</exception>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.IRtfParser.IgnoreContentAfterRootGroup">
            <summary>
            Determines whether to ignore all content after the root group ends.
            Set this to true when parsing content from streams which contain other
            data after the RTF or if the writer of the RTF is known to terminate the
            actual RTF content with a null byte (as some popular sources such as
            WordPad are known to behave).
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.ParseBegin">
            <summary>
            Called before any other of the methods upon starting parsing of new input.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.GroupBegin">
            <summary>
            Called when a new group began.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.TagFound(Telerik.Web.UI.Editor.Rtf.IRtfTag)">
            <summary>
            Called when a new tag was found.
            </summary>
            <param name="tag">the newly found tag</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.TextFound(Telerik.Web.UI.Editor.Rtf.IRtfText)">
            <summary>
            Called when a new text was found.
            </summary>
            <param name="text">the newly found text</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.GroupEnd">
            <summary>
            Called after a group ended.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.ParseSuccess">
            <summary>
            Called if parsing finished sucessfully.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.ParseFail(Telerik.Web.UI.Editor.Rtf.RtfException)">
            <summary>
            Called if parsing failed.
            </summary>
            <param name="reason">the reason for the failure</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.IRtfParserListener.ParseEnd">
            <summary>
            Called after parsing finished. Always called, also in case of a failure.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.IRtfTag.FullName">
            <summary>
            Returns the name together with the concatenated value as it stands in the rtf.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfBraceNestingException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfStructureException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfParserException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfParserException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfParserException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfParserException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfParserException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfStructureException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfStructureException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfStructureException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfStructureException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfBraceNestingException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfBraceNestingException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfBraceNestingException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfBraceNestingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfEmptyDocumentException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEmptyDocumentException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEmptyDocumentException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEmptyDocumentException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEmptyDocumentException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfEncodingException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEncodingException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEncodingException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEncodingException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfEncodingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfHexEncodingException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfHexEncodingException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfHexEncodingException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfHexEncodingException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfHexEncodingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfMissingCharacterException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMissingCharacterException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMissingCharacterException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMissingCharacterException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMissingCharacterException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfMultiByteEncodingException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMultiByteEncodingException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMultiByteEncodingException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMultiByteEncodingException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfMultiByteEncodingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.RtfUnicodeEncodingException">
            <summary>Thrown upon RTF specific error conditions.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnicodeEncodingException.#ctor">
            <summary>Creates a new instance.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnicodeEncodingException.#ctor(System.String)">
            <summary>Creates a new instance with the given message.</summary>
            <param name="message">the message to display</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnicodeEncodingException.#ctor(System.String,System.Exception)">
            <summary>Creates a new instance with the given message, based on the given cause.</summary>
            <param name="message">the message to display</param>
            <param name="cause">the original cause for this exception</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.RtfUnicodeEncodingException.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
            <summary>Serialization support.</summary>
            <param name="info">the info to use for serialization</param>
            <param name="context">the context to use for serialization</param>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Strings">
            <summary>Provides strongly typed resource access for this namespace.</summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.StringsBase">
            <summary>
            Provides some helper functionality to keep resource handling in a
            namespace as simple and uniform as possible.
            </summary>
            <remarks>
            intended to be used by a singleton class per namespace, which should
            commonly be named <c>Strings</c>. This singleton instance should
            provide access to resources via strongly typed properties, thus
            avoiding coding errors with misspelled resource identifiers.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.StringsBase.Format(System.String,System.Object[])">
            <summary>
            Formats the given format-string with the invariant culture and the
            given arguments.
            </summary>
            <param name="format">the string to format</param>
            <param name="args">the arguments to fill in</param>
            <returns>the formatted string</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.StringsBase.NewInst(System.Type)">
            <summary>
            Creates a <c>ResourceManager</c> instance for the given type, loading its resources
            from the type's full name, suffixed with '<c>.resx</c>'.
            </summary>
            <param name="singletonType">the type of the singleton</param>
            <returns>a <c>ResourceManager</c> for loading the given type's resources</returns>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.ArgumentCheck">
            <summary>
            Some helper methods for common checks on arguments.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.ArgumentCheck.NonemptyTrimmedString(System.String,System.String)">
            <summary>
            Checks the given value and returns it.
            </summary>
            <param name="value">the value to check</param>
            <param name="name">the name for the <c>ArgumentException</c></param>
            <returns>the trimmed value</returns>
            <exception cref="T:System.ArgumentNullException">in case the given value is null</exception>
            <exception cref="T:System.ArgumentException">in case the trimmed given value is empty</exception>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.ArgumentCheck.NonemptyTrimmedString(System.String,System.String,System.String)">
            <summary>
            Checks the given value and returns it.
            </summary>
            <param name="value">the value to check</param>
            <param name="exceptionMessage">the message in the <see cref="T:System.ArgumentException"/>
            in case the given value is empty</param>
            <param name="name">the name for the <c>ArgumentException</c></param>
            <returns>the trimmed value</returns>
            <exception cref="T:System.ArgumentNullException">in case the given value is null</exception>
            <exception cref="T:System.ArgumentException">in case the trimmed given value is empty</exception>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.Collection.CollectionTool">
            <summary>
            Some utility methods for collections.
            </summary>
            <remarks>
            Just a container for some static methods which make life somewhat easier.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.CollectionTool.ToString(System.Collections.IEnumerable,System.String,System.String,System.String,System.String)">
            <summary>
            conventiently concatenates the given items to a string for debugging purposes.
            </summary>
            <remarks>
            the whole collection is embraced with square brackets and the individual items
            are separated by a comma. null items will be displayed as 'null' instead of the
            empty string.
            </remarks>
            <param name="enumerable">the collection of items to print</param>
            <param name="startText">the starting text</param>
            <param name="endText">the ending textrint</param>
            <param name="delimiterText">the item delimiter text</param>
            <param name="undefinedValueText">text for undefined values</param>
            <returns>a concatenation of the string representations of all the items</returns>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection">
            <summary>
            A simple immutable storage utility to hold multiple strings.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.CopyTo(System.String[],System.Int32)">
            <summary>
            Copies this collections items to the given array.
            </summary>
            <param name="array">the target array</param>
            <param name="index">the target index</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.IndexOf(System.String)">
            <summary>
            Locates the given string in this collection.
            </summary>
            <param name="test">the string to search</param>
            <returns>the position of the given string in this collection or -1 if not found</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.Contains(System.String)">
            <summary>
            Tests whether the given string is present in this collection.
            </summary>
            <param name="test">the string to search</param>
            <returns>true if this collection contains such a string, false otherwise</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.FormatCommaSeparated">
            <summary>
            Formats the lists items as a comma separated string without any special
            quoting (e.g. if the items contain commas themselves ...)
            </summary>
            <returns>a string with all items separated by commas</returns>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.Count">
            <summary>
            Access to the number of items.
            </summary>
            <value>the number of items in the collection</value>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection.Item(System.Int32)">
            <summary>
            Index access to the items of this collection.
            </summary>
            <param name="index">the index of the item to retrieve</param>
            <returns>the item at the given position</returns>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection">
            <summary>
            A simple immutable storage utility to hold multiple strings.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.#ctor">
            <summary>
            Creates a new empty instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.#ctor(System.Collections.ICollection)">
            <summary>
            Creates a new instance with all the items of the given collection.
            </summary>
            <param name="collection">the items to add. may not be null. any non-string items
            in this collection will be returned as null when trying to access them later.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.#ctor(Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection)">
            <summary>
            Creates a new instance with all the items of the given collection.
            </summary>
            <param name="collection">the items to add. may not be null. any non-string items
            in this collection will be returned as null when trying to access them later.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.#ctor(System.String[])">
            <summary>
            Creates a new instance with all the items of the given array.
            </summary>
            <param name="items">the items to add. may be null or empty. any null items in
            this array will be added too.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.Add(System.String)">
            <summary>
            Adds the given item.
            </summary>
            <param name="item">the item to add</param>
            <returns>the insertion position</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.Remove(System.String)">
            <summary>
            Removes the given item.
            </summary>
            <param name="item">the item to remove</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the given item.
            </summary>
            <param name="index">the index of the item to remove</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.Add(System.String,System.Int32)">
            <summary>
            Adds the given item at the given position.
            </summary>
            <param name="item">the item to add</param>
            <param name="pos">the position to insert the new item into</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.AddAll(Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection)">
            <summary>
            Adds all items in the given list to this instance.
            </summary>
            <param name="items">the items to add</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.AddCommaSeparated(System.String)">
            <summary>
            Adds all items in the given comma separated list to this instance.
            </summary>
            <param name="commaSeparatedList">the items to add</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.RemoveAll(Telerik.Web.UI.Editor.Rtf.Sys.Collection.IStringCollection)">
            <summary>
            Removes all items in the given list from this instance.
            </summary>
            <param name="items">the items to remove</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.CopyTo(System.String[],System.Int32)">
            <summary>
            Copies this collections items to the given array.
            </summary>
            <param name="array">the target array</param>
            <param name="index">the target index</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.ToString">
            <summary>
            Lists the contents of this collection.
            </summary>
            <returns>a string with the items of this collection</returns>
        </member>
        <member name="P:Telerik.Web.UI.Editor.Rtf.Sys.Collection.StringCollection.Item(System.Int32)">
            <summary>
            Index access to the items of this collection.
            </summary>
            <param name="index">the index of the item to retrieve</param>
            <returns>the item at the given position</returns>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.HashTool">
            <summary>
            Some hash utility methods for collections.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Rtf.Sys.Strings">
            <summary>Provides strongly typed resource access for this namespace.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Rtf.Sys.StringTool.SplitQuoted(System.String,System.Char,System.Char,System.Boolean,System.Char[])">
            <summary>
            Splits a string in the same way as the System.String.Split() method but
            with support for special treatment for escaped characters and for quoted
            sections which won't be split.
            </summary>
            <remarks>
            Escaping supports the following special treatment:
            <list type="bullet">
            <item>escape is followed by 'n': a new line character is inserted</item>
            <item>escape is followed by 'r': a form feed character is inserted</item>
            <item>escape is followed by 't': a tabulator character is inserted</item>
            <item>escape is followed by 'x': the next two characters are interpreted
            as a hex code of the character to be inserted</item>
            <item>any other character after the escape is inserted literally</item>
            </list>
            Escaping is applied within and outside of quoted sections.
            </remarks>
            <param name="toSplit">the string to split</param>
            <param name="quote">the quoting character, e.g. '&quot;'</param>
            <param name="escape">an escaping character to use both within and outside
            of quoted sections, e.g. '\\'</param>
            <param name="includeEmptyUnquotedSections">whether to return zero-length sections
            outside of quotations or not. empty sections adjacent to a quoted section are
            never returned.</param>
            <param name="separator">the separator character(s) which will be used to
            split the string outside of quoted sections</param>
            <returns>the array of sections into which the string has been split up.
            never null but possibly empty.</returns>
        </member>
        <member name="T:Telerik.Web.UI.FileExplorer.FileExplorerControls">
            <summary>
            This enumeration lists the available controls in the file explorer and allows customizing the look of the control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.TreeView">
            <summary>
            A treeview, which shows the folders in the file explorer.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.Grid">
            <summary>
            A grid, which shows the files/folders in the current file explorer folder
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.Toolbar">
            <summary>
            A toolbar, which provides shortcuts for the file explorer commands (delete, new folder, back, forward, etc.)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.AddressBox">
            <summary>
            A textbox, which shows the current selected path in the file explorer
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.ContextMenus">
            <summary>
            The grid and treeview context menus, which are shown when the user right clicks inside the controls.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerControls.All">
            <summary>
            The default value for the RadFileExplorer control - all controls are shown
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.FileExplorer.FileExplorerMode">
            <summary>
            This enumeration lists the possible FileExplorer control operation modes. 
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerMode.Default">
            <summary>
            The Default mode renders all controls in the FileExplorer (tree, grid, toolbar, etc.)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.FileExplorer.FileExplorerMode.FileTree">
            <summary>
            The FileTree mode renders both files and folders in the tree and removes the grid control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadFileExplorer">
            <summary>
            Telerik File Explorer control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.OnItemCommand(Telerik.Web.UI.RadFileExplorerEventArgs)">
            <summary>
            Fired when on all file explorer file and folder operations.
            </summary>
            <param name="e">an instance of the RadFileExplorerEventArgs event argument.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.OnExplorerPopulated(Telerik.Web.UI.RadFileExplorerPopulatedEventArgs)">
            <summary>
            Fired when the grid data is retrieved from the content provider.
            </summary>
            <param name="e">an instance of the RadFileExplorerEventArgs event argument.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.UpdateLocalization">
            <summary>
            Updates the strings that are localizable in the FileExplorer controls. Useful if you change the Localization collection after it has already
            set the values to the controls.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.RadTreeView1_NodeExpand(System.Object,Telerik.Web.UI.RadTreeNodeEventArgs)">
            <summary>
            Implemented using ASP.NET 2.0 Callback functionality built into RadTreeView
            </summary>
            <param name="sender">the tree instance</param>
            <param name="e">event arguments</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.RadTreeView1_NodeEdit(System.Object,Telerik.Web.UI.RadTreeNodeEditEventArgs)">
            <summary>
            Handle Renaming of folders
            </summary>
            <param name="sender">tree instance</param>
            <param name="e">rename event arguments</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.BindExplorer">
            <summary>
            Rebinds the tree in the RadFileExplorer control. If there were any nodes in the tree when this method is called,
            they will be cleared unless you set the RadFileExplorer.Tree.AppendDataBoundItems property to true.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.PopulateTreeNode(Telerik.Web.UI.RadTreeNode)">
            <summary>
            This method is used in the RadTreeView1_NodeExpand handler, in the TreeUpdatePanel_AjaxRequest method, when a folder is created
            and in the TreeUpdatePanel_AjaxRequest method, in order to reach a node in the tree
            </summary>
            <param name="currNode">The node to be populated</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.CopyOrMoveTreeNode(Telerik.Web.UI.RadTreeNode,Telerik.Web.UI.RadTreeNode,System.Boolean)">
            <summary>
            This method is used in OnNodeEdit handler
            </summary>
            <returns>the virtual path of the new node</returns>
            <param name="sourceNode">source node</param>
            <param name="destNode">destination node</param>
            <param name="isCopying">true for a copy operation</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.RenameTreeNode(Telerik.Web.UI.RadTreeNode,System.String)">
            <summary>
            This method is used in OnNodeEdit handler and in RenameGridItem method to handle renaming the folder
            and node in tree
            </summary>
            <returns>the virtual path of the new node</returns>
            <param name="node">node to rename</param>
            <param name="newName">new name</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.CreateFolder(System.String,System.String)">
            <summary>
            Create folder when perform this action in tree or in grid
            </summary>
            <param name="currNodeValue">parent folder path</param>
            <param name="newDirName">new folder name</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.DeleteItems(System.String[])">
            <summary>
            delete folder/file(s) from the grid or tree
            </summary>
            <param name="arguments">a list of virtual paths to the item being deleted</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.GetExplorerData(System.String,System.String,System.Int32,System.Int32,System.Boolean,System.String,System.Int32@)">
            <summary>
            Get the Grid data for the current selected folder in the file explorer tree
            </summary>
            <param name="path">path to current selected folder</param>
            <param name="sortExpression">sort argument (column and direction)</param>
            <param name="startIndex">the index of the first item to return (used for paging)</param>
            <param name="maxRowNumber">the number of items to return (used for paging)</param>
            <param name="includeFiles">if set to true, will return files and folders, otherwise only folders</param>
            <param name="control">the control that needs the data ("grid" or "tree")</param>
            <param name="itemsCount">out parameter - set to the number of items returned</param>
            <returns>a list of files and folders in the selected path</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.GetExplorerData(System.String,System.String,System.Int32,System.Int32,System.Boolean,System.String,System.Int32@,System.String)">
            <summary>
            Get the Grid data for the current selected folder in the file explorer tree
            </summary>
            <param name="path">path to current selected folder</param>
            <param name="sortExpression">sort argument (column and direction)</param>
            <param name="startIndex">the index of the first item to return (used for paging)</param>
            <param name="maxRowNumber">the number of items to return (used for paging)</param>
            <param name="includeFiles">if set to true, will return files and folders, otherwise only folders</param>
            <param name="control">the control that needs the data ("grid" or "tree")</param>
            <param name="itemsCount">out parameter - set to the number of items returned</param>
            <param name="filterKeyWord">the keyword used to filter the items in the grid</param>
            <returns>a list of files and folders in the selected path</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.LoadViewState(System.Object)">
            <summary>
            Restores view-state information from a previous request that was saved with the System.Web.UI.WebControls.WebControl.SaveViewState() method.
            </summary>
            <param name="state">An object that represents the control state to restore.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.SaveViewState">
            <summary>
            Saves any state that was modified after the System.Web.UI.WebControls.Style.TrackViewState() method was invoked.
            </summary>
            <returns>An object that contains the current view state of the control; otherwise, if there is no view state associated with the control, null.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadFileExplorer.TrackViewState">
            <summary>
            Causes the control to track changes to its view state so they can be stored in the object's System.Web.UI.Control.ViewState property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.ExplorerMode">
            <summary>
            Gets or sets the current FileExplorerMode (e.g. default, show files in the tree, etc.)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.PageSize">
            <summary>
            Gets or sets the current PageSize of the grid
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.AllowPaging">
            <summary>
            When set to true, this property will enable paging in the File Explorer's Grid component.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableFilterTextBox">
            <summary>
            When set to true, renders a textbox used to filter files in the grid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableFilteringOnEnterPressed">
            <summary>
            When set to true, performs the filtering after the "Enter" key is pressed. 
            <strong>EnableFilterTextBox</strong> should be set to true (i.e. filtering enabled) to enable filtering.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.FilterTextBoxLabel">
            <summary>
            Gets or sets the text of the label displayed next to the Filter TextBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableCopy">
            <summary>
            Gets or sets a value indicating whether to allow copying of files/folders
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableCreateNewFolder">
            <summary>
            Gets or sets a value indicating whether to allow creating new folders
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableOpenFile">
            <summary>
            Gets or sets a value indicating whether to allow opening a new window with the file
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.EnableAsyncUpload">
            <summary>
            Gets or sets a value indicating whether to allow opening a new window with the file
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Width">
             <summary>
             Gets or sets the width of the Web server control.
             </summary>
             <value>
              A System.Web.UI.WebControls.Unit that represents the width of the control.
              The default is System.Web.UI.WebControls.Unit.Empty.
            </value>
             <exception cref="T:System.ArgumentException">The width of the Web server control was set to a negative value.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.TreePaneWidth">
             <summary>
             Gets or sets the width of the file explorer's tree pane
             </summary>
             <value>
              A System.Web.UI.WebControls.Unit that represents the width of the control.
              The default is 222 pixels.
            </value>
             <exception cref="T:System.ArgumentException">The width of the Web server control was set to a negative value.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Height">
             <summary>
             Gets or sets the height of the Web server control.
             </summary>
             <value>
              A System.Web.UI.WebControls.Unit that represents the height of the control.
              The default is System.Web.UI.WebControls.Unit.Empty.
            </value>
             <exception cref="T:System.ArgumentException">The height of the Web server control was set to a negative value.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.ToolBar">
            <summary>
            Gets a reference to the toolbar, which shows on the top of the file explorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Grid">
            <summary>
            Gets a reference to the grid, which shows on the right of the file explorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.TreeView">
            <summary>
            Gets a reference to the tree, which shows on the left of the file explorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.GridContextMenu">
            <summary>
            Gets a reference to the context menu, which shows when the user right-clicks the grid control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Upload">
            <summary>
            Gets a reference to the upload component, which shows inside a popup window when the user wants to upload files.
            <remarks>If you want to set the allowed file types or max upload file size, please use the Configuration property</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.AsyncUpload">
            <summary>
            Gets a reference to the async upload component, which shows inside a popup window when the user wants to upload files.
            <remarks>If you want to set the allowed file types or max upload file size, please use the Configuration property</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.WindowManager">
            <summary>
            Gets a reference to the window component, which shows the upload popup and the alert/confirmation dialogs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Splitter">
            <summary>
            Gets a reference to the splitter component in the file explorer
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.AccessKey">
            <summary>
            Specifies an access key to enable keyboard navigation for the File Explorer control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Language">
            <summary>
            Gets or sets a string containing the localization language for the File Explorer UI
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.LocalizationPath">
            <summary>
            Gets or sets a value indicating where the control will look for its .resx localization files.
            By default these files should be in the App_GlobalResources folder. However, if you cannot put
            the resource files in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource files.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadEditorResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the control localization files from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Skin">
            <summary>
            Specifies the skin that will be used by the control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.Configuration">
            <summary>
            Contains the FileExplorer configuration (paths, content provider type, etc.).
            </summary>
            <value>
            An <see cref="T:Telerik.Web.UI.FileManagerDialogConfiguration">FileManagerDialogConfiguration</see>
            instance, containing the configuration of the control
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.InitialPath">
            <summary>
            Gets or sets the initial path that will be shown in the file explorer control. 
            </summary>
            <remarks>
            If this property is not set, the file explorer will use the first path in the ViewPaths as the initial one.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.DisplayUpFolderItem">
            <summary>
            Gets or sets a value indicating whether to show the up one folder (..) item in the grid if available.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.CurrentFolder">
            <summary>
            Returns the currently selected node in the tree. This property is useful during postbacks.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.KeyboardShortcuts">
            <summary>
            Gets the Keyboard Shortcuts of the FileExplorer control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientItemSelected">
            <summary>
            The name of the javascript function called when the user selects an item in the explorer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientFolderLoaded">
            <summary>
            The name of the javascript function called when a folder is loaded in the grid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientFileOpen">
            <summary>
            The name of the javascript function called when an item is double clicked in the grid.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientFolderChange">
            <summary>
            The name of the javascript function called when the the selected folder in the tree changes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientInit">
            <summary>
            The name of the javascript function called before the control loads in the browser.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientLoad">
            <summary>
            The name of the javascript function called when the control loads in the browser.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientCreateNewFolder">
            <summary>
            The name of the javascript function called when the user tries to create a new folder.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientDelete">
            <summary>
            The name of the javascript function called when the user tries to delete a file.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientMove">
            <summary>
            The name of the javascript function called when the user tries to rename/move a file or folder.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientCopy">
            <summary>
            The name of the javascript function called when the user tries to copy a file or folder.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorer.OnClientFilter">
            <summary>
            The name of the javascript function called when the user filters the files in the grid.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFileExplorer.ItemCommand">
            <summary>
            This event is fired when on all file and folder operations of the file explorer. If you wish to cancel the command
            simply return False from your event handler.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFileExplorer.ExplorerPopulated">
            <summary>
            This event is fired when the grid data is retrieved from the content provider
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadFileExplorer.TreeNodeTemplate">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorerEventArgs.Path">
            <summary>
            Gets the virtual path for the current item command
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorerEventArgs.NewPath">
            <summary>
            Gets the second virtual path for the current item command (for rename, move, etc. commands)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorerEventArgs.Command">
            <summary>
            Gets the virtual command name
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFileExplorerEventArgs.Cancel">
            <summary>
            Set this argument to true if you wish to cancel the file explorer command
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.ImageEditor">
            <summary>
            (OBSOLETE: Please use the RadImageEditor control for editing images.)
            Provides a set of image manipulation functions (resize, crop, transform) for basic image editor support.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.#ctor(System.Drawing.Bitmap)">
            <summary>
            Creates a new instance of the ImageEditor class with the specified image
            </summary>
            <param name="img">An image that will be changed by the editor functions</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Resize(System.Drawing.Size)">
            <summary>
            resize an image using the high quality algorithm.
            </summary>
            <param name="newSize">The new image size</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Resize(System.Drawing.Size,System.Drawing.Drawing2D.InterpolationMode)">
            <summary>
            Resize the image using a specific interpolation mode
            </summary>
            <param name="newSize">The new image size</param>
            <param name="intMode">The interpolation mode to use. All modes except NearestNeighbor will cause a small loss (1-2 px) of image data around the edges of the original image.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Flip(System.Boolean,System.Boolean,System.Int32)">
            <summary>
            Rotate or flip the current image
            </summary>
            <param name="flipV">Whether the image should be flipped vertically</param>
            <param name="flipH">Whether the image should be flipped horizontally</param>
            <param name="rotAngle">An angle, which is used to rotate the image. The only supported values are 0, 90, 180, and 270</param>
            <returns>The type of flip that was used on the image</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.GetFlipType(System.Int32,System.Boolean,System.Boolean)">
            <summary>
            Get a flip type given a set of parameters
            </summary>
            <param name="rotAngle">An angle, which is used to rotate the image. The only supported values are 0, 90, 180, and 270</param>
            <param name="flipH">Whether the image should be flipped horizontally</param>
            <param name="flipV">Whether the image should be flipped vertically</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Crop(System.Drawing.Rectangle)">
            <summary>
            Crops the image with the specified dimensions
            </summary>
            <param name="rect">The rectangle area that should be left from the original image</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Alpha(System.Int32)">
            <summary>
            Applies an alpha channel (transparency) to the image.
            </summary>
            <param name="alphaPercent">The percent of transparency (between 0 and 100).</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.FixGifColors">
            <summary>
            Fixes a problem with the Gif file format support in the .NET framework.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.ImageEditor.Dispose(System.Boolean)">
            <summary>
            Called when the class is disposed. This will dispose the edited image instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.ImageEditor.Image">
            <summary>
            Gets or sets the current image to be manipulated.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorSplitButton">
            <summary>
            Represents a EditorDropDown tool that renders as a custom dropdown in the editor
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorDropDown">
            <summary>
            Represents a EditorDropDown tool that renders as a custom dropdown in the editor
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.EditorDropDown.SetDefaultWidth(System.Web.UI.WebControls.Unit)">
            <summary>
            This will set the width of the dropdown if it was set before.
            </summary>
            <param name="width">Unit containing the new default width</param>
        </member>
        <member name="M:Telerik.Web.UI.EditorDropDown.LoadViewState(System.Object)">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorDropDown.SaveViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorDropDown.TrackViewState">
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.EditorDropDown.SetDirty">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.EditorDropDown.Items">
            <summary>
            Gets the collection of EditorTool objects, inside the tool strip.
            </summary>
            <value>The tools.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDataFieldEditor.FieldName">
            <summary>
                <para>Gets or sets FieldName for the editor.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDataFieldEditor.DisplayName">
            <summary>
                <para>Gets or sets DisplayName for the editor.</para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDataFieldEditor.PreviewDataFormat">
            <summary>
                <para>Gets or sets PreviewDataFormat for the editor. This property will be used
                to format the value per editor when ExpressionPreviewPosition is different than RadFilterExpressionPreviewPosition.None
                </para>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDataFieldEditor.DataType">
            <summary>
            	<para>Gets or sets (see the Remarks) the type of the data from the Field.</para>
            </summary>
            <remarks>
            	<para>The DataType property supports the following base .NET Framework data
                types:</para>
            	<list type="bullet">
            		<item>Boolean</item>
            		<item>Byte</item>
            		<item>Char</item>
            		<item>DateTime</item>
            		<item>Decimal</item>
            		<item>Double</item>
            		<item>Int16</item>
            		<item>Int32</item>
            		<item>Int64</item>
            		<item>SByte</item>
            		<item>Single</item>
            		<item>String</item>
            		<item>TimeSpan</item>
            		<item>UInt16</item>
            		<item>UInt32</item>
            		<item>UInt64</item>
            	</list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDataFieldEditor.Owner">
            <summary>
            Keeps reference to the owner RadFilter control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterDateFieldEditor.MinDate">
            <summary>
            Gets/sets MinDate on RadDatePicker control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldEditorCreatedEventArgs.Editor">
            <summary>
            Instance of RadFilterDataFieldEditor that has been loaded.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldEditorCreatingEventArgs.Editor">
            <summary>
            Instance of RadFilterDataFieldEditor that will be loaded.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldEditorCreatingEventArgs.EditorType">
            <summary>
            The name of editor type that will be loaded.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterTextFieldEditor.TextBoxWidth">
            <summary>
            Get/set TextBox width in pixels.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IRadFilterCommandEvent.ExecuteCommand(System.Object)">
            <summary>Override to fire the corresponding command.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadFilterCommandEvent.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadFilterCommandEventArgsFactory">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.FilterStrings">
            <summary>
            The localization strings to be used in RadFilter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.ApplyExpressionsToContainer(System.Boolean)">
            <summary>
            Apply all filter expressions to IRadFilterableContainer.
            </summary>
            <param name="shouldBind">true if IRadFilterableContainer must be re-bind, otherwise false</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.AttachToContainer">
            <summary>
            Listen IRadFilterableContainer for fields descriptors.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.ContainerFieldDescriptorsReady(System.Object,Telerik.Web.UI.RadFilterFildDesciptorsEventArgs)">
            <summary>
            This method is called when IRadFilterableContainer fires OnFieldDescriptorsReady event
            </summary>
            <param name="sender">instance of IRadFilterableContainer control</param>
            <param name="e">arguments that has description of IRadFilterableContainer filtering capabilities</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.EnsureItemsCreated">
            <summary>
            This method is called when RootGroupItem is accessed and it is not created yet.
            Force creation of all RadFilterExpressionItems.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.CreateControlHierarchy">
            <summary>
            Build controls hierarchy.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.RecreateControl">
            <summary>
            Force RadFilter control to recreate its structure.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.AddChildExpression(Telerik.Web.UI.RadFilterGroupExpressionItem,System.Boolean)">
            <summary>
            Add child expression for item.
            </summary>
            <param name="groupItem">The item that will be the parent for the new item.</param>
            <param name="isGroup">Indicates whether the new child item should be group item or not.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.RemoveFilterExpression(Telerik.Web.UI.RadFilterSingleExpressionItem)">
            <summary>
            Removes filter expression from its parent.
            </summary>
            <param name="item">filter expression to be removed</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.RemoveGroupFilterExpression(Telerik.Web.UI.RadFilterGroupExpressionItem)">
            <summary>
            Removes group filter expression from its parent. 
            If it is root group item removes all its child items.
            </summary>
            <param name="groupItem">group filter expression to be removed</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.ChangeGroupOperator(Telerik.Web.UI.RadFilterGroupExpressionItem,Telerik.Web.UI.RadFilterGroupOperation)">
            <summary>
            Change current group operator.
            </summary>
            <param name="groupItem">group that current operator must be changed</param>
            <param name="groupOperation">new group operation value</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.ChangeFilterFunction(Telerik.Web.UI.RadFilterSingleExpressionItem,Telerik.Web.UI.RadFilterFunction)">
            <summary>
            Change current filter function for the item.
            </summary>
            <param name="item">item which filter function will be changed</param>
            <param name="function">new filter function value </param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.ChangeExpressionFieldName(Telerik.Web.UI.RadFilterSingleExpressionItem,System.String)">
            <summary>
            Change field name for item
            </summary>
            <param name="item">item which FieldName will be changed</param>
            <param name="fieldName">new FieldName value</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.HandleApplyCommand">
            <summary>
            Handles Apply command
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.FetchExpressionsValues(Telerik.Web.UI.RadFilterGroupExpressionItem)">
            <summary>
            Loop through all IRadFilterValueExpression's  and assing their value from RadFilterSingleExpressionItem editors.
            </summary>
            <param name="group">RadFilterGroupExpressionItem to start from</param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.OnItemCommand(Telerik.Web.UI.RadFilterCommandEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadFilter.ItemCommand"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.OnApplyExpressions(Telerik.Web.UI.RadFilterApplyExpressionsEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadFilter.ApplyExpressions"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.OnFieldEditorCreating(Telerik.Web.UI.RadFilterFieldEditorCreatingEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadFilter.FieldEditorCreating"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.OnFieldEditorCreated(Telerik.Web.UI.RadFilterFieldEditorCreatedEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadFilter.FieldEditorCreated"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.FireApplyCommand">
            <summary>
            Triggers ApplyExpressions command.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.SaveSettings">
            <summary>
            Serialize the control state to Base64 encoded string.
            </summary>
            <returns>returns serialized state in Base64 format</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadFilter.LoadSettings(System.String)">
            <summary>
            Loads the provided state in the control.
            </summary>
            <param name="state">Base64 encoded string representing saved control state</param>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ApplyButtonText">
            <summary>
            Get / set Apply button text
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.AllowFilterOnBlur">
            <summary>
            Get / set whether RadFilter should postback when value in editor change.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.AddExpressionToolTip">
            <summary>
            Get / set Add expression button tooltip.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.AddGroupToolTip">
            <summary>
            Get / set Add group button tooltip.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.RemoveToolTip">
            <summary>
            Get / set Remove button tooltip.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.BetweenDelimeterText">
            <summary>
            Get / set the text that will be visible when Between/NotBetween filter expression.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ShowLineImages">
            <summary>
            Gets a value indicating whether the dotted lines indenting the nodes should be
            displayed or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.RootGroup">
            <summary>
            Root group for all expressions in RadFilter control. 
            This group cannot be removed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.RootGroupItem">
            <summary>
            Root group item for all expressions in RadFilter control.         
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.FilterContainerID">
            <summary>
            Get/set ID of the IRadFilterableContainer control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.FilterContainer">
            <summary>
            Read only property. Holds reference to control that implements IRadFilterableContainer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.DataSourceControlID">
            <summary>
            Get/set ID of the IDataSource control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.DataSourceControl">
            <summary>
            Read only property. Holds reference to IDataSource control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ClientSettings">
            <summary>
            Gets a reference to the 
            <see cref="T:Telerik.Web.UI.RadFilterClientSettings"/> object that allows
            you to set the properties of the client-side behavior and
            appearance in a Telerik <see cref="T:Telerik.Web.UI.RadFilter"/> control.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFilter.ItemCommand">
            <summary>
            Raised when a button in a <see cref="T:Telerik.Web.UI.RadFilter"/> control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFilter.ApplyExpressions">
            <summary>
            Raised when a button Apply in a <see cref="T:Telerik.Web.UI.RadFilter"/> control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFilter.FieldEditorCreating">
            <summary>
            Raised when custom field editor is creating on postback.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadFilter.FieldEditorCreated">
            <summary>
            Raised when field editor is created when RadFilter is used integrated with IRadFilterableContainer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ShowApplyButton">
            <summary>
            Indicates whether the Apply button should be visible.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.LocalizationPath">
            <summary>
            Gets or sets a value indicating where RadFilter will look for its .resx localization file.
            By default this file should be in the App_GlobalResources folder. However, if you cannot put
            the resource file in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource file.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadFilterResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the grid localization file from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ExpressionPreviewPosition">
            <summary>
            Get/Set the possition of expression preview item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilter.ExpressionPreviewProvider">
            <summary>
            Get/Set provider used for building the expression in preview item. Default provider is RadFilterExpressionPreviewProvider.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFilterableContainerLocator.RetrieveFilterableContainer(System.Web.UI.Control,System.String)">
            <summary>
            Search for IRadFilterableContainer control.
            </summary>
            <param name="control">instance of control from which search will start</param>
            <param name="controlId">id of the IRadFilterableContainer container control</param>
            <returns>IRadFilterableContainer istance if found, otherwise null</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadFilterableContainerLocator.RetrieveDataSourceControl(System.Web.UI.Control,System.String)">
            <summary>
            Search for IDataSource control.
            </summary>
            <param name="control">instance of control from which search will start</param>
            <param name="controlId">id of the IDataSource control</param>
            <returns>IDataSource istance if found, otherwise null</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterClientEvents.OnFilterCreated">
            <summary>This client-side event is fired after the 
            <see cref="T:Telerik.Web.UI.RadFilter"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterClientEvents.OnFilterCreating">
            <summary>This client-side event is fired before the 
            <see cref="T:Telerik.Web.UI.RadFilter"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterClientEvents.OnFilterDestroying">
            <summary>
            This client-side event is fired when <see cref="T:Telerik.Web.UI.RadFilter"/> object is
            destroyed, i.e. on each <em>window.onunload</em>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterClientSettings.ClientEvents">
            <summary>Gets a reference to <see cref="T:Telerik.Web.UI.RadFilterClientEvents"/> class.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFildDesciptorsEventArgs.FilterableView">
            <summary>
            Returns entity that describes current IRadFilterableContainer container filtering capabilities.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFilterableView.DataFields">
            <summary>
            Collection of all filterable fields
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFilterableView.SupportedGroupTypes">
            <summary>
            Collection of all group operations that IRadFilterableContainer supports
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFilterableView.SupportedFilterFunctions">
            <summary>
            Collection of all filter functions that IRadFilterableContainer supports
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadFilterFieldDescriptor">
            <summary>
            Describes all filterable fields of IRadFilterableContainer
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldDescriptor.FieldName">
            <summary>
            Name of the filterable field
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldDescriptor.DisplayName">
            <summary>
            Name of the filterable field that will be displayed
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFilterFieldDescriptor.DataType">
            <summary>
            Data type of filterable field 
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.Contains">
            <summary>Same as: dataField LIKE '/%value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.DoesNotContain">
            <summary>Same as: dataField NOT LIKE '/%value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.StartsWith">
            <summary>Same as: dataField LIKE 'value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.EndsWith">
            <summary>Same as: dataField LIKE '/%value'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.EqualTo">
            <summary>
            Same as: dataField = value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.NotEqualTo">
            <summary>Same as: dataField != value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.GreaterThan">
            <summary>Same as: dataField &gt; value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.LessThan">
            <summary>
            Same as: dataField &lt; value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.GreaterThanOrEqualTo">
            <summary>Same as: dataField &gt;= value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.LessThanOrEqualTo">
            <summary>
            Same as: dataField &lt;= value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.Between">
            <summary>
            Same as: value1 &lt;= dataField &lt;= value2.<br/>
            Note that value1 and value2 should be separated by [space] when entered as
            filter.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.NotBetween">
            <summary>
            Same as: dataField &lt;= value1 &amp;&amp; dataField &gt;= value2.<br/>
            Note that value1 and value2 should be separated by [space] when entered as
            filter.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.IsEmpty">
            <summary>
            Same as: dataField = ''
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.NotIsEmpty">
            <summary>Same as: dataField != ''</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.IsNull">
            <summary>
            Only null values
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.NotIsNull">
            <summary>
            Only those records that does not contain null values within the corresponding column
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterFunction.Group">
            <summary>
            Only for expression group
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterGroupOperation.And">
            <summary>All expressions in the group will be aggregate with AND logical opeartion.</summary>
            <example>(Expression1 AND Expression2...)</example>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterGroupOperation.Or">
            <summary>All expressions in the group will be aggregate with OR logical opeartion.</summary>
            /// <example>(Expression1 OR Expression2...)</example>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterGroupOperation.NotAnd">
            <summary>All expressions in the group will be aggregate with NOT AND logical opeartion.</summary>
            /// <example>NOT(Expression1 AND Expression2...)</example>
        </member>
        <member name="F:Telerik.Web.UI.RadFilterGroupOperation.NotOr">
            <summary>All expressions in the group will be aggregate with NOT OR logical opeartion.</summary>
            <example>NOT(Expression1 OR Expression2...)</example>
        </member>
        <member name="T:Telerik.Web.UI.RadFormDecorator">
            <summary>
            Telerik RadFormDecorator
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadFormDecorator.DecorateAspNetControls">
            <summary>
            Finds all instances of FormView, GridView, DetailsView controls in the current page and adds a CSS class 
            so they can be decorated on the client
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFormDecorator.TagKey">
            <summary>
            Form Decorator will render as a Div tag in order to be XHTML compliant
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFormDecorator.DecoratedControls">
            <summary>
            Get/Set the DecoratedControls enum of RadFormDecorator
            </summary>		
        </member>
        <member name="P:Telerik.Web.UI.RadFormDecorator.ControlsToSkip">
            <summary>
            Get/Set the ControlsToSkip enum of RadFormDecorator - a shortcut for faster fine-tuning of the decorated controls
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFormDecorator.EnableRoundedCorners">
            <summary>
            Gets or sets whether decorated textboxes, textarea and fieldset elements will have rounded corners       
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadFormDecorator.DecorationZoneID">
            <summary>
            Gets or sets the id (ClientID if a runat=server is used) of a html element whose children will be decorated        
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumnEditor.RatingControl">
            <summary>
            Gets the RadRating control associated with this column editor
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumnEditor.Value">
            <summary>
            Gets the current value of the RadRating control
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.DataSourceID">
            <summary>
            A string, specifying the ID of the datasource control, which will be used to
            retrieve binary data of the attachment.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the ID of the datasource control,
            which will be used to retrieve binary data of the attachment.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.AllowedFileExtensions">
            <summary>
            Gets or sets an array of file extensions that are allowed for uploading.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.MaxFileSize">
            <summary>
            Gets or sets the maximum allowed size (in bytes) of the uploaded attachment.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.ButtonType">
            <summary>
            Gets or sets a value indicating the type of the download button that will be rendered. The
            type should be one of the specified by the <see cref="T:Telerik.Web.UI.GridButtonColumnType"/>
            enumeration.
            </summary>
            <remarks>
            	<list type="table">
            		<item>
            			<term><strong>LinkButton</strong></term>
            			<description>Renders a standard hyperlink button.</description></item>
            		<item>
            			<term><strong>PushButton</strong></term>
            			<description>Renders a standard button.</description></item>
            		<item>
            			<term><strong>ImageButton</strong></term>
            			<description>Renders an image that acts like a
            button.</description></item></list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.ButtonCssClass">
            <summary>
            Gets or sets the CssClass of the button
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.AttachmentKeyFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, that uniquely identify an attachment from the column's data source
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which form the unique key identifying an attachment
            from the column's data source
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.AttachmentDataField">
            <summary>
            Gets or sets the name of the data field from the column's data source where the binary attachment data is stored.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.DataTextField">
            <remarks>
            	<para>Use the <strong>DataTextField</strong> property to specify the field name
                from the data source to bind to the
                <span class="179215212-08062006"><strong>Text</strong></span> property of the
                buttons in the
                <strong><span class="179215212-08062006">Grid</span>AttachmentColumn</strong> object.
                Binding the column to a field instead of directly setting the <strong>Text</strong>
                property allows you to display different captions for the buttons in the
                <strong><span class="179215212-08062006">Grid</span>AttachmentColumn</strong> by using
                the values in the specified field.</para>
            	<para><span class="179215212-08062006"><strong>Tip:</strong> This property is most
                often used in combination with
                <a href="RadGridNet2~Telerik.Web.UI.GridAttachmentColumn~DataTextFormatString.html">
                DataTextFormatString Property</a>.</span></para>
            </remarks>
            <summary>
            Gets or sets a value from the specified datasource field. This value will then be
            displayed in the <strong>GridAttachmentColumn</strong>.
            </summary>
            <example>
            	<div class="LanguageSpecific">
            		<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            			<tbody>
            				<tr>
            					<td nowrap="nowrap"></td>
            				</tr>
            			</tbody>
            		</table>
            	</div>
            	<code lang="CS">
            [ASPX/ASCX]&lt;br/&gt;&lt;br/&gt;&lt;radg:RadGrid id=&lt;font class="string"&gt;"RadGrid1"&lt;/font&gt; runat=&lt;font class="string"&gt;"server"&lt;/font&gt;&gt;&lt;br/&gt;  &lt;MasterTableView AutoGenerateColumns=&lt;font class="string"&gt;"False"&lt;/font&gt;&gt;&lt;br/&gt;    &lt;Columns&gt;&lt;br/&gt;      &lt;radg:GridAttachmentColumn HeaderText=&lt;font class="string"&gt;"Customer ID"&lt;/font&gt;&lt;font color="red"&gt;DataTextField=&lt;font class="string"&gt;"CustomerID"&lt;/font&gt;&lt;/font&gt;&lt;br/&gt;&lt;font color="red"&gt;DataTextFormatString=&lt;font class="string"&gt;"Edit Customer {0}"&lt;/font&gt;&lt;/font&gt; ButtonType=&lt;font class="string"&gt;"LinkButton"&lt;/font&gt; UniqueName=&lt;font class="string"&gt;"ButtonColumn"&lt;/font&gt;&gt;&lt;br/&gt;     &lt;/radg:GridAttachmentColumn&gt;
                </code>
            	<code lang="CS">
            	</code>
            	<code lang="CS">
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.DataTextFormatString">
            <remarks>
            	<para>Use the <strong>DataTextFormatString</strong> property to provide a custom
                display format for the caption of the buttons in the
                <strong>GridAttachmentColumn</strong>.</para>
            	<para><span class="179215212-08062006"><strong>Note</strong>:</span> The entire
                string must be enclosed in braces to indicate that it is a format string and not a
                literal string. Any text outside the braces is displayed as literal text.</para>
            </remarks>
            <example>
            	<table class="CodeContainerTable" cellspacing="0" cellpadding="0" border="0">
            		<tbody>
            			<tr>
            				<td nowrap="nowrap"></td>
            			</tr>
            		</tbody>
            	</table>
            	<code lang="CS">
            [ASPX/ASCX]&lt;br/&gt;&lt;br/&gt;&lt;radg:RadGrid id=&lt;font color="black"&gt;&lt;font class="string"&gt;"RadGrid1"&lt;/font&gt; runat=&lt;font class="string"&gt;"server"&lt;/font&gt;&gt;&lt;br/&gt;  &lt;MasterTableView AutoGenerateColumns=&lt;font class="string"&gt;"False"&lt;/font&gt;&gt;&lt;br/&gt;    &lt;Columns&gt;&lt;br/&gt;      &lt;radg:GridAttachmentColumn HeaderText=&lt;font class="string"&gt;"Customer ID"&lt;/font&gt;&lt;/font&gt;&lt;font color="red"&gt;DataTextField=&lt;font class="string"&gt;"CustomerID"&lt;/font&gt;&lt;br/&gt;DataTextFormatString=&lt;font class="string"&gt;"Edit Customer {0}"&lt;/font&gt;&lt;/font&gt; ButtonType=&lt;font class="string" color="black"&gt;"LinkButton"&lt;/font&gt; UniqueName=&lt;font color="black"&gt;&lt;font class="string"&gt;"ButtonColumn"&lt;/font&gt;&gt;&lt;br/&gt;     &lt;/radg:GridAttachmentColumn&gt;&lt;/font&gt;
                </code>
            </example>
            <summary>
            Gets or sets the string that specifies the display format for the caption in each
            button.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.Text">
            <summary>Gets or sets a value indicating the text that will be shown for a button.</summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.FileNameTextField">
            <summary>
            Gets or sets the name of the field bound to the file name of the attachment.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.FileNameTextFormatString">
            <summary>
            Gets or sets the format string applied to the value bound to the <strong>FileNameTextField</strong> property
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.FileName">
            <summary>
            Gets or sets the file name of the attachment.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.ImageUrl">
            <summary>
            Gets or sets a value indicating the URL for the image that will be used in a
            Image button. <see cref="P:Telerik.Web.UI.GridAttachmentColumn.ButtonType"/> should be set to
            <strong>ImageButton</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridAttachmentColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.DataField">
            <summary>
            	<para>Gets or sets the field name from the specified data source to bind to the
            <strong><see cref="T:Telerik.Web.UI.GridBinaryImageColumn"/></strong>.</para>
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the data field from the data
            source, from which to bind the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.DefaultImageUrl">
            <summary>
            Gets or sets a url, specifying the location of a default image 
            which to be loaded if there is no data for the binary image        
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.AlternateText">
            <summary>
            Gets or sets a string, specifying the text which will be shown as alternate
            text to the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.ImageWidth">
            <summary>
            Gets or sets the width of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.ImageHeight">
            <summary>
            Gets or sets the height of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.SavedImageName">
            <summary>
            Get or set the name of the file which will appear inside of the SaveAs
            browser dialog 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.AutoAdjustImageControlSize">
            <summary>
            Specifies if the HTML image element's dimensions are inferred from image's binary data
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.DataAlternateTextField">
            <summary>
            Gets or sets a string, representing the DataField name from the data source,
            which will be used to supply the alternateText for the image in the column. This text can
            further be customized, by using the DataTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the DataField name from the data
            source, which will be used to supply the alternate text for the image in the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.DataAlternateTextFormatString">
            <summary>
            Gets or sets a string, specifying the format string, which will be used to format
            the alternate text of the image, rendered in the cells of the column.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the format string, which will be
            used to format the text of the hyperlink, rendered in the cells of the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridBinaryImageColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.DataImageUrlFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the url of the image which will be shown.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration
            of DataFields from the data source, which will form the url of the image which
            will be shown.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.DataImageUrlFormatString">
            <summary>
            Gets or sets a string, specifying the FormatString of the DataNavigateURL.
            Essentially, the DataNavigateUrlFormatString property sets the formatting for the url
            string of the image.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the FormatString of the
            DataNavigateURL.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.ImageUrl">
            <summary>
            Gets or sets a string, specifying the url, from which the image should be
            retrieved. This property will be honored only if the DataImageUrlFields are
            not set. If either DataImageUrlFields are set, they will override the
            ImageUrl property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the url, from which the image,
            should be loaded.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.AlternateText">
            <summary>
            Gets or sets a string, specifying the text which will be shown as alternate
            text to the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.ImageWidth">
            <summary>
            Gets or sets the width of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.ImageHeight">
            <summary>
            Gets or sets the height of the image
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.DataAlternateTextField">
            <summary>
            Gets or sets a string, representing the DataField name from the data source,
            which will be used to supply the alternateText for the image in the column. This text can
            further be customized, by using the DataTextFormatString property.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing the DataField name from the data
            source, which will be used to supply the alternate text for the image in the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.DataAlternateTextFormatString">
            <summary>
            Gets or sets a string, specifying the format string, which will be used to format
            the alternate text of the image, rendered in the cells of the column.
            </summary>
            <value>
            A <strong><em>string</em></strong>, specifying the format string, which will be
            used to format the text of the hyperlink, rendered in the cells of the column.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridImageColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridRatingColumn">
            <summary>
            A databound column type in RadGrid that displays a RadRating control in view and edit mode
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.DataField">
            <summary>
            Gets or sets the field name from the specified data source to bind to the 
            <strong><see cref="T:Telerik.Web.UI.GridRatingColumn"/></strong>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.AllowFiltering">
            <summary>
            Gets or sets a value indicating whether data in this column can be filtered. The
            default value is true
            </summary>
            <value>
            A <strong>Boolean</strong> value indicating whether the column can be filtered. The 
            default value is true
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.AllowSorting">
            <summary>
            Gets or set a value indicating whether data in this column can be sorted. The 
            default value is <strong>true</strong>
            </summary>
            <value>
            A <strong>Boolean</strong> value indicating whether the column can be sorted. The 
            default value is <strong>true</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.ItemCount">
            <summary>
            Gets or sets a value indicating the number of items RadRating in each cell of the 
            <see cref="T:Telerik.Web.UI.GridRatingColumn"/> will show
            </summary>
            <value>
            An <strong>Integer</strong> value indicating the number of items RadRating in each
            column cell will show. The default value is <strong>5</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.SelectionMode">
            <summary>
            Gets or sets a value indicating the selection mode of the RadRating control in each 
            cell of the <see cref="T:Telerik.Web.UI.GridRatingColumn"/>. The default value is
            <strong>RatingSelectionMode.Continuous</strong>
            </summary>
            <value>
            An enumerated <strong>RatingSelectionMode</strong> value indicating the selection mode
            of the RadRating control in each cell. The default value 
            is <strong>RatingSelectionMode.Continuous</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.Precision">
            <summary>
            Gets or sets a value indicating the rating precision of the RadRating control
            in each cell of the <see cref="T:Telerik.Web.UI.GridRatingColumn"/>. The default value
            is <strong>RatingPrecision.Item</strong>
            </summary>
            <value>
            An enumerated <strong>RatingPrecision</strong> value undicatig the precision
            of the RadRating control in each cell. The defautl value is <strong>RatingPrecision.Item</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.IsDirectionReversed">
            <summary>
            Gets or sets a value indicating whether the direction of the RadRating control
            should be reversed. The default value is <strong>false</strong>
            </summary>
            <value>
            A <strong>Boolean</strong> value indicating whether the direction of the RadRating
            control should be reversed. The default value is <strong>false</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridRatingColumn.AllowRatingInViewMode">
            <summary>
            Gets or sets a value indicating whether the column allows rating in view mode.
            The default value is <strong>false</strong>
            </summary>
            <value>
            A <strong>Boolean</strong> value indicating whether the column allows rating
            in view mode. The default value is <strong>false</strong>
            </value>
        </member>
        <member name="T:Telerik.Web.UI.GridClientDataBinding">
            <summary>
            Provides properties related to setting the client-side data-binding in
            Telerik RadGrid.
            </summary>
            <remarks>
                You can get a reference to this class using
                <see cref="P:Telerik.Web.UI.GridClientSettings.DataBinding"/> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.DataService">
            <summary>
                Gets a reference to <see cref="T:Telerik.Web.UI.GridClientDataService"/> class providing properties
                related to client-side ADO.NET DataService data-binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.Location">
            <summary>
            Gets or sets url for the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.SelectMethod">
            <summary>
            Gets or sets method name in the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.SelectCountMethod">
            <summary>
            Gets or sets method name in the WebService or Page which will be requested to get total records count.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.MaximumRowsParameterName">
            <summary>
            Gets or sets maximum rows parameter name for the SelectMethod in the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.StartRowIndexParameterName">
            <summary>
            Gets or set start row index parameter name for the SelectMethod in the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.SortParameterName">
            <summary>
            Gets or set sort parameter name for the SelectMethod in the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.FilterParameterName">
            <summary>
            Gets or set filter parameter name for the SelectMethod in the WebService or Page which will be requested to get data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.FilterParameterType">
            <summary>
            Gets or set filter parameter type for the SelectMethod in the WebService or Page which will be requested to get data. Default value is List.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.SortParameterType">
            <summary>
            Gets or set sort parameter type for the SelectMethod in the WebService or Page which will be requested to get data. Default value is List.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.EnableCaching">
            <summary>
            Gets or set a value indicating whether the client-side caching should be enabled or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.DataPropertyName">
            <summary>
            Gets or set data property name for the SelectMethod in the WebService or Page which will be requested to get data and count. Default is "Data"!
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.CountPropertyName">
            <summary>
            Gets or set data property total records count for the SelectMethod in the WebService or Page which will be requested to get data and count. Default is "Count"!
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.ResponseType">
            <summary>
            Gets or sets the type of the data requested from a data service. A value of 
            GridClientDataResponseType.JSONP allows for cross-domain JSONP requests.
            Default value is GridClientDataResponseType.JSON.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataBinding.ShowEmptyRowsOnLoad">
            <summary>
            Gets or sets a value indicating whether empty data rows are shown in
            <see cref="T:Telerik.Web.UI.RadGrid"/> when client-side databinding is setup. Defalut value is true.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridClientDataResponseType">
            <summary>
            Enumerates the data request formats RadGrid uses when making data service requests.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataService.TableName">
            <summary>
            Gets or set table name for the specified ADO.NET DataService. Default is empty string!
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataService.Type">
            <summary>
            Gets or sets the client data service type RadGrid binds to.
            Default is GridClientDataServiceType.ADONet.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataService.FilterQueryOption">
            <summary>
            Gets or set a filter string for the specified ADO.NET DataService. Default is empty string!
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridClientDataService.SortQueryOption">
            <summary>
            Gets or set a filter string for the specified ADO.NET DataService. Default is empty string!
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridClientDataServiceType">
            <summary>
            Specifies the data service type RadGrid binds to
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridClientDataServiceType.ADONet">
            <summary>
            Specifies an ADO.NET Data Service
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.GridClientDataServiceType.OData">
            <summary>
            Specifies an Open Data Protocol service
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.AllowActiveRowCycle">
            <summary>        
            This property set whether active row should be set to first/last item when current item is last/first 
            and down/up key is pressed (default is <strong>false</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.AllowSubmitOnEnter">
            <summary>        
            This property set whether the edit form will be submited when the ENTER key is pressed 
            (default is <strong>false</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.ValidationGroup">
            <summary>        
            This property set the validation group of all controls placed into the Edit/Insert form of the RadGrid
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.FocusKey">
            <summary>
            This property sets the key that is used to focus RadGrid. It is always used with <strong>CTRL</strong> key combination.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.InitInsertKey">
            <summary>
            This property sets the key that is used to open insert edit form of RadGrid. It is always used with <strong>CTRL</strong> key combination.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.RebindKey">
            <summary>
            This property sets the key that is used to rebind RadGrid. It is always used with <strong>CTRL</strong> key combination.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.ExpandDetailTableKey">
            <summary>        
            This property set the key that is used for expanding the active row's detail table
            (default key is <strong>Right arrow</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridKeyboardNavigationSettings.CollapseDetailTableKey">
            <summary>        
            This property set the key that is used for collapsing the active row's detail table
            (default key is <strong>Left arrow</strong>)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.TargetControls">
            <summary>
            Gets a collection of <strong>TargetInput</strong> objects that allows for
            specifying the objects for which input will be created on the client-side.
            </summary>
            <remarks>
            Use the <strong>TargetControls</strong> collection to programmatically control
            which objects should be inputtipified on the client-side.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.ClientEvents">
            <summary>
            Gets or sets an instance of the <strong>InputManagerClientEvents</strong> class
            which defines the JavaScript functions (client-side event handlers) that are invoked
            when specific client-side events are raised.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.Validation">
            <summary>
            Gets an instance of the <strong>InputSettingValidation</strong> class
            which defines the validation behavior.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.EnabledCssClass">
            <summary>Gets or sets the css style for enabled TextBox control.</summary>
            <value>
            A string object that represents the css style properties for enabled TextBox
            control. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.BehaviorID">
            <summary>Gets or sets a value to access the client-side behavior.</summary>
            <remarks>
            	<span><span>In cases where you would like to access the client-side behavior for
            your setting from script code in the client, you can set this BehaviorID to simplify
            the process. See example below:</span></span>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.HoveredCssClass">
            <summary>Gets or sets the css style for hovered TextBox control.</summary>
            <value>
            A string object that represents the css style properties for hovered TextBox
            control. The default value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.InvalidCssClass">
            <summary>Gets or stes the css style for invalid state of TextBox control.</summary>
            <value>
            A string object that represents the style properties for invalid TextBox control.
            The default value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.FocusedCssClass">
            <summary>Gets or sets the css style for invalid state of TextBox control.</summary>
            <value>
            A string object that represents the css style for invalid TextBox control. The
            default value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.ReadOnlyCssClass">
            <summary>Gets or sets the css style for Read Only state of TextBox control.</summary>
            <value>
            A string object that represents the css style for Read Only TextBox control. The
            default value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.DisabledCssClass">
            <summary>Gets or sets the css style for TextBox when when the control is disabled.</summary>
            <value>
            A string object that represents the css style for TextBox control. The default
            value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.EmptyMessageCssClass">
            <summary>Gets or sets the css style for TextBox when when the control is empty.</summary>
            <value>
            A string object that represents the css style for TextBox control. The default
            value is an empty string object.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.EmptyMessage">
            <summary>Gets or sets a value message shown when the control is empty.</summary>
            <value>
            A string specifying the empty message. The default value is empty string.
            ("").
            </value>
            <remarks>
            Shown when the control is empty and loses focus. You can set the empty message
            text through EmptyMessage property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.InputSetting.ClearValueOnError">
            <summary>
            Gets or sets a value indicating whether the value entered into the textbox should be cleared on error.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.Culture">
            <summary>
            Gets or sets the culture used by <strong>RadDateSetting</strong> to format the
            date.
            </summary>
            <value>
            A <a onclick="javascript:navigateToHelp2Keyword('frlrfSystemGlobalizationCultureInfoClassTopic','System.Globalization.CultureInfo')" href="http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.raddateinput-culture.html#">
            CultureInfo</a> object that represents the current culture used. The default value is
            <strong>System.Threading.Thread.CurrentThread.CurrentUICulture</strong>.
            </value>
            <example>
            	<para></para>
            	<para></para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.MinDate">
            <summary>
            Gets or sets the smallest date value allowed by
            <strong>RadDateSetting</strong>.
            </summary>
            <value>
            A <a onclick="javascript:navigateToHelp2Keyword('frlrfSystemDateTimeClassTopic','System.DateTime')" href="http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.raddateinput-mindate.html#">
            DateTime</a> object that represents the smallest date value by
            <strong>RadDateSetting</strong>. The default value is 1/1/1980.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.MaxDate">
            <summary>
            Gets or sets the largest date value allowed by
            <strong>RadDateSetting</strong>.
            </summary>
            <value>
            A <a onclick="javascript:navigateToHelp2Keyword('frlrfSystemDateTimeClassTopic','System.DateTime')" href="http://www.telerik.com/help/aspnet-ajax/telerik.web.ui-telerik.web.ui.raddateinput-maxdate.html#">
            DateTime</a> object that represents the largest date value allowed by
            <strong>RadDateSetting</strong>. The default value is <em>12/31/2099</em>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.DateFormat">
            <summary>
            Gets or sets the date and time format used by
            <strong>RadDateSetting</strong>.
            </summary>
            <value>
            A string specifying the date format used by <strong>RadDateSetting</strong>. The
            default value is "d" (short date format).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.DisplayDateFormat">
            <summary>
            Gets or sets the display date format used by
            <strong>RadDateSetting</strong>.(Visible when the control is not on focus.)
            </summary>
            <value>
            A string specifying the display date format used by
            <strong>RadDateSetting</strong>. The default value is "d" (short date format). If the
            <strong>DisplayDateFormat</strong> is left blank, the <strong>DateFormat</strong> will
            be used both for editing and display.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.DateInputSetting.ShortYearCenturyEnd">
            <summary>
            Gets or sets a value that indicates the end of the century that is used to
            interpret the year value when a short year (single-digit or two-digit year) is entered
            in the input.
            </summary>
            <value>The year when the century ends. Default is 2029.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadControl">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.ControlPreRender">
            <summary>
            Code moved into this method from OnPreRender to make sure it executed when the framework skips OnPreRender() for some reason
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.RegisterScriptControl">
            <summary>
            Registers the control with the ScriptManager
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.RegisterCssReferences">
            <summary>
            Registers the CSS references
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.LoadClientState(System.Collections.Generic.Dictionary{System.String,System.Object})">
            <summary>
            Loads the client state data
            </summary>
            <param name="clientState"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.SaveClientState">
            <summary>
            Saves the client state data
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.RenderScriptsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadControl.RenderDescriptorsNoScriptManager(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.RegisterWithScriptManager">
            <summary>
            Gets or sets the value, indicating whether to register with the ScriptManager control on the page.
            </summary>
            <remarks>
            <para>
            If RegisterWithScriptManager is set to false the control can be rendered on the page using Web Services or normal callback requests/page methods.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.IsSkinSet">
            <summary>
            For internal use.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.RuntimeSkin">
            <summary>
            Gets the real skin name for the control user interface. If Skin is not set, returns
            "Default", otherwise returns Skin.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadControl.CssClassFormatString">
            <summary>
            The CssClass property will now be used instead of the former Skin 
            and will be modified in AddAttributesToRender()
            </summary>
            <example>
            protected override string CssClassFormatString
            {
            	get
            	{
            		return "RadDock RadDock_{0} rdWTitle rdWFooter";
            	}
            }
            </example>
        </member>
        <member name="M:Telerik.Web.UI.InputManager.TargetControlCollection.FindTargetInputById(System.String)">
            <summary>
            Finds TargetInput setting by ID of input control
            </summary>
            <param name="id">ID of input control</param>
            <returns>TargetInput or null</returns>
        </member>
        <member name="P:Telerik.Web.UI.InputSettingValidation.Location">
            <summary>
            Gets or sets url for the WebService or Page which will be requested to validate data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.InputSettingValidation.Method">
            <summary>
            Gets or sets method name in the WebService or Page which will be requested to validate data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputManager.InputSettings">
            <summary>
            Gets a collection of InputSetting objects that allows for specifying the objects
            for which input elements will be created on the client-side.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadInputManager.Enabled">
            <summary>Gets or sets a value indicating whether manager should be enabled or not.</summary>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.DecimalSeparator">
            <summary>Gets or sets the string to use as the decimal separator in values.</summary>
            <value>The string to use as the decimal separator in values.</value>
            <exception cref="T:System.ArgumentException" caption="ArgumentException">The property is being set to an empty string.</exception>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.DecimalDigits">
            <summary>Gets or sets the number of decimal places to use in numeric values</summary>
            <value>The number of decimal places to use in values.</value>
            <permission cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 99. </permission>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.GroupSizes">
            <summary>
            Gets or sets the number of digits in each group to the left of the decimal in
            values.
            </summary>
            <value>The number of digits in each group to the left of the decimal in values.</value>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.GroupSeparator">
            <summary>
            Gets or sets the string that separates groups of digits to the left of the
            decimal in values.
            </summary>
            <value>
            The string that separates groups of digits to the left of the decimal in
            values.
            </value>
            <exception cref="T:System.ArgumentNullException" caption="ArgumentNullException">The property is being set to null. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.NegativePattern">
            <summary>Gets or sets the format pattern for negative values.</summary>
            <value>The format pattern for negative percent values.</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 11. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.PositivePattern">
            <summary>Gets or sets the format pattern for positive values.</summary>
            <value>The format pattern for positive percent values. The</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 3. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.ZeroPattern">
            <summary>Gets or sets the format pattern for zero values.</summary>
            <value>The format pattern for zero percent values. The</value>
            <exception cref="T:System.ArgumentOutOfRangeException" caption="ArgumentOutOfRangeException">The property is being set to a value that is less than 0 or greater than 3. </exception>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.Culture">
            <summary>
            Gets or sets the culture used by <strong>NumericTextBoxSetting</strong> to format
            the numburs.
            </summary>
            <value>
            A <strong>CultureInfo</strong> object that represents the current culture used.
            The default value is System.Threading.Thread.CurrentThread.CurrentUICulture.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.NumericTextBoxSetting.MaxValue">
            <summary>
            Gets or sets the largest possible value of a
            <strong>NumericTextBoxSetting</strong>.
            </summary>
            <value>The default value is positive 2^46.</value>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxReorderButtons">
            <summary>
            <para>Specifies which reorder buttons should be shown in <see cref="T:Telerik.Web.UI.RadListBox"/>. Members might be
            combined using bitwise operators allowing for custom configurations.</para>
            </summary>
            <remarks>
            
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.MoveUp">
            <summary>
            Displays the move up button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.MoveDown">
            <summary>
            Displays the move down button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.MoveToTop">
            <summary>
            Displays the move to top button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.MoveToBottom">
            <summary>
            Displays the move to down button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.All">
            <summary>
            Displays all buttons
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxReorderButtons.Common">
            <summary>
            Displays the move up and the move down buttons only
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxButtonPosition">
            <summary>
            Specifies the position of the buttons in a <see cref="T:Telerik.Web.UI.RadListBox"/>.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxButtonPosition.Right">
            <summary>
            The buttons appear to the right of the listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxButtonPosition.Bottom">
            <summary>
            The buttons appear below the listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxButtonPosition.Left">
            <summary>
            The buttons appear to the left of the listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxButtonPosition.Top">
            <summary>
            The buttons appear above the listbox
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxCommand">
            <summary>
            For internal use
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ListBoxHorizontalAlign">
            <summary>
            Specifies the horizontal alignment of buttons
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxHorizontalAlign.Left">
            <summary>
            Buttons are left aligned
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxHorizontalAlign.Center">
            <summary>
            Buttons are centered
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxHorizontalAlign.Right">
            <summary>
            Buttons are right aligned
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxSelectionMode">
            <summary>
            This enumeration controls the Selection Mode of RadListBox.	
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxSelectionMode.Single">
            <summary>
            The default behaviour - only one Item can be selected at a time.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxSelectionMode.Multiple">
            <summary>
            Allows selection of multiple Items.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxTransferButtons">
            <summary>
            <para>Specifies which transfer buttons should be shown in <see cref="T:Telerik.Web.UI.RadListBox"/>. Members might be
            combined using bitwise operators allowing for custom configurations.</para>
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.TransferTo">
            <summary>
            Displays the transfer to button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.TransferFrom">
            <summary>
            Displays the transfer from button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.TransferAllTo">
            <summary>
            Displays the transfer all to button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.TransferAllFrom">
            <summary>
            Displays the transfer all from button
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.All">
            <summary>
            Displays all buttons
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferButtons.Common">
            <summary>
            Displays the transfer to and transfer from buttons only
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxTransferMode">
            <summary>
            Specifies the transfer behavior
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferMode.Move">
            <summary>
            Items are moved to the destination listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxTransferMode.Copy">
            <summary>
            Items are copied to the destination listbox
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxVerticalAlign">
            <summary>
            Specifies the vertical alignment of buttons
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxVerticalAlign.Top">
            <summary>
            The buttons are aligned with the top of the listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxVerticalAlign.Middle">
            <summary>
            The buttons are aligned with the middle of the listbox
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxVerticalAlign.Bottom">
            <summary>
            The buttons are aligned with the bottom of the listbox
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxSort">
            <summary>
            The Telerik.Web.UI.RadListBoxSort enumeration supports three values - None, Ascending, Descending. Default is None.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListBoxSort.None">
            <summary>
            Items are not sorted at all.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListBoxSort.Ascending">
            <summary>
            Items are sorted in ascending order (min to max)
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListBoxSort.Descending">
            <summary>
            Items are sorted in descending order (max to min)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxDropPosition">
            <summary>
            	Specifies the position at which the user has dragged and dropped the source item(s) with regards to the 
            	destination item.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxDropPosition.Above">
            <summary>
            The source item(s) is dropped above (before) the destination item.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ListBoxDropPosition.Below">
            <summary>
            The source item(s) is dropped below (after) the destination item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDroppedEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Dropped"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDropEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Dropping"/> and <see cref="E:Telerik.Web.UI.RadListBox.Dropped"/> events of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxDropEventArgs.HtmlElementID">
            <summary>
            Gets the ID of the HTML element on which the source item(s) is(are) dropped.
            </summary>
            <value>
            A string representing the ID of the HTML element on which the source item(s) is(are) dropped.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDroppedEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Dropped"/> event
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDroppingEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Dropping"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxDroppingEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Dropping"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event is canceled the Dropped event will not fire.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDroppingEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Dropping"/> event
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxTransferredEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferredEventArgs.SourceListBox">
            <summary>
            Gets or sets the source listbox of the transfer operation.
            </summary>
            <value>The source listbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferredEventArgs.DestinationListBox">
            <summary>
            Gets or sets the destination listbox of the transfer operation.
            </summary>
            <value>The destination listbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferredEventArgs.Items">
            <summary>
            Gets or sets the referenced items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.
            </summary>
            <value>The items.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxTransferredEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDeletingEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Deleted"/>, <see cref="E:Telerik.Web.UI.RadListBox.Transferred"/>, <see cref="E:Telerik.Web.UI.RadListBox.Inserted"/>
            and <see cref="E:Telerik.Web.UI.RadListBox.Reordered"/> events.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxEventArgs.#ctor(System.Collections.Generic.IList{Telerik.Web.UI.RadListBoxItem})">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxEventArgs"/> class.
            </summary>
            <param name="items">The referenced items the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxEventArgs.Items">
            <summary>
            Gets the referenced items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.
            </summary>
            <value>The referenced items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxDeletingEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event is canceled the items will not be deleted.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxDeletingEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxInsertingEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Inserting"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxInsertingEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Inserting"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="P:Telerik.Web.UI.RadListBoxItemEventArgs.Item"/> is canceled the item will not be inserted.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxInsertingEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Inserting"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxItemEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.ItemDataBound"/>, <see cref="E:Telerik.Web.UI.RadListBox.ItemCreated"/> events of the
            <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemEventArgs.#ctor(Telerik.Web.UI.RadListBoxItem)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxItemEventArgs"/> class.
            </summary>
            <param name="item">The referenced item.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItemEventArgs.Item">
            <summary>
            Gets or sets the referenced item in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.
            </summary>
            <value>The referenced item in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxItemEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.ItemDataBound"/> and <see cref="E:Telerik.Web.UI.RadListBox.ItemCreated"/> events.
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxReorderingEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxReorderingEventArgs.Items">
            <summary>
            Gets or sets the referenced items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.
            </summary>
            <value>The items.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxReorderingEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> event is canceled the item will not be reordered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxReorderingEventArgs.Offset">
            <summary>
            Gets or sets the offset at which the item is reordered.
            </summary>
            <value>The offset.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxReorderingEventArgs.Index">
            <summary>
            Gets or sets the index at which the items are reordered.
            </summary>
            <value>The new index.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxReorderingEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Reordering"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxTransferringEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferringEventArgs.SourceListBox">
            <summary>
            Gets or sets the source listbox of the transfer operation.
            </summary>
            <value>The source listbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferringEventArgs.DestinationListBox">
            <summary>
            Gets or sets the destination listbox of the transfer operation.
            </summary>
            <value>The destination listbox.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferringEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="P:Telerik.Web.UI.RadListBoxItemEventArgs.Item"/> is canceled the item will not be transferred.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxTransferringEventArgs.Items">
            <summary>
            Gets or sets the referenced items in the <see cref="T:Telerik.Web.UI.RadListBox"/> control when the event is raised.
            </summary>
            <value>The items.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxTransferringEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Transferring"/> event of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxUpdatingEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadListBox.Updating"/> event. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxUpdatingEventArgs.Cancel">
            <summary>
            Gets or sets a value indicating whether the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event is canceled.
            </summary>
            <value><c>true</c> if cancel; otherwise, <c>false</c>.</value>
            <remarks>
            If the <see cref="E:Telerik.Web.UI.RadListBox.Deleting"/> event is canceled the items will not be deleted.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxUpdatingEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadListBox.Updating"/> event
            of the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxButtonSettings">
            <summary>
            Represents the settings of the buttons in a <see cref="T:Telerik.Web.UI.RadListBox"/> controls.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.AreaWidth">
            <summary>
            Gets or sets the width of the button area.
            </summary>
            <value>The width of the area. The default value is 30px.</value>
            <remarks>
            The AreaWidth property is taken into consideration only if the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.Position"/> property is set to <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Left"/> or 
            <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Right"/>. If not the button area is as wide as the listbox control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.AreaHeight">
            <summary>
            Gets or sets the height of the button area.
            </summary>
            <value>The height of the area. The default value is 30px</value>
            <remarks>
            The AreaWidth property is taken into consideration only if the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.Position"/> property is set to <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Top"/> or 
            <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Bottom"/>. If not the button area is as tall as the listbox control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.Position">
            <summary>
            Gets or sets the position of the buttons.
            </summary>
            <value>
            	The position of the buttons. The default value is <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Right"/>. 
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.RenderButtonText">
            <summary>
            When set to true enables render text on buttons functionality
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.HorizontalAlign">
            <summary>
            Gets or sets the horizontal align of the buttons within the button area.
            </summary>
            <value>
            	The horizontal align. The default value is <see cref="F:Telerik.Web.UI.ListBoxHorizontalAlign.Left"/>
            </value>
            <remarks>
            The HorizontalAlign property is taken into consideration only if the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.Position"/> property is set to <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Top"/> or 
            <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Bottom"/>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.VerticalAlign">
            <summary>
            Gets or sets the vertical align of the buttons in the within the button area.
            </summary>
            <value>
            The vertical align. The default value is <see cref="F:Telerik.Web.UI.ListBoxVerticalAlign.Top"/>
            </value>
            <remarks>
            The VerticalAlign property is taken into consideration only if the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.Position"/> property is set to <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Left"/> or 
            <see cref="F:Telerik.Web.UI.ListBoxButtonPosition.Right"/>.
            </remarks> 
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.ShowDelete">
            <summary>
            Gets or sets a value indicating whether to display the "delete" button.
            </summary>
            <value><c>true</c> if the "delete" button should be displayed; otherwise, <c>false</c>.</value>
            <remarks>
            	RadListBox displays the "delete" button when the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.ShowDelete"/> and <see cref="P:Telerik.Web.UI.RadListBox.AllowDelete"/>
            	properties are both set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.ShowReorder">
            <summary>
            Gets or sets a value indicating whether to display the "reorder" buttons.
            </summary>
            <value><c>true</c> if the "reorder" buttons should be displayed; otherwise, <c>false</c>.</value>
            <remarks>
            	RadListBox displays the "reorder" buttons when the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.ShowReorder"/> and <see cref="P:Telerik.Web.UI.RadListBox.AllowReorder"/>
            	properties are both set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.ShowTransfer">
            <summary>
            Gets or sets a value indicating whether to display the "transfer" buttons.
            </summary>
            <value><c>true</c> if the "transfer" buttons should be displayed; otherwise, <c>false</c>.</value>
            <remarks>
            	RadListBox displays the "transfer" buttons when the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.ShowTransfer"/> and <see cref="P:Telerik.Web.UI.RadListBox.AllowTransfer"/>
            	properties are both set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.ShowTransferAll">
            <summary>
            Gets or sets a value indicating whether to display the "transfer all" buttons.
            </summary>
            <value><c>true</c> if the "transfer all" buttons should be displayed; otherwise, <c>false</c>.</value>
            <remarks>
            	RadListBox displays the "transfer all" buttons when the <see cref="P:Telerik.Web.UI.ListBoxButtonSettings.ShowTransferAll"/> and <see cref="P:Telerik.Web.UI.RadListBox.AllowTransfer"/>
            	properties are both set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.ReorderButtons">
             <summary>
             Gets or sets a value that specifies which reorder buttons should be rendered.
             </summary>
            <value>The reorder buttons mode. The default value is <see cref="F:Telerik.Web.UI.ListBoxReorderButtons.Common"/></value>
            <remarks>
            A value that specifies which reorder buttons should be rendered. Members might be
            combined using bitwise operators allowing for custom configurations.
             </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ListBoxButtonSettings.TransferButtons">
             <summary>
             Gets or sets a value that specifies which transfer buttons should be rendered.
             </summary>
            <value>The transfer buttons mode. The default value is <see cref="F:Telerik.Web.UI.ListBoxReorderButtons.All"/></value>
            <remarks>
            A value that specifies which transfer buttons should be rendered. Members might be
            combined using bitwise operators allowing for custom configurations.
             </remarks>
        </member>
        <member name="T:Telerik.Web.UI.ListBoxPostBackCommand">
            <summary>
            For internal use
            </summary>
            <exclude />
            <excludetoc /> 
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxItem">
            <summary>
            Represents an item in the <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            Use the <see cref="P:Telerik.Web.UI.ControlItem.Text"/> property to set the text of the item.
            Use the <see cref="P:Telerik.Web.UI.ControlItem.Value"/> property to specify the value of the item.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItem.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxItem"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItem.#ctor(System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxItem"/> class.
            </summary>
            <param name="text">The text of the item.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItem.#ctor(System.String,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxItem"/> class.
            </summary>
            <param name="text">The text of the item.</param>
            <param name="value">The value of the item.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItem.Clone">
            <summary>
            Clones this instance.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItem.Remove">
            <summary>
            Removes this <see cref="T:Telerik.Web.UI.RadListBoxItem"/> from the <see cref="T:Telerik.Web.UI.RadListBox"/> control which contains it.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.Visible">
            <summary>
            Not supported
            </summary>
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.Value">
            <summary>
            Gets or sets the value of this <see cref="T:Telerik.Web.UI.RadListBoxItem"/>.
            </summary>
            <value>
            	The value of the item. If the Value property is not set the <see cref="P:Telerik.Web.UI.ControlItem.Text"/> will be returned.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.ListBox">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.RadListBox"/> which this item belongs to.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.RadListBox"/> which this item belongs to; null (Nothing) if the item is not added to any <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.Selected">
            <summary>
            Gets or sets a value indicating whether this <see cref="T:Telerik.Web.UI.RadListBoxItem"/> is selected.
            </summary>
            <value><c>true</c> if selected; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.Checked">
            <summary>
            Gets or sets a value indicating whether the item is checked or not.
            </summary>
            <value>
            <c>True</c> if the item is checked; otherwise <c>false</c>. The default value
            is <c>false</c>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.Checkable">
            <summary>
            Gets or sets a value indicating whether the item is checkable. A checkbox control is rendered
            for checkable nodes.
            </summary>
            <remarks>
            If the <see cref="P:Telerik.Web.UI.RadListBox.CheckBoxes">CheckBoxes</see> property set to <c>true</c>, RadTreeView automatically displays a checkbox next to each node. 
            You can set the <c>Checkable</c> property to <c>false</c> for nodes that do not need to display a checkbox.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItem.AllowDrag">
            <summary>
            Gets or sets a value indicating whether the Item can be dragged and dropped.
            </summary>
            <value>
            <c>True</c> if the user is able drag and drop the Item; otherwise <c>false</c>.
            The default value is <c>true</c>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadListBoxItemCollection">
            <summary>
            Represents a collection of <see cref="T:Telerik.Web.UI.RadListBoxItem"/> objects in a <see cref="T:Telerik.Web.UI.RadListBox"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadListBoxItemCollection"/> class.
            </summary>
            <param name="parent">The parent <see cref="T:Telerik.Web.UI.RadListBox"/> control.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.Add(Telerik.Web.UI.RadListBoxItem)">
            <summary>
            Appends an item to the collection.
            </summary>
            <param name="item">The item to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.Insert(System.Int32,Telerik.Web.UI.RadListBoxItem)">
            <summary>
            Inserts an item to the collection at the specified index.
            </summary>
            <param name="index">The zero-based index at which <paramref name="item"/> should be inserted.</param>
            <param name="item">The item to insert into the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.FindAll(System.Predicate{Telerik.Web.UI.RadListBoxItem})">
            <summary>
            Finds all items mathcing the specified criteria.
            </summary>
            <param name="match">The delegate which determines whether an item matches the search criteria.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.Remove(Telerik.Web.UI.RadListBoxItem)">
            <summary>
            Removes the specified item from the collection.
            </summary>
            <param name="item">The item to remove from the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.Sort">
            <summary>
            	Sort the items from <see>RadListBoxItemCollection</see>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListBoxItemCollection.Sort(System.Collections.IComparer)">
            <summary>
            	Sort the items from <see>RadListBoxItemCollection</see>.
            </summary>
            <param name="comparer">
            An object from IComparer interface.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadListBoxItemCollection.Item(System.Int32)">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.RadListBoxItem"/> at the specified index.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.IRadListViewCommandEvent.ExecuteCommand(System.Object)">
            <summary>Override to fire the corresponding command.</summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadListViewCommandEvent.Canceled">
            <summary>Gets or sets a value, defining whether the command should be canceled.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewCommandEventArgsFactory">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewSelectCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSelectCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>Fires <see cref="T:Telerik.Web.UI.RadListView"/>.SelectedIndexChanged event.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewDeselectCommandEventArgs">
            <summary>For internal usage only.</summary>
            <exclude/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewDeselectCommandEventArgs.ExecuteCommand(System.Object)">
            <summary>Fires <see cref="T:Telerik.Web.UI.RadListView"/>.SelectedIndexChanged event.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerFieldCreatedEventArgs.Item">
            <summary>
            Holds reference to RadDataPagerFieldItem that contains current field controls.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerField.InitializeFieldControls(Telerik.Web.UI.RadDataPagerFieldItem)">
            <summary>
            After calling this method DataPagerField controls will be created and added to Controls colleciton
            of the passed DataPagerFieldItem
            </summary>
            <param name="inItem">DataPagerFieldItem item where controls will be instanciated</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerField.SEOPagingLinkBuilder(System.String)">
            <summary>
            Builds navigation url if SEO paging is enabled.
            </summary>        
            <param name="argument">Argument that the link must be build for.</param>
            <returns>Returns string representation of navigation url.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerField.Owner">
            <summary>
            Returns RadDataPager control that owns current pager field. 
            This property is set by DataPagerFieldCollection and is read only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerField.PagerType">
            <summary>
            Gets the string representation of the type-name of this instance. The value is
            used by RadDataPager to determine the type of the pager field persisted into the ViewState, when
            recreating the pager after postback. This property is read only.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerField.HorizontalPosition">
            <summary>
            Gets or sets the positioning of the pager field with regard to its CSS float style.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerField.Visible">
            <summary>
            Gets or sets value that indicates whether RadDataPagerField is rendered.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.CreateButtonField(Telerik.Web.UI.PagerFieldButtonType,System.String,System.String,System.String,System.String,System.String)">
            <summary>
            Creates button control from one of the following type: LinkButton, PushButton, ImageButton
            or HyperLink if AllowSEOPaging is set to "true". Button Enabled state will be validated 
            depending on current page index.
            </summary>
            <param name="type">PagerFieldButtonType enumerator</param>
            <param name="text">Text shown as content the button control</param>
            <param name="toolTip">Tooltip of the button</param>
            <param name="commandName">Command that button triggers</param>
            <param name="commandArgument">Command argument which will be passed along with CommandName</param>
            <param name="className">CssClass that will be applied on the button</param>
            <returns>Returns button control of type: LinkButton, PushButton, ImageButton
            or HyperLink if SEO paging.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.CreateButtonFieldForCommand(Telerik.Web.UI.PagerFieldButtonType,System.String,System.String,System.String,System.String)">
            <summary>
            Create button control for one of the following types: LinkButton, PushButton, ImageButton
            </summary>                
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.CreateButtonFieldForSEOPaging(System.String,System.String,System.String,System.String)">
            <summary>
            Create button of type HyperLink whenever AllowSEOPaging is set to "true".
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.PrepareSEOButtonContent(System.Web.UI.WebControls.HyperLink,System.String,System.String,System.String)">
            <summary>
            Sets content of HyperLink button if SEO paging is enabled, depending on commandArgument.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.GetResolvedImageUrl(System.String)">
            <summary>
            Get reference to image from embeded resources. Internally used by PrepareSEOButtonContent method.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.PrepareTextFormat(Telerik.Web.UI.PagerFieldButtonType,System.String)">
            <summary>
            Formats the text depending on PagerFieldButtonType. Text for LinkButton is wrapped with span tag.
            </summary>
            <param name="type">Value from PagerFieldButtonType enum.</param>
            <param name="text">Text to be formatted.</param>
            <returns>Returns string representing content of button.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonFieldBase.EnsureEnableState(System.Web.UI.WebControls.WebControl,System.String)">
            <summary>
            Ensures button Enabled property. If button command argumetn is same as current page, button
            will be disabled.
            </summary>
            <param name="button">Button instance to be validated.</param>
            <param name="commandArgument">Command argument for the button.</param>
            <returns>Returns same button with Enabled property set.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonFieldBase.ButtonType">
            <summary>
            This property specifies the type of the buttons for current pager field. Default value LinkButton.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.InitializeFieldControls(Telerik.Web.UI.RadDataPagerFieldItem)">
            <summary>
            This method must be overriden in order to build controls for the current RadDataPagerField.
            </summary>
            <param name="inItem"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.CreatePrevButton(Telerik.Web.UI.PagerFieldButtonType)">
            <summary>
            Method for creating "Previous" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.CreatenNextButton(Telerik.Web.UI.PagerFieldButtonType)">
            <summary>
            Method for creating "Next" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.CreatenFirstButton(Telerik.Web.UI.PagerFieldButtonType)">
            <summary>
            Method for creating "First" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.CreatenLastButton(Telerik.Web.UI.PagerFieldButtonType)">
            <summary>
            Method for creating "Last" button.
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadDataPagerButtonField.CreateNumericButton(Telerik.Web.UI.PagerFieldButtonType,System.String,System.Int32)">
            <summary>
            Method for creating all numeric pager buttons.
            </summary>        
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.FieldType">
            <summary>
            This property specifies the type of the field. Default value is PrevNext field type.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.NextButtonText">
            <summary>
            This property specifies Next button text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.PrevButtonText">
            <summary>
            This property specifies Prev button text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.FirstButtonText">
            <summary>
            This property specifies First button text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.LastButtonText">
            <summary>
            This property specifies Last button text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerButtonField.PageButtonCount">
            <summary>
            This property specifies the number of the buttons for Numeric field type.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerGoToPageField.TextBoxWidth">
            <summary>
            Get or set RadNumericTextBox Width in pixels. Default value is 30px.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerGoToPageField.CurrentPageText">
            <summary>
            Get or set text of the label before RadNumericTextBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerGoToPageField.TotalPageText">
            <summary>
            Get or set text of the lable after RaddNumericTextBox.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerGoToPageField.EnableSubmitButton">
            <summary>
            Determines whether submit button should be render to change current page.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerGoToPageField.SubmitButtonText">
            <summary>
            Get or set submit button text if EnableSubmitButton is set to true.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerNumericPageSizeField.TextBoxWidth">
            <summary>
            Get or set RadNumericTextBox Width in pixels. Default value is 30px.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerNumericPageSizeField.SubmitButtonText">
            <summary>
            Get or set submit button text.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerNumericPageSizeField.LabelText">
            <summary>
            Get or set text of the label.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerPageSizeField.PageSizeText">
            <summary>
            Get/Set the text of the label before RadComboBox
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerPageSizeField.PageSizeComboWidth">
            <summary>
            Get/Set RadComboBox Width property in pixels. Default value is 50px.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerSliderField.SliderDragText">
            <summary>
            Get or set RadSlider DragText property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerSliderField.SliderDecreaseText">
            <summary>
            Get or set RadSlider DecreaseText property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerSliderField.SliderIncreaseText">
            <summary>
            Get or set RadSlider IncreaseText property.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerSliderField.SliderOrientation">
            <summary>
            Get or set RadSlider orientation.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerSliderField.LabelTextFormat">
            <summary>
            Get or set the format of the label text. Default value is "Page {0} of {1}"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerTemplatePageField.PagerTemplate">
            <summary>
            This property contains template for RadDataPagerTemplateField. 
            Container control is RadDataPagerFieldItem.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerClientEvents.OnDataPagerCreated">
            <summary>This client-side event is fired after the 
            <see cref="T:Telerik.Web.UI.RadDataPager"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerClientEvents.OnDataPagerCreating">
            <summary>This client-side event is fired before the 
            <see cref="T:Telerik.Web.UI.RadDataPager"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerClientEvents.OnDataPagerDestroying">
            <summary>
            This client-side event is fired when <see cref="T:Telerik.Web.UI.RadDataPager"/> object is
            destroyed, i.e. on each <em>window.onunload</em>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerClientEvents.OnPageIndexChanging">
            <summary>
            This client-side event is fired when current page index is set on 
            <see cref="T:Telerik.Web.UI.RadDataPager"/> object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerClientEvents.OnPageSizeChanging">
            <summary>
            This client-side event is fired when current page size is set on 
            <see cref="T:Telerik.Web.UI.RadDataPager"/> object.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerFieldItem.Field">
            <summary>
            Holds reference to RadDataPagerField that is instanciated in current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPagerFieldItem.Owner">
            <summary>
            Holds reference to RadDataPager control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.CallCommand(Telerik.Web.UI.RadDataPagerCommandEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadDataPager.Command"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.OnTotalRowCountRequest(Telerik.Web.UI.RadDataPagerTotalRowCountRequestEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadDataPager.TotalRowCountRequest"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.OnPageIndexChanged(Telerik.Web.UI.RadDataPagerPageIndexChangeEventArgs)">
            <summary>
            Raises <see cref="E:Telerik.Web.UI.RadDataPager.PageIndexChanged"/> event
            </summary>
            <param name="e"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.FireCommand(System.String,System.String)">
            <summary>
            Triggers command on RadDataPager.
            </summary>
            <param name="commandName">Command that will be fired.</param>
            <param name="commandArgument">Arguments of the command.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.FireCommand(Telerik.Web.UI.RadDataPagerCommandEventArgs)">
            <summary>
            Triggers command on RadDataPager.
            </summary>
            <param name="commandArgs">Command argument to be processed by RadDataPager</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.AddListenersToContainer">
            <summary>
            Add listener to IRadPageableItemContainer events. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.OnTotalRowCountAvailable(System.Object,Telerik.Web.UI.RadDataPagerPageEventArgs)">
            <summary>
            This method is called when total row count is supplied by IRadPageableContainer.
            </summary>
            <param name="sender">IRadPageableContainer itself</param>
            <param name="e">DataPagerPageEventArgs arguments for creating pager fields</param>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.CreateDataPagerFields">
            <summary>
            This method is called to create all RadDataPager fields.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.HandleSEOPaging">
            <summary>
            This method checks query string for the key specified by SEOPagingQueryPageKey and
            if present attempt to page.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.OnBubbleEvent(System.Object,System.EventArgs)">
            <summary>
            Handles event that bubbles from any RadDataPagerField. Command event will be triggered.
            </summary>
            <param name="source"></param>
            <param name="args"></param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadDataPager.CallCommandToContainer(System.String,System.String)">
            <summary>
            This method is called whenever any command bubbles from RadDataPagerField. If the command can be handled from RadDataPager
            it will return true and event bubbling will be prevented. If command name is custom return value will be false and command
            will continue to bubble.
            </summary>
            <param name="commandName">Could be any of the predefined RadDataPager commands or any custom command.</param>
            <param name="commandArgument">Could be any of the predefined RadDataPager commands arguments or any custom argument.</param>
            <returns>Return false will command should continue bubble or true if command is handled by RadDataPager.</returns>
        </member>
        <member name="E:Telerik.Web.UI.RadDataPager.FieldCreating">
            <summary>
            Raised when custom pager field is creating on postback
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDataPager.FieldCreated">
            <summary>
            Raised when pager field item is created.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDataPager.Command">
            <summary>
            Raised when a button in a RadDataPager control is clicked. 
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDataPager.TotalRowCountRequest">
            <summary>
            Raised when RadDataPager is not attached to pageable container and need information regarding total count of the items to page.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadDataPager.PageIndexChanged">
            <summary>
            Raised when current page index is changing.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPager.PageableItemContainer">
            <summary>
            Read only property. Holds reference to control that implements 
            IRadPageableItemContainer or IPageableItemContainer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPager.OriginalPageSize">
            <summary>
            It is used for storing page size set declaratively
            In order to show this page size in the combo box with page sizes
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPager.SEOPagingQueryPageKey">
            <summary>
            Get or set query string key for SEO paging. This property may be used in conjunction with 
            AllowSEOPaging
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPager.AllowSEOPaging">
            <summary>
            Get or set whether SEO paging should be used.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadDataPager.LocalizationPath">
            <summary>
            Gets or sets a value indicating where RadDataPager will look for its .resx localization file.
            By default this file should be in the App_GlobalResources folder. However, if you cannot put
            the resource file in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource file.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadDataPagerResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the grid localization file from any location in the 
            web application.</para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.IHideObjectMembers.Equals(System.Object)">
            <summary>
            Equalses the specified value.
            </summary>
            <param name="value">The value.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.IHideObjectMembers.GetHashCode">
            <summary>
            Gets the hash code.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.IHideObjectMembers.GetType">
            <summary>
            Gets the type.
            </summary>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.IHideObjectMembers.ToString">
            <summary>
            Toes the string.
            </summary>
            <returns></returns>
        </member>
        <member name="T:Telerik.Web.UI.IRadListViewFilterExpressionContainer">
            <summary>
            Represents an container for RadListViewFilterExpression
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewContainsFilterExpression">
            <summary>
            Represents Contains RadListView filter expression
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewFilterExpression">
            <summary>
            Represents basic FilterExpression for the RadListView control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns></returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpression.ToOql">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for OpenAccessDataSource control usage.
            </summary>
            <returns>OpenAccessDataSource string representation</returns>
            <remarks>Not intended for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewFilterExpression.FieldName">
            <summary>
            Gets or sets the name of the field on which the filter expression should be applied
            </summary>
            <exception cref="T:System.ArgumentNullException">Argument is null.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewFilterExpression.FilterFunction">
            <summary>
            Gets the type of filter function
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewFilterExpression.FieldType">
            <summary>
            Gets the type of the field
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewFilterExpression.ExpressionType">
            <summary>
            Gets the type of the current filter expression object
            </summary>        
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleValueExpression`1.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleValueExpression`1.ToOql">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for OpenAccessDataSource control usage.
            </summary>
            <returns>OpenAccessDataSource string representation</returns>
            <remarks>Not intended for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleValueExpression`1.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSingleValueExpression`1.CurrentValue">
            <summary>
            Value to be filter on
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSingleValueExpression`1.FieldType">
            <summary>
            Get the type of the field
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleStringExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewStartsWithFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleStringExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSingleStringExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewContainsFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewContainsFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewContainsFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>        
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewContainsFilterExpression.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewEndsWithFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewEndsWithFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewEqualToFilterExpression`1">
            <summary>
            Represents a EqualTo RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewEqualToFilterExpression`1.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewEqualToFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewEqualToFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns></returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewEqualToFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionCollection.BuildExpression">
            <summary>
            Returns a expression builder object, the root of the 
            fluent api helpers  
            </summary>
            <returns>expression builder object</returns>
            <remarks>This entry point for the fluent filter expression API</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionCollection.BuildExpression(System.Action{Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder})">
            <summary>
            A helper method for building filter expressions hierarchy in an fluent like manner
            </summary>
            <param name="configuration">expression builder helper object</param>
            <remarks>This entry point for the fluent filter expression API</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionCollection.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expressions 
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionCollection.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expressions 
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionCollection.FindByFieldName(System.String)">
            <summary>
            Finds a expression bound to a given fieldName
            </summary>
            <param name="fieldName">Field's name to search for</param>
            <returns>filterExpression</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewFilterExpressionLogicalBuilder">
            <exclude/>
            <excludetoc/>
            <summary>
            Intended for internal use only
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionLogicalBuilder.Build">
            <summary>
            Builds current expressions hierarchy 
            </summary>
            <remarks>expressions hierarchy can be build only once</remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder">
            <exclude/>
            <excludetoc/>
            <summary>
            Intended for internal use only
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.EqualTo``1(System.String,``0)">
            <summary>
            Adds an EqualTo filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.NotEqualTo``1(System.String,``0)">
            <summary>
            Adds an NotEqualTo filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.GreaterThan``1(System.String,``0)">
            <summary>
            Adds an GreaterThan filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.GreaterThanOrEqualTo``1(System.String,``0)">
            <summary>
            Adds an GreaterThanOrEqualTo filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.Contains(System.String,System.String)">
            <summary>
            Adds an Contains filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.StartsWith(System.String,System.String)">
            <summary>
            Adds an StartsWith filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.EndsWith(System.String,System.String)">
            <summary>
            Adds an EndsWith filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.LessThan``1(System.String,``0)">
            <summary>
            Adds an LessThen filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.LessThanOrEqualTo``1(System.String,``0)">
            <summary>
            Adds an LessThanOrEqualTo filter expression
            </summary>
            <typeparam name="T">type of the field which will be filtered</typeparam>
            <param name="fieldName">name of the field which will be filtered</param>
            <param name="currentValue">value to be filter on</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.IsNull(System.String)">
            <summary>
            Adds an IsNull filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>        
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.IsNotNull(System.String)">
            <summary>
            Adds an IsNotNull filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>        
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.IsEmpty(System.String)">
            <summary>
            Adds an IsEmpty filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>        
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.IsNotEmpty(System.String)">
            <summary>
            Adds an IsNotEmpty filter expression
            </summary>        
            <param name="fieldName">name of the field which will be filtered</param>        
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.Group(System.Action{Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder})">
            <summary>
            Adds a group of filter expressions
            </summary>
            <param name="groupBuilder">inner group instance</param>
            <returns>instance of the RadListViewFilterExpressionLogicalBuilder</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.Build">
            <summary>
            Builds current expressions hierarchy 
            </summary>
            <remarks>expressions hierarchy can be build only once</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewFilterExpressionFluentBuilder.IsBuild">
            <summary>
            Gets value indicating if current expression hierarchy is build
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.Contains">
            <summary>Same as: dataField LIKE '/%value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.EqualTo">
            <summary>
            Same as: dataField = value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.NotEqualTo">
            <summary>Same as: dataField != value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.GreaterThan">
            <summary>Same as: dataField &gt; value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.LessThan">
            <summary>
            Same as: dataField &lt; value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.GreaterThanOrEqualTo">
            <summary>Same as: dataField &gt;= value</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.LessThanOrEqualTo">
            <summary>
            Same as: dataField &lt;= value
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.IsEmpty">
            <summary>
            Same as: dataField = ''
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.NotIsEmpty">
            <summary>Same as: dataField != ''</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.IsNull">
            <summary>
            Only null values
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.NotIsNull">
            <summary>
            Only those records that does not contain null values within the corresponding column
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.StartsWith">
            <summary>Same as: dataField LIKE 'value/%'</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewFilterFunction.EndsWith">
            <summary>Same as: dataField LIKE '/%value'</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewGreaterThanFilterExpression`1">
            <summary>
            Represents a GreaterThan RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGreaterThanFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewGreaterThanFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewGreaterThenOrEqualToFilterExpression`1">
            <summary>
            Represents a GreaterThen Or EqualTo RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGreaterThenOrEqualToFilterExpression`1.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewGreaterThenOrEqualToFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGreaterThenOrEqualToFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewGreaterThenOrEqualToFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewGroupFilterExpression">
            <summary>
            Represents a group of filter expressions
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.#ctor">
            <summary>
            Creates an instance of RadListViewGroupFilterExpression
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.#ctor(Telerik.Web.UI.RadListViewGroupFilterOperator)">
            <summary>
            Creates an instance of RadListViewGroupFilterExpression
            </summary>
            <param name="groupOperator">logical operator which is connects the inner filterexpression</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expressions 
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewGroupFilterExpression.Add(Telerik.Web.UI.RadListViewFilterExpression)">
            <summary>
            Adds a given filter expression of the group
            </summary>
            <param name="filterExpression">fitlerexpression to be added</param>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewGroupFilterExpression.GroupOperator">
            <summary>
            Gets logical operator which is connects the inner filterexpression
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewIsEmptyFilterExpression">
            <summary>
            Represents IsEmpty RadListView filter expression
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewIsEmptyFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.ToOql">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for OpenAccessDataSource control usage.
            </summary>
            <returns>OpenAccessDataSource string representation</returns>
            <remarks>Not intended for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsEmptyFilterExpression.FieldType">
            <summary>
            Gets the type of the field
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression">
            <summary>
            Represents IsEmpty RadListView filter expression
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewIsNotEmptyFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNotEmptyFilterExpression.FieldType">
            <summary>
            Gets the type of the field
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewIsNotNullFilterExpression">
            <summary>
            Represents IsNotNull RadListView filter expression
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewIsNotNullFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>       
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.FilterFunction">
            <summary>
            Gets the type of filter function
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNotNullFilterExpression.FieldType">
            <summary>
            Gets the type of the field
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewIsNullFilterExpression">
            <summary>
            Represents IsNull RadListView filter expression
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNullFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewIsNullFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNullFilterExpression.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNullFilterExpression.ToDynamicLinq">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for LinqDataSource usage.
            </summary>
            <returns>LinqDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>  
        </member>
        <member name="M:Telerik.Web.UI.RadListViewIsNullFilterExpression.ToEntitySQL">
            <summary>
            Returns a string representation of the filter expression
            in format suitable for EntityDataSource usage.
            </summary>
            <returns>EntityDataSource string representation</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNullFilterExpression.FilterFunction">
            <summary>
            Gets the type of filter function
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewIsNullFilterExpression.FieldType">
            <summary>
            Gets the type of the field
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewLessThanFilterExpression`1">
            <summary>
            Represents a LessThan RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewLessThanFilterExpression`1.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewLessThanFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewLessThanFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewLessThanFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewLessThanOrEqualToFilterExpression`1">
            <summary>
            Represents a LessThanOrEqualTo RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewLessThanOrEqualToFilterExpression`1.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewLessThanOrEqualToFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewLessThanOrEqualToFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns>delegate's instance</returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewLessThanOrEqualToFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewNotEqualToFilterExpression`1">
            <summary>
            Represents a NotEqualTo RadListView filter expression
            </summary>
            <typeparam name="T">type of the field on which filter will be applied</typeparam>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewNotEqualToFilterExpression`1.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewNotEqualToFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewNotEqualToFilterExpression`1.ToPredicate">
            <summary>
            Returns a representation of the current filter expression as a delegate
            </summary>
            <returns></returns>
            <remarks>Not intended  for external usage</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewNotEqualToFilterExpression`1.FilterFunction">
            <summary>
            Get the type of filter function
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewStartsWithFilterExpression.#ctor(System.String)">
            <summary>
            Creates a instance of RadListViewStartsWithFilterExpression class
            </summary>
            <param name="fieldName">name of the field on which filter will be applied</param>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewDataItem">
            <summary>
            Represents an individual data item in a <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewItem">
            <summary>
            Represents an individual item in a <see cref="T:Telerik.Web.UI.RadListView"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewItem.FireCommandEvent(System.String,System.Object)">
            <summary>
            Use this method to simulate item command event that bubbles to 
            <see cref="T:Telerik.Web.UI.RadListView"/> and can be handled automatically or in a
            custom manner, handling <see cref="T:Telerik.Web.UI.RadListView"/>.ItemCommand event.
            </summary>
            <param name="commandName">command to bubble, for example 'Page'
            </param>
            <param name="commandArgument">command argument, for example 'Next'
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewItem.IsInEditMode">
            <summary>
            Gets a value indicating whether the <see cref="T:Telerik.Web.UI.RadListView"/> item is in edit mode at the
            moment.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewDataItem.GetDataKeyValue(System.String)">
            <summary>
            Get the DataKeyValues from the owner <see cref="T:Telerik.Web.UI.RadListView"/> with the corresponding item <see cref="P:Telerik.Web.UI.RadListViewDataItem.DisplayIndex"/> and <paramref name="keyName"/>.
            The <paramref name="keyName"/> should be one of the specified in the  <see cref="P:Telerik.Web.UI.RadListView.DataKeyNames"/> array
            </summary>
            <param name="keyName">data key name</param>
            <returns>data key value</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewDataItem.ExtractValues(System.Collections.IDictionary)">
            <summary>
            Extracts values from this <see cref="T:Telerik.Web.UI.RadListViewDataItem"/> instance
            and appends them to passed <see cref="T:System.Collections.IDictionary"/> collection
            </summary>
            <param name="newValues">This is dictionary to fill, this parameter
            should not be <c>null</c></param>
            <exception cref="T:System.ArgumentNullException"><c>newValues</c> is <c>null</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewDataItem.UpdateValues(System.Object)">
            <summary>
            Updates properties of the passed object instance from current 
            <see cref="T:Telerik.Web.UI.RadListViewDataItem"/>'s extracted values 
            </summary>
            <param name="objectToUpdate">object to be updated</param>
            <exception cref="T:System.ArgumentNullException"><c>objectToUpdate</c> is null.</exception>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewDataItem.DataItemIndex">
            <summary>
            Gets the index of the data item bound to a control.
            </summary>
            <returns>
            An Integer representing the index of the data item in the data source.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewDataItem.DisplayIndex">
            <summary>
            Gets the position of the data item as displayed in a control.
            </summary>
            <returns>
            An Integer representing the position of the data item as displayed in a control.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewDataItem.Selected">
            <summary>Gets or set value indicating whether the 
            <see cref="T:Telerik.Web.UI.RadListView"/> item is selected</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewDataItem.Edit">
            <summary>Sets the Item in edit mode.</summary>
            <remarks>Requires <see cref="T:Telerik.Web.UI.RadListView"/> to rebind.</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewDataItem.SavedOldValues">
            <summary>Gets the old value of the edited item</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewEditableItem">
            <summary>
            Represents an editable item
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewEditableItem.#ctor(Telerik.Web.UI.RadListView,System.Int32)">
            <summary>
            Creates instance of RadListViewEditableItem
            </summary>
            <param name="ownerListView"><see cref="T:Telerik.Web.UI.RadListView"/> instance which owns the item</param>
            <param name="displayIndex">index at which the item is located on the current page</param>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewEditableItem.IsInEditMode">
            <summary>
            Gets a value indicating whether the <see cref="T:Telerik.Web.UI.RadListView"/> item is in edit mode at the
            moment.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewInsertItem">
            <summary>
            Represents an insert item
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewEmptyDataItem">
            <summary>
            Represents an item which is rendered when <see cref="T:Telerik.Web.UI.RadListView"/>'s data source is empty
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewEmptyDataItem.#ctor(Telerik.Web.UI.RadListView)">
            <summary>
            Creates new instance of RadListViewEmptyDataItem
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewGroupItem">
            <summary>
            Represents an item for the single group container 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ListViewEnumerableBase">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.ListViewEnumerableBase.SetSortExpressions(Telerik.Web.UI.RadListViewSortExpressionCollection)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.ListViewEnumerableBase.SetFilteringExpressions(Telerik.Web.UI.RadListViewFilterExpressionCollection)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="T:Telerik.Web.UI.ListViewNullEnumerable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.ListViewNullEnumerable.RawEnumerable">
            <exception cref="T:System.InvalidOperationException">Cannot perform this
            operation when DataSource is not assigned</exception>
        </member>
        <member name="T:Telerik.Web.UI.ListViewPagableEnumerable">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.ListViewEnumerableFromViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.ListViewInMemoryEnumerableHelper.ToArray``1(System.Collections.Generic.IEnumerable{``0})">
            <exception cref="T:System.ArgumentNullException"><c>source</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.UI.ListViewInMemoryEnumerableHelper.ToList``1(System.Collections.Generic.IEnumerable{``0})">
            <exception cref="T:System.ArgumentNullException"><c>source</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.UI.ListViewInMemoryEnumerableHelper.Where(System.Collections.IEnumerable,System.Predicate{System.Object})">
            <exception cref="T:System.ArgumentNullException"><c>source</c> is null.</exception>
            <exception cref="T:System.ArgumentNullException"><c>predicate</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.UI.OrderByEnumerable`2.#ctor(System.Collections.IEnumerable,Telerik.Web.UI.Functions.TFunc{System.Object,`1},System.Collections.Generic.IComparer{`1},System.Boolean)">
            <exception cref="T:System.ArgumentNullException"><c>source</c> is null.</exception>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewItemType">
            <summary>
            Specifies the function of an item in the <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnListViewCreated">
            <summary>This client-side event is fired after the 
            <see cref="T:Telerik.Web.UI.RadListView"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnListViewCreating">
            <summary>This client-side event is fired before the 
            <see cref="T:Telerik.Web.UI.RadListView"/> is created.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnListViewDestroying">
            <summary>
            This client-side event is fired when <see cref="T:Telerik.Web.UI.RadListView"/> object is
            destroyed, i.e. on each <em>window.onunload</em>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnItemDragStarted">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadListView"/> item is about to be dragged.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnItemDragging">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadListView"/> item is dragged.
            </summary>
            [DefaultValue("")]
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnItemDropping">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadListView"/> item 
            is about to be dropped after dragging. This event can be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientEvents.OnItemDropped">
            <summary>
            This client-side event is fired when a <see cref="T:Telerik.Web.UI.RadListView"/> item
            is dropped after dragging. This event cannot be canceled.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientSettings.ClientEvents">
            <summary>Gets a reference to <see cref="T:Telerik.Web.UI.RadListViewClientEvents"/> class.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewClientSettings.AllowItemsDragDrop">
            <summary>
            Gets or sets a value indicating whether the <see cref="T:Telerik.Web.UI.RadListView"/> items can be dragged and dropped
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewInsertItemPosition">
            <summary>
            Specifies the location of the InsertItemTemplate template when it is
            rendered as part of the <see cref="T:Telerik.Web.UI.RadListView"/> control. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewItemEventArgs">
            <summary>
            Provides data for the ItemCreated and ItemDataBound events.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewItemEventArgs.#ctor(Telerik.Web.UI.RadListViewItem)">
            <summary>
            Initializes a new instance of the RadListViewItemEventArgs class.
            </summary>
            <param name="item"></param>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewItemEventArgs.Item">
            <summary>
            The item being created or data-bound.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewSortOrder">
            <summary>Enumeration representing the order of sorting data in RadListView</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewSortOrder.None">
            <summary>do not sort the listview data</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewSortOrder.Ascending">
            <summary>sorts listview data in ascending order</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadListViewSortOrder.Descending">
            <summary>sorts listview data in descending order</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewSortExpression">
            <summary>
            Class that is used to define sort field and sort order for RadListView
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.SortOrderAsString">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.SortOrderFromString(System.String)">
            <summary>
            Returns a <see cref="T:Telerik.Web.UI.RadListViewSortOrder"/> enumeration based on the string input. Takes either "ASC"
            or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.SortOrderAsString(Telerik.Web.UI.RadListViewSortOrder)">
            <summary>
            This method gives the string representation of the sorting order. It can be
            either "ASC" or "DESC"
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.Equals(System.Object)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.GetHashCode">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.SetSortOrder(System.String)">
            <summary>
            	<para>Sets the sort order.</para>
            	<para>The SortOrder paremeter should be either "Ascending", "Descending" or "None".</para>
            </summary>
            <exception cref="T:System.ArgumentException"><c>ArgumentException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.ToString">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpression.Parse(System.String)">
            <summary>
            Parses a string representation of the sort order and returns
            GirdSortExpression.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpression.FieldName">
            <summary>Gets or sets the name of the field to which sorting is applied.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpression.SortOrder">
            <summary>Sets or gets the current sorting order.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewSortExpressionCollection">
            <summary>
            A collection of <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> objects. Depending on the value of
            <see cref="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowMultiFieldSorting"/> it holds single
            or multiple sort expressions. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.#ctor(System.Collections.ArrayList)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.CopyTo(System.Array,System.Int32)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.GetEnumerator">
            <summary>
            Returns an enumerator that iterates through the
            <strong>RadListViewSortExpressionCollection</strong>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.Add(System.Object)">
            <summary>Adds a <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> to the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.Clear">
            <summary>Clears the RadListViewSortExpressionCollection of all items.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.CopyTo(Telerik.Web.UI.RadListViewSortExpressionCollection)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.GetExpression(System.String)">
            <summary>
            Find a SortExpression in the collection if it contains any with sort field = expression
            </summary>
            <param name="expression">sort field</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.AddSortExpression(Telerik.Web.UI.RadListViewSortExpression)">
            <summary>
            If <see cref="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowMultiFieldSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="sortExpression"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.AddSortExpression(System.String)">
            <summary>
            If <see cref="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowMultiFieldSorting"/> is true adds the sortExpression in the collection. 
            Else any other expression previously stored in the collection wioll be removed
            </summary>
            <param name="expression">String containing sort field and optionaly sort order (ASC or DESC)</param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.AddAt(System.Int32,Telerik.Web.UI.RadListViewSortExpression)">
            <summary>
                Adds a <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> to the collection at the specified
                index.
            </summary>
            <remarks>
                As a convenience feature, adding at an index greater than zero will set the
                <see cref="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowMultiFieldSorting"/> to <strong>true</strong>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.RemoveSortExpression(Telerik.Web.UI.RadListViewSortExpression)">
            <summary>Removes the specified <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> from the collection.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.ContainsSortExpression(Telerik.Web.UI.RadListViewSortExpression)">
            <summary>
                Returns true or false depending on whether the specified sorting expression exists
                in the collection. Takes a <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.ContainsExpression(System.String)">
            <summary>
            Returns true or false depending on whether the specified sorting expression
            exists in the collection. Takes a string parameter.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.ChangeSortOrder(System.String)">
            <summary>
            Adds the sort field (expression parameter) if the collection does not alreqady contain the field. Else the sort order of the field will be inverted. The default change order is
            Asc -&gt; Desc -&gt; No Sort. The No-Sort state can be controlled using <see cref="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowNaturalSort"/> property
            </summary>
            <param name="expression"></param>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.GetSortString">
            <summary>
            Get a comma separated list of sort fields and sort-order, in the same format used by
            DataView.Sort string expression. Returns null (Nothing) if there are no sort expressions in the collection
            </summary>
            <returns>Comma separated list of sort fields and optionaly sort-order, null if there are no sort expressions in the collection</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadListViewSortExpressionCollection.IndexOf(Telerik.Web.UI.RadListViewSortExpression)">
            <summary>
            Searches for the specified
            <see cref="T:Telerik.Web.UI.RadListViewSortExpression"/> and
            returns the zero-based index of the first occurrence within the entire
            <b><see cref="T:Telerik.Web.UI.RadListViewSortExpressionCollection"/></b>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowMultiFieldSorting">
            <summary>
            If false, the collection can contain only one sort expression at a time.
            Trying to add a new one in this case will delete the existing expression
            or will change the sort order if its FiledName is the same.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.Item(System.Int32)">
            <summary>This is the default indexer of the collection - takes an integer value.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.AllowNaturalSort">
            <summary>
            Allow the no-sort state when changing sort order.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.Count">
            <summary>Returns the number of items in the RadListViewSortExpressionCollection.</summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.IsSynchronized">
            <summary>
            Gets a value indicating whether access to the RadListViewSortExpressionCollection is
            synchronized (thread safe).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadListViewSortExpressionCollection.SyncRoot">
            <summary>
            	<a onclick="javascript:Track('ctl00_LibFrame_ctl07|ctl00_LibFrame_ctl14',this);" href="http://msdn2.microsoft.com/en-us/library/system.collections.arraylist.syncroot.aspx">
            	</a>
            	<table>
            		<tr>
            			<td>Gets an object that can be used to synchronize access to the
                        GirdSortExpressionCollection.</td>
            		</tr>
            	</table>
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadListViewValidationSettings">
            <summary>
            Represents a various validation setting of <see cref="T:Telerik.Web.UI.RadListView"/> control
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.MenuRepeatDirection">
            <summary>
            Specifies the repeat direction of <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> items when rendered in columns.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MenuRepeatDirection.Vertical">
            <summary>
            Items are displayed vertically in columns from top to bottom, 
            and then left to right, until all items are rendered.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MenuRepeatDirection.Horizontal">
            <summary>
            Items are displayed horizontally in rows from left to right, 
            then top to bottom, until all items are rendered.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.MenuAnimationSettings">
            <summary>
            Represents the animation settings like type and duration for the <see cref="T:Telerik.Web.UI.RadMenu"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.MenuAnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>
            	An integer representing the duration in milliseconds of the animation. 
            	The default value is 450 milliseconds.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.PanelBarAnimationSettings">
            <summary>
            Represents the animation settings like type and duration for the <see cref="T:Telerik.Web.UI.RadPanelBar"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.PanelBarAnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>
            	An integer representing the duration in milliseconds of the animation. 
            	The default value is 450 milliseconds
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadRating">
            <summary>
            RadRating class
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.OnRate(System.EventArgs)">
            <summary>
            Gets or sets a value indicating the server-side event handler that is called 
            when the current rating of the RadRating control changes.
            </summary>
            <value>
            A string specifying the name of the server-side event handler that will handle the
            event. The default value is an empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadRating object that raised the event.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnRate</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadRating ID="RadRating1" runat= "server"<br/>
            			<strong>OnRate="OnRate" AutoPostBack="true"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadRating&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.OnItemDataBound(Telerik.Web.UI.RatingEventArgs)">
            <summary>
            Executed right after the item is data-bound to the data source.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.OnItemCreated(Telerik.Web.UI.RatingEventArgs)">
            <summary>
            Executed right after the item is created and inserted in the Rating Items collection.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.BindToEnumerableData(System.Collections.IEnumerable)">
            <summary>
            Binds the Rating control to a IEnumerable data source
            </summary>
            <param name="dataSource">IEnumerable data source</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.BindItem(Telerik.Web.UI.RadRatingItemCollection,System.Object)">
            <summary>
            Creates a Rating item based on the data item object.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.AddAttributesToRender(System.Web.UI.HtmlTextWriter)">
            <summary>
            Adds HTML attributes and styles that need to be rendered to the specified <see cref="T:System.Web.UI.HtmlTextWriterTag"></see>. This method is used primarily by control developers.
            </summary>
            <param name="writer">A <see cref="T:System.Web.UI.HtmlTextWriter"></see> that represents the output stream to render HTML content on the client.</param>
        </member>
        <member name="F:Telerik.Web.UI.RadRating.originalEnabled">
            <summary>
            The Enabled property is reset in AddAttributesToRender in order
            to avoid setting disabled attribute in the control tag (this is
            the default behavior). This property has the real value of the 
            Enabled property in that moment.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.TryParseDecimalFromString(System.String,System.Decimal@)">
            <summary>
            Converts a string to decimal.
            </summary>
            <param name="sValue">The string value to parse.</param>
            <param name="ratingValue">The resulting decimal value.</param>
            <returns>Is parsing successful.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadRating.TryParseDecimalFromNumber(System.Object,System.Decimal@)">
            <summary>
            Converts a number or bool value to decimal.
            </summary>
            <param name="value">The value to parse.</param>
            <param name="parsedValue">The resulting value.</param>
            <returns>Is parsing successful.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.ItemCount">
            <summary>
            Get/Set the number of items in the RadRating control - e.g. the number of stars that the control will have.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.ItemWidth">
            <summary>
            Get/Set the width of each item in the RadRating control.
            </summary>
            <value>
            Default: <b>Unit.Empty</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.ItemHeight">
            <summary>
            Get/Set the height of each item in the RadRating control.
            </summary>
            <value>
            Default: <b>Unit.Empty</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.Value">
            <summary>
            Get/Set the current rating for the RadRating control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.DbValue">
            <summary>
            Gets or sets the value of <strong>RadRating</strong> in a database-friendly way.
            </summary>
            <value>
                A <see cref="T:System.Decimal">Decimal</see> object that represents the value.
                The default value is 0m.
            </value>
            <example>
                The following example demonstrates how to use the <strong>DbValue</strong>
                property to set the value of RadRating. 
                <code lang="CS">
            private void Page_Load(object sender, System.EventArgs e)
            {
                RadRating1.DbValue = tableRow["Rating"];
            }
                </code>
            	<code lang="VB">
            Private Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles MyBase.Load
                RadRating1.DbValue = tableRow("Rating")
            End Sub
                </code>
            </example>
            <remarks>
            This property behaves exactly as the <strong>Value</strong> property.
            The only difference is that it will not throw an exception if the new value is null or
            DBNull. Setting a null value will revert the selected value to 0m.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.SelectionMode">
            <summary>
            Get/Set the selection mode for the RadRating control - when the user rates, either mark a single item (star) as selected
            or all items(stars) from the first to the selected one.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.Precision">
            <summary>
            Get/Set the rating precision for the RadRating control - the precision with which the user can rate.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.Orientation">
            <summary>
            Get/Set the orientation of the RadRating control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.IsDirectionReversed">
            <summary>
            Get/Set the direction of the RadRating control, that is, the position of the item (star) with value 1.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.EnableToolTips">
            <summary>
            Get/Set a value indicating whether the RadRating control will display a browser toolip for its values.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.AutoPostBack">
            <summary>
            Get/Set a value indicating whether the RadRating control will initiate a postback after its value changes.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.ReadOnly">
            <summary>
            Get/Set a value indicating whether the RadRating control is in read-only mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.AppendDataBoundItems">
            <summary>
            Gets/Sets a value indicating whether the DataBound items should be appended to the Rating Items collection, or the collection
            should be cleared before creating the DataBound items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.ItemBinding">
            <summary>
            Gets the object through which the user should provide the binding information about the rating items.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.OnClientLoad">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadRating</strong> control is initialized.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is an empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadRating object that raised the event.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientLoad</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientLoad(sender, args)<br/>
                         {<br/>
                             var ratingControl = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadRating ID="RadRating1" runat="server"<br/>
            			<strong>OnClientLoad="OnClientLoad"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadRating&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.OnClientRating">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the user clicks an
            item (star) of the <strong>RadRating</strong> control, but before the new value is set.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is an empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadRating object that raised the event.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event can be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientRating</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientRating(sender, args)<br/>
                         {<br/>
                             var ratingControl = sender;<br/>
                             args.set_cancel(true);
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadRating ID="RadRating1" runat="server"<br/>
            			<strong>OnClientRating="OnClientRating"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadRating&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.OnClientRated">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when the user clicks an
            item (star) of the <strong>RadRating</strong> control.
            </summary>
            <value>
            A string specifying the name of the JavaScript function that will handle the
            event. The default value is an empty string.
            </value>
            <remarks>
            	<para>Two parameters are passed to the handler:</para>
            	<list type="bullet">
            		<item><strong>sender</strong>, the RadRating object that raised the event.</item>
            		<item><strong>args</strong>.</item>
            	</list>
            	<para>This event cannot be cancelled.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>OnClientRated</strong> property. 
                <para>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;script type="text/javascript"&gt;<br/>
                         function OnClientRated(sender, args)<br/>
                         {<br/>
                             var ratingControl = sender;<br/>
                         }<br/>
                        &lt;/script&gt;
                    </div>
            		<div class="LanguageSpecific" name="Code_VB">
                        &lt;telerik:RadRating ID="RadRating1" runat="server"<br/>
            			<strong>OnClientRated="OnClientRated"</strong>&gt;<br/>
                        ....<br/>
                        &lt;/telerik:RadRating&gt;
                    </div>
            	</para>
            </example>
        </member>
        <member name="E:Telerik.Web.UI.RadRating.Rate">
            <summary>
            Adds or removes an event handler method from the Rate event.
            Fired after a rating item (star) is clicked.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadRating.ItemDataBound">
            <summary>
            Adds or removes an event handler method from the ItemDataBound event.
            Fired after a rating item (star) is data bound.
            </summary>
        </member>
        <member name="E:Telerik.Web.UI.RadRating.ItemCreated">
            <summary>
            Adds or removes an event handler method from the ItemDataBound event.
            Fired after a rating item is created and inserted in the Rating Items collection.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.Items">
            <summary>
            Gets a <see cref="T:Telerik.Web.UI.RadRatingItemCollection">RadRatingItemCollection</see> object that contains the items of the current RadRating control.
            </summary>
            <value>
            A <see cref="T:Telerik.Web.UI.RadRatingItemCollection">RadRatingItemCollection</see> that contains the items of the current RadRating control. By default
            the collection is empty (RadRating creates its items, based on the value of its ItemCount property).
            </value>
            <remarks>
            Use the <b>Items</b> property to access the child items of RadRating. You can add, remove or modify items from the <b>Items</b> collection.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.SelectedItem">
            <summary>
            Gets a <see cref="T:Telerik.Web.UI.RadRatingItem">RadRatingItem</see> object that represents the selected item in the RadRating control
            in case <see cref="P:Telerik.Web.UI.RadRating.Items">Items</see> collection of the control is not empty.
            </summary>
            <returns>
            A <see cref="T:Telerik.Web.UI.RadRatingItem">RadRatingItem</see> object that represents the selected item. If there are no items in the 
            <see cref="P:Telerik.Web.UI.RadRating.Items">Items</see> collection of the RadRating control, returns null.
            </returns>
        </member>
        <member name="P:Telerik.Web.UI.RadRating.SelectedItems">
            <summary>
            Gets a <see cref="T:Telerik.Web.UI.RadRatingItemCollection">RadRatingItemCollection</see> object that contains the selected items in the RadRating control.
            The collection is empty in case there are no items in the <see cref="P:Telerik.Web.UI.RadRating.Items">Items</see> collection of the control.
            </summary>
            <returns>A RadRatingItemCollection containing the selected items.</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadRatingItem">
            <summary>
            RadRatingItem class.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.Value">
            <summary>Gets or sets the value of the rating item.</summary>
            <value>
            The value of the rating item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.Index">
            <summary>
            Gets the index of the rating item in the <see cref="P:Telerik.Web.UI.RadRating.Items">Items</see> collection of the rating control.
            </summary>
            <value>
            The index of the rating item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.ToolTip">
            <summary>Gets or sets the tooltip of the rating item.</summary>
            <value>
            The tooltip of the rating item. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.CssClass">
            <summary>Gets or sets the CSS class of the rating item.</summary>
            <value>
            The CSS class to apply to the rating item. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If the <strong>ImageUrl</strong>
            property is set to empty string, the item will render the image, defined in the <see cref="P:Telerik.Web.UI.RadWebControl.Skin">Skin</see>
            of the rating control. Use "~" (tilde) when referring to images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.HoveredImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is hovered.</summary>
            <value>
            The path to the image to display for the item. The default value is empty string.
            </value>
            <remarks>
            Use the <strong>HoveredImageUrl</strong> property to specify the image for the item when it is hovered. If
            the <strong>HoveredImageUrl</strong> property is set to empty string, the item will display the HoveredSelectedImageUrl
            image. Use "~" (tilde) when referring to images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.SelectedImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is selected.</summary>
            <value>
            The path to the image to display for the item. The default value is empty string.
            </value>
            <remarks>
            Use the <strong>SelectedImageUrl</strong> property to specify the image for the item when it is selected. If
            the <strong>SelectedImageUrl</strong> property is set to empty string, the item will display the ImageUrl 
            image. Use "~" (tilde) when referring to images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRatingItem.HoveredSelectedImageUrl">
            <summary>Gets or sets the path to an image to display for the selected item when it is hovered.</summary>
            <value>
            The path to the image to display for the item. The default value is empty string.
            </value>
            <remarks>
            Use the <strong>HoveredSelectedImageUrl</strong> property to specify the image for the selected item when it is hovered. If
            the <strong>HoveredSelectedImageUrl</strong> property is set to empty string, the item will display the SelectedImageUrl 
            image. Use "~" (tilde) when referring to images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadRatingItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadRatingItem">RadRatingItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadRating">RadRating</see> control.
            </summary>
            <remarks>
            	The <strong>RadRatingItemCollection</strong> class represents a collection of
                <strong>RadRatingItem</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the indexer to programmatically retrieve a
                        single RadRatingItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <see cref="P:System.Web.UI.StateManagedCollection.Count">Count</see> property to determine the total
                        number of rating items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadRatingItemCollection.Add(System.String)">Add</see> method to add items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadRatingItemCollection.Remove(Telerik.Web.UI.RadRatingItem)">Remove</see> method to remove items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadRatingItemCollection.#ctor(Telerik.Web.UI.RadRating)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadRatingItemCollection">RadRatingItemCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="T:Telerik.Web.UI.RatingPrecision">
            <summary>
            Specifies the possible values for the Precision property of the RadRating control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RatingPrecision.Item">
            <summary>
            The user can select only the entire item (star).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RatingPrecision.Half">
            <summary>
            The user can select half an item (star) or the entire item (star).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RatingPrecision.Exact">
            <summary>
            The user can select any portion of an item (star).
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RatingSelectionMode">
            <summary>
            Specifies the possible values for the SelectionMode property of the RadRating control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RatingSelectionMode.Single">
            <summary>
            Only one item (star) is marked as selected - the currently selected item (star).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RatingSelectionMode.Continuous">
            <summary>
            Default behavior - all items (stars) from the first item (star) to the currently selected one are marked as selected.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTicker">
            <summary>
            RadTicker control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTicker.BindToEnumerableData(System.Collections.IEnumerable)">
            <summary>
            Binds the ticker to a IEnumerable data source
            </summary>
            <param name="dataSource">IEnumerable data source</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.Items">
            <summary>
            The collection that holds all RadTickerItem objects.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.AutoStart">
            <summary>
            Specifies whether the ticker begins ticking automatically.
            </summary>
            <remarks>
            You should leave this set to <b>false</b> if you are using the ticker within a RadTicker
            If you use the ticker independently and leave this setting to <b>false</b> you should use the
            client API call <b>ticker_id.startTicker()</b> to start it.
            </remarks>
            <value>
            Default: <b>False</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.AutoAdvance">
            <summary>
            Specifies whether <see cref="T:Telerik.Web.UI.RadTicker"/> will begin ticking the next tickerline 
            (if any) after it has finished ticking the current one.
            </summary>
            <remarks>
            If you set the <b>AutoAdvance</b> property to <b>false</b>, then you will have to use 
            a client API Call <b>ticker_id.tickNextLine()</b>
            </remarks>
            <value>
            Default: <b>True</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.Loop">
            <summary>
            Specifies whether <see cref="T:Telerik.Web.UI.RadTicker"/> will repeat the first tickerline after displaying the last one.
            </summary>
            <remarks>
            If you set this property to <b>true</b> RadTicker will never finish ticking.
            This may have possible implications when having more than one <see cref="T:Telerik.Web.UI.RadTicker"/> instance in
            a <see cref="T:Telerik.Web.UI.RadRotator"/>. This way <see cref="T:Telerik.Web.UI.RadRotator"/> works is that when the first ticker
            on a frame has finished ticking it will start ticking the next ticker on the frame. If a <see cref="T:Telerik.Web.UI.RadTicker"/>
            instance is ticking (has Loop=true) it will never finish and the next ticker on the frame will not get started.
            </remarks>
            <value>
            Default: <b>False</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.TickSpeed">
            <summary>
            Specifies the duration in milliseconds between ticking each character of a tickerline.
            The lower the value the faster a line will finish ticking.
            </summary>
            <value>
            Default: <b>20ms</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.LineDuration">
            <summary>
            Specifies in milliseconds the pause <see cref="T:Telerik.Web.UI.RadTicker"/> makes before starting to tick
            the next line (if AutoAdvance=True).
            </summary>
            <value>
            Default: <b>2000ms</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make Telerik RadTicker postback to the server on item click.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTicker.DataTextField">
            <summary>
            	Gets or sets the field of the data source that provides the value of the ticker lines.
            </summary>
            <value>
            	A string that specifies the field of the data source that provides the value of the ticker lines.
            	The default value is an empty string.
            </value>
            <remarks>
            	Use the DataTextField property to specify the field of the data source (in most cases the name of the database column) 
            	which provides the values for the <see cref="P:Telerik.Web.UI.RadTickerItem.Text">Text</see> property of databound ticker items. The DataTextField property is 
            	taken into account only during data binding. If the DataTextField property is not set and your datasource is not a list of strings,
            	the RadTicker control will throw an exception.
            </remarks>
            <example>
            	The following example demonstrates how to use the DataTextField.
            	<code lang="CS">
            		DataTable data = new DataTable();
            		data.Columns.Add("MyID");
            		data.Columns.Add("MyValue");
            		
            		data.Rows.Add(new object[] {"1", "ticker item text 1"});
            		data.Rows.Add(new object[] {"2", "ticker item text 2"});
            		
            		RadTicker1.DataSource = data;
            		RadTicker1.DataTextField = "MyValue";	//"MyValue" column provides values for the Text property of databound ticker items
            		RadTicker1.DataBind();
            	</code>
            	<code lang="VB">
            		Dim data As new DataTable();
            		data.Columns.Add("MyID")
            		data.Columns.Add("MyValue")
            		
            		data.Rows.Add(New Object() {"1", "ticker item text 1"})
            		data.Rows.Add(New Object() {"2", "ticker item text 2"})
            		
            		RadTicker1.DataSource = data
            		RadTicker1.DataTextField = "MyValue"	'"MyValue" column provides values for the Text property of databound ticker items
            		RadTicker1.DataBind()
            	</code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadRotator">
            <summary>
            RadRotator Control
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadRotator.BindToEnumerableData(System.Collections.IEnumerable)">
            <summary>
            Binds the rotator to a IEnumerable data source
            </summary>
            <param name="dataSource">IEnumerable data source</param>
        </member>
        <member name="M:Telerik.Web.UI.RadRotator.RenderBeginTag(System.Web.UI.HtmlTextWriter)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.RotatorType">
            <summary>
            Specifies the type of rotator [how the rotator will render and what options the user will have for interacting with it on the client]
            <seealso cref="P:Telerik.Web.UI.RadRotator.RotatorType"/>
            </summary>
            <value>
            Default: <b>RotatorType.Buttons</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.ScrollDirection">
            <summary>
            Specifies possible directions for scrolling rotator items.
            <seealso cref="T:Telerik.Web.UI.RotatorScrollDirection"/>
            </summary>
            <value>
            Default: <b>RotatorScrollDirection.Left | RotatorScrollDirection.Right</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.ScrollDuration">
            <summary>
            Specifies the speed in milliseconds for scrolling rotator items.
            </summary>
            <value>
            Default: <b>500</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.InitialItemIndex">
            <summary>
            Specifies the index of the item, which will be shown first when the rotator loads.
            When set to 0 (default) - positions initial item to be visible in the rotator.
            When set to -1 - positions the initial item just outside of the rotator viewport.
            Any other positive value - the rotator starts with that particular item in the viewport.
            </summary>
            <value>
            Default: <b>0</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.FrameDuration">
            <summary>
            Specifies the time in milliseconds each frame will display in automatic scrolling scenarios.
            </summary>
            <value>
            Default: <b>2000</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.ItemWidth">
            <summary>
            Specifies the default rotator item width.
            </summary>
            <value>
            Default: <b>Unit.Empty</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.ItemHeight">
            <summary>
            Specifies the default rotator item height.
            </summary>
            <value>
            Default: <b>Unit.Empty</b>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.WebServiceSettings">
            <summary>
            	Gets the settings for the web service used to populate items
            </summary>
            <value>
                An <see cref="P:Telerik.Web.UI.RadRotator.WebServiceSettings">WebServiceSettings</see> that represents the
                web service used for populating items.
            </value>
            <remarks>
            	<para>
                    Use the <strong>WebServiceSettings</strong> property to configure the web
            		service used to populate items on demand.
            		You must specify both <see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> and
                    <see cref="P:Telerik.Web.UI.WebServiceSettings.Method">Method</see>
            		to fully describe the service.
                </para>
            	<para>
            		In order to use the integrated support, the web service should have the following signature:
            		
            		<code lang="CS">
            		[ScriptService]
            		public class WebServiceName : WebService
            		{
            			[WebMethod]
            			public RadRotatorItemData[] WebServiceMethodName(int itemIndex, int itemCount)
            			{
            				List&lt;RadRotatorItemData&gt; result = new List&lt;RadRotatorItemData&gt;();
            				RadRotatorItemData item; 
            				for (int i = 0; i &lt; itemCount; i++)
            				{
            					item = new RadRotatorItemData();
            					item.Html = "test "+(itemIndex+i);
            					result.Add(item);
            				}
            				return result.ToArray();
            			}
            		}
            		</code>
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.Height">
            <summary>
            Gets or sets the height of the Web server control. The default height is 200 pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.Width">
            <summary>
            Gets or sets the width of the Web server control. The default width is 200 pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.AutoPostBack">
            <summary>
            Gets or sets a value indicating whether a postback to the server automatically occurs when the user interacts with the control.
            </summary>
            <remarks>
            Setting this property to true will make Telerik RadRotator postback to the server 
            on item click.
            </remarks>
            <value>
            The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.PauseOnMouseOver">
            <summary>
            Gets or sets a value indicating whether to pause the rotator scrolling when the mouse is over a roatator item
            </summary>
            <value>
            The default value is <strong>true</strong>. This means the animation will be paused when the user hovers over a rotator item.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.EnableRandomOrder">
            <summary>
            Gets or sets a value indicating whether to randomize the order of display for the rotator items.
            </summary>
            <value>
            The default value is <strong>false</strong>. This means the items will be displayed in the order they appear in the datasource.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemClicking">
            <summary>
            The name of the javascript function called when an item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemClicked">
            <summary>
            The name of the javascript function called after an item is clicked.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientMouseOver">
            <summary>
            The name of the javascript function called when the mouse hovers over an item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientMouseOut">
            <summary>
            The name of the javascript function called after the mouse leaves an item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemShowing">
            <summary>
            The name of the javascript function called when an item is about to be shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemShown">
            <summary>
            The name of the javascript function called after an item has been shown.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientLoad">
            <summary>
            The name of the javascript function called when the rotator is loaded on the client. The function
            is called right before the automatic animation (if used) begins.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemsRequesting">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadRotator</strong> items are about to be populated when load on demand(from web service).The event is cancellable
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemsRequested">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the <strong>RadRotator</strong> items were just populated when load on demand(from web service).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotator.OnClientItemsRequestFailed">
            <summary>
            Gets or sets a value indicating the client-side event handler that is called when
            the operation for populating the <strong>RadRotator</strong> when load on demand has failed.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTickerItem">
            <summary>
            This class represents a <see cref="T:Telerik.Web.UI.RadTicker"/> item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTickerItem.Index">
            <summary>
            Gets the zero based index of the item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTickerItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadTickerItem">RadTickerItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadTicker">RadTicker</see> control.
            </summary>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadTickerItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTickerItemCollection">RadTickerItemCollection</see> class.
            </summary>
            <param name="parent">The parent Ticker control.</param>
        </member>
        <member name="P:Telerik.Web.UI.Rotator.AnimationSettings.Type">
            <summary><para>Gets or sets the effect that will be used for the animation.</para></summary>
        </member>
        <member name="P:Telerik.Web.UI.Rotator.AnimationSettings.Duration">
            <summary>Gets or sets the animation duration in milliseconds.</summary>
        </member>
        <member name="M:Telerik.Web.UI.Common.BaseClass.GetGlobalEnableEmbeddedScripts(System.Web.UI.Control)">
            <summary>
            Returns the web.config value which specifies the application EnableEmbeddedScripts property.
            </summary>
            <returns>
            Telerik.[ShortControlName].EnableEmbeddedScripts or Telerik.EnableEmbeddedScripts, depending on which value was set.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.Common.BaseClass.GetGlobalEnableEmbeddedSkins(System.Web.UI.Control)">
            <summary>
            Returns the web.config value which specifies the application EnableEmbeddedSkins property.
            </summary>
            <returns>
            Telerik.[ShortControlName].EnableEmbeddedSkins or Telerik.EnableEmbeddedSkins, depending on which value was set.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.ClientOperationType">
            <summary>
            Specifies the type of the <see cref="T:Telerik.Web.UI.ClientOperation`1"/>.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ClientOperationType.Insert">
            <summary>
            An item has been inserted in the control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ClientOperationType.Remove">
            <summary>
            An item has been removed from the control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ClientOperationType.Update">
            <summary>
            A property of the item has been changed.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ClientOperationType.Clear">
            <summary>
            All children of the control or the item have been removed.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ClientOperationType.Reorder">
            <summary>
            An item has changed its position
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.UpdateClientOperation`1">
            <summary>
            Used in case of update client operations.
            </summary>
            <typeparam name="T">The type of the item (e.g. <see cref="T:Telerik.Web.UI.RadTreeNode"/>, <see cref="T:Telerik.Web.UI.RadMenuItem"/>,
            	<see cref="T:Telerik.Web.UI.RadComboBoxItem"/>, <see cref="T:Telerik.Web.UI.RadToolBarItem"/>, <see cref="T:Telerik.Web.UI.RadTab"/>, <see cref="T:Telerik.Web.UI.RadPanelItem"/>)
            </typeparam>
        </member>
        <member name="P:Telerik.Web.UI.UpdateClientOperation`1.PropertyName">
            <summary>
            Gets the name of the property which has been changed on the client side.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.WebServiceSettingsConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.WebServiceSettings">
            <summary>
            Represents the settings to be used for load on demand through web service.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceSettings.#ctor(System.String,System.Web.UI.StateBag)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceSettings.#ctor(System.Web.UI.StateBag)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceSettings.#ctor">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceSettings.Path">
            <summary>
            	Gets or sets the name of the web service to be used to populate items with
            	<strong>ExpandMode</strong> set to <strong>WebService</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceSettings.Method">
            <summary>
            	Gets or sets the method name to be called to populate items with
            	<strong>ExpandMode</strong> set to <strong>WebService</strong>.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceSettings.UseHttpGet">
            <summary>
            	Gets or sets a boolean value 
            </summary>
            <remarks>
            	
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceSettings.ODataSettings">
            <summary>
            Used to customize the OData binding settings.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.CombinedScriptWriter._webResourceRegex">
            <summary>
            Regular expression for detecting WebResource/ScriptResource substitutions in script files
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.CombinedScriptWriter.WriteCombinedScriptFile(System.Web.UI.Page,System.Web.HttpContext)">
            <summary>
            Outputs the combined script file requested by the HttpRequest to the HttpResponse
            </summary>
            <param name="page">A Page, representing the HttpHandler</param>
            <param name="context">HttpContext for the transaction</param>
            <returns>true if the script file was output</returns>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntryUrlBuilder.#ctor(System.String,System.String)">
            <summary>
            Creates an instance of the ScriptEntryUrlBuilder class.
            Assumes that the resources are scripts only. If you want to combine style sheet files,
            use the other constructor, which has a third parameter to indicate that.
            </summary>
            <param name="urlBase"></param>
            <param name="key"></param>
        </member>
        <member name="M:Telerik.Web.UI.ScriptEntryUrlBuilder.#ctor(System.String,System.String,System.Boolean)">
            <summary>
            Creates an instance of the ScriptEntryUrlBuilder class.
            If registerStyleSheets is true, splits combined style sheet files if their selector count exceeds 4000.
            </summary>
            <param name="urlBase"></param>
            <param name="key"></param>
            <param name="registerStyleSheets"></param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.Diff.DiffEngine.GetDiffs(System.String,System.String)">
            <summary>
            Gets a string output, containing the HTML code with added styles around new/deleted parts
            </summary>
            <param name="content1">the NEW Html/Text content</param>
            <param name="content2">the OLD Html/Text content</param>
            <returns>HTML code containing the content and differences between old and new versions</returns>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Diff.HtmlParser">
            <summary>
            Summary description for HtmlParser.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Diff.ImageSnippet">
            <summary>
            Summary description for TagSnippet.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Diff.SymbolSnippet">
            <summary>
            Summary description for TagSnippet.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Diff.TagSnippet">
            <summary>
            Summary description for TagSnippet.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.Diff.WordSnippet">
            <summary>
            Summary description for TagSnippet.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Editor.DialogControls.HTTPSend">
            <summary>
            Allow the transfer of data files using the W3C's 
            specification for HTTP multipart form data. 
            Microsoft's version has a bug where it does not 
            format the ending boundary correctly.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.SendTextAsFile(System.String,System.String)">
            <summary>
            Transmits a file to the web server stated 
            in the URL property. 
            You may call this several times and it will 
            use the values previously set for fields and URL.
            </summary>
            <param name="content">the text to send</param>
            <param name="Filename">The local path of 
            the file to send.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.#ctor(System.String)">
            <summary>
            Initialize our class for use to 
            send data files.
            </summary>
            <param name="URL">The URL of the 
            destination server.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.SetFilename(System.String)">
            <summary>
            Used to signal we want the output to go to a 
            text file verses being transfered to a URL.
            </summary>
            <param name="Path">The local path to the 
            output file.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.SetField(System.String,System.String)">
            <summary>
            Allows you to add some additional field data 
            to be sent along with the transfer. 
            This is usually used for things like userid 
            and password to validate the transfer.
            </summary>
            <param name="Name">The name of the 
            custom field.</param>
            <param name="Value">The value of the 
            custom field.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.SetHeader(System.String,System.String)">
            <summary>
            Allows you to add some additional header data 
            to be sent along with the transfer. 
            </summary>
            <param name="Name">The name of the custom header.</param>
            <param name="Value">The value of the custom header.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.GetStream">
            <summary>
            Determines if we have a file stream set, and 
            returns either the HttpWebRequest stream or 
            the file.
            </summary>
            <returns>Either the HttpWebRequest stream or 
            the local output file.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.GetResponse">
            <summary>
            Make the request to the web server and 
            retrieve it's response into a text buffer.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.GetFormFields">
            <summary>
            Builds the proper format of the multipart 
            data that contains the form fields and 
            their respective values.
            </summary>
            <returns>All form fields, properly formatted 
            in a string.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.GetFileHeader(System.String)">
            <summary>
            Returns the proper content information for 
            the file we are sending.
            </summary>
            <param name="Filename">The local path to 
            the file that should be sent.</param>
            <returns>All file headers, properly formatted 
            in a string.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.GetFileTrailer">
            <summary>
            Creates the proper ending boundary for the 
            multipart upload.
            </summary>
            <returns>The ending boundary.</returns>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.WriteString(System.IO.Stream,System.String)">
            <summary>
            Mainly used to turn the string into a byte 
            buffer and then write it to our IO stream.
            </summary>
            <param name="Output">The stream to write to.</param>
            <param name="Data">The data to place into the stream.</param>
        </member>
        <member name="M:Telerik.Web.UI.Editor.DialogControls.HTTPSend.WriteFile(System.IO.Stream,System.String)">
            <summary>
            Reads in the file a chunck at a time then 
            sends it to the output stream.
            </summary>
            <param name="Output">The stream to write to.</param>
            <param name="Filename">The local path of the file to send.</param>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.TransferHttpVersion">
            <summary>
            Allows you to specify the specific version 
            of HTTP to use for uploads.
            The dot NET stuff currently does not allow 
            you to remove the continue-100 header
            from 1.1 and 1.0 currently has a bug in it 
            where it adds the continue-100. 
            MS has sent a patch to remove the 
            continue-100 in HTTP 1.0.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.FileContentType">
            <summary>
            Used to change the content type of the file 
            being sent.
            Currently defaults to: text/xml. Other options 
            are text/plain or binary.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.BeginBoundary">
            <summary>
            The string that defines the begining boundary 
            of our multipart transfer as defined in the 
            w3c specs.
            This method also sets the Content and Ending 
            boundaries as defined by the w3c specs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.ContentBoundary">
            <summary>
            The string that defines the content boundary 
            of our multipart transfer as defined in the 
            w3c specs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.EndingBoundary">
            <summary>
            The string that defines the ending boundary 
            of our multipart transfer as defined in the 
            w3c specs.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.ResponseText">
            <summary>
            The data returned to us after the transfer 
            is completed.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.URL">
            <summary>
            The web address of the recipient of the 
            transfer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.BufferSize">
            <summary>
            Allows us to determine the size of the buffer 
            used to send a piece of the file at a time 
            out the IO stream. 
            Defaults to 1024 * 10.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.Credentials">
            <summary>
            Allows us to specified the credentials used 
            for the transfer.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.Certificate">
            <summary>
            Allows us to specifiy the certificate to use 
            for secure communications.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.KeepAlive">
            <summary>
            Gets or sets a value indicating whether to 
            make a persistent connection to the 
            Internet resource.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.Expect100">
            <summary>
            Gets or sets a value indicating whether the 
            Expect100-Continue header should be sent.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.Pipelined">
            <summary>
            Gets or sets a value indicating whether to 
            pipeline the request to the Internet resource.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Editor.DialogControls.HTTPSend.Chunked">
            <summary>
            Gets or sets a value indicating whether the 
            file can be sent in smaller packets.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorDropDownItem">
            <summary>
            Represents a EditorDropDownItem dropdown item from a custom editor dropdown
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.EditorDropDownItemCollection">
            <summary>
            A strongly typed collection of EditorDropDownItem objects
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDateTimeColumnEditor.TextBoxControl">
            <summary>
            Gets The text box instance created of extracted from a cell after calls to AddControlsToContainer or LoadControlsFromContainer methods.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDateTimeColumnEditor.PickerControl">
            <summary>
            Gets The text box instance created of extracted from a cell after calls to AddControlsToContainer or LoadControlsFromContainer methods.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDateTimeColumnEditor.TextBoxStyle">
            <summary>
            Gets the instace of the Style that would be applied to the TextBox control, when initializing in a TableCell.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridDateTimeColumnEditor.ImagesPath">
            <summary>Gets or sets default path for the GridDateTimeColumnEditor images when EnableEmbeddedSkins is set to false.</summary>
            <value>A string containing the path for the grid images. The default is String.Empty.</value>
            <remarks>
            <para>
            
            </para>
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.GridCalculatedColumn.AllowFiltering">
            <summary>
            Gets or sets whether the column data can be filtered. The default value is
            true.
            </summary>
            <value>
            A <strong><em>Boolean</em></strong> value, indicating whether the column can be
            filtered.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridCalculatedColumn.AllowSorting">
            <summary>Gets or sets a whether the column data can be sorted.</summary>
            <value>
            A <strong><em>boolean</em></strong> value, indicating whether the column data can
            be sorted.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridCalculatedColumn.DataFields">
            <summary>
            Gets or sets a string, representing a comma-separated enumeration of DataFields
            from the data source, which will form the expression.
            </summary>
            <value>
            A <strong><em>string</em></strong>, representing a comma-separated enumeration of
            DataFields from the data source, which will form the expression.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.GridCustomAggregateEventArgs.Result">
            <summary>
            Gets or sets aggregate result.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelItemConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadRotatorItemData">
            <summary>
            	Data class used for transferring rotator items from and to web services.
            </summary>
            <remarks>
            	For information about the role of each property see the
            	<see cref="T:Telerik.Web.UI.RadRotatorItem">RadRotatorItem class</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadRotatorItemData.Html">
            <summary>
            The HTML content of the rotator frame. Note that you do not need to use templates here - the HTML will be added to the page directly.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotatorItemData.Visible">
            <summary>
            See <see cref="P:System.Web.UI.Control.Visible">RadRotatorItem.Visible</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotatorItemData.CssClass">
            <summary>
            See <see cref="P:System.Web.UI.WebControls.WebControl.CssClass">RadRotatorItem.CssClass</see>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadRotatorItem">
            <summary>
            This class represents a <see cref="T:Telerik.Web.UI.RadRotator"/> item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadRotatorItem.Index">
            <summary>
            Gets the zero based index of the item.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadRotatorItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadRotatorItem">RadRotatorItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadRotator">RadRotator</see> control.
            </summary>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadRotatorItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadRotatorItemCollection">RadRotatorItemCollection</see> class.
            </summary>
            <param name="parent">The parent Rotator control.</param>
        </member>
        <member name="T:Telerik.Web.UI.RotatorControlButtonsConfiguration">
            <summary>
            Encapsulates the properties used for the RadRotator control buttons management.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RotatorControlButtonsConfiguration.getClientID(System.Web.UI.Control,System.String)">
            <summary>
            this function tries to get the client id of a control in the same naming container
            </summary>
            <param name="p">the control id</param>
            <param name="namingContainer">the control to search in</param>
            <returns>the client id if the control is found, or the input parameter if the control does not exist</returns>
        </member>
        <member name="P:Telerik.Web.UI.RotatorControlButtonsConfiguration.OnClientButtonClick">
            <summary>
            The name of the javascript function called when the user clicks one of the control buttons.
            </summary>
            <remarks>This event is raised only when the rotator is in Buttons mode!</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RotatorControlButtonsConfiguration.OnClientButtonOver">
            <summary>
            The name of the javascript function called when the mouse is over one of the control buttons.
            </summary>
            <remarks>This event is raised only when the rotator is in ButtonsOver mode!</remarks>
        </member>
        <member name="P:Telerik.Web.UI.RotatorControlButtonsConfiguration.OnClientButtonOut">
            <summary>
            The name of the javascript function called when the mouse leaves one of the control buttons.
            </summary>
            <remarks>This event is raised only when the rotator is in ButtonsOver mode!</remarks>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerOperationResult`1">
            <summary>
            Minimal implementation of <see cref="T:Telerik.Web.UI.ISchedulerOperationResult`1">ISchedulerOperationResult</see>.
            </summary>
            <typeparam name="T">
            The type of the appointment data transfer object in use.
            Typically this is <see cref="T:Telerik.Web.UI.AppointmentData">AppointmentData</see>
            or derived class.
            </typeparam>
        </member>
        <member name="T:Telerik.Web.UI.ISchedulerOperationResult`1">
            <summary>
            This interface defines an operation result contract that
            can be optionally used by the web service methods.
            </summary>
            <remarks>
            <para>Implementers can extend it with additional data fields to
            report status and to transfer additional metadata.</para>
            <para>See the online documentation for more details.</para>
            </remarks>
            <typeparam name="T">
            The type of the appointment data transfer object in use.
            Typically this is <see cref="T:Telerik.Web.UI.AppointmentData">AppointmentData</see>
            or derived class.
            </typeparam>
        </member>
        <member name="T:Telerik.Web.UI.IAppointmentData">
            <summary>
            A data transfer object used for Web Service data binding.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSchedulerContextMenu">
            <summary>
            	A context menu control used with the <see cref="T:Telerik.Web.UI.RadScheduler"/> control.
            </summary>
            <remarks>
            	<para>
            		The RadSchedulerContextMenu object is used to assign context menus to <see cref="T:Telerik.Web.UI.RadScheduler"/> appointments. Use the
            		<see cref="P:Telerik.Web.UI.RadScheduler.AppointmentContextMenus"/> property to add context menus for a <see cref="T:Telerik.Web.UI.RadScheduler"/> 
            		object. 
            	</para>
            	<para>
            		Use the <see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID"/> property to assign specific context menu to a given <see cref="T:Telerik.Web.UI.RadTreeNode"/>.
            	</para>
            </remarks>
            <example>
            	The following example demonstrates how to add context menus declaratively
            <code lang="html">
            	&lt;telerik:RadTreeView ID="RadTreeView1" runat="server"&gt;
            		&lt;ContextMenus&gt;
            			&lt;telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            				&lt;Items&gt;
            					&lt;telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/telerik:RadMenuItem&gt;
            					&lt;telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/telerik:RadMenuItem&gt;
            				&lt;/Items&gt;
            			&lt;/telerik:RadTreeViewContextMenu&gt;
            			&lt;telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            				&lt;Items&gt;
            					&lt;telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/telerik:RadMenuItem&gt;
            					&lt;telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/telerik:RadMenuItem&gt;
            				&lt;/Items&gt;
            			&lt;/telerik:RadTreeViewContextMenu&gt;
            		&lt;/ContextMenus&gt;
            		&lt;Nodes&gt;
            			&lt;telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            					&lt;telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/telerik:RadTreeNode&gt;
            			&lt;telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            					&lt;telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/telerik:RadTreeNode&gt;
            		&lt;/Nodes&gt;
            	&lt;/telerik:RadTreeView&gt;
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenu.ResolveControlTargetIds">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenu.DescribeTargets(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenu.LoadTargetsViewState(System.Object[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenu.SaveTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenu.TrackTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenu.Targets">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="E:Telerik.Web.UI.RadSchedulerContextMenu.ItemClick">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenu.OnClientItemClicking">
            <summary>
            OnClientItemClicking is not available for RadSchedulerContextMenu. Use the OnClientContextMenuItemClicking property of RadScheduler instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenu.OnClientItemClicked">
            <summary>
            OnClientItemClicked is not available for RadSchedulerContextMenu. Use the OnClientContextMenuItemClicked property of RadScheduler instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenu.OnClientShowing">
            <summary>
            OnClientShowing is not available for RadSchedulerContextMenu. Use the OnClientContextMenuShowing property of RadScheduler instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenu.OnClientShown">
            <summary>
            OnClientShown is not available for RadSchedulerContextMenu. Use the OnClientContextMenuShown property of RadScheduler instead.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">
            <summary>
            Provides a collection container that enables RadScheduler to maintain a list of its RadSchedulerContextMenus.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.#ctor(Telerik.Web.UI.RadScheduler)">
            <summary>
            Initializes a new instance of the RadSchedulerContextMenuCollection class for the specified RadScheduler. 
            </summary>
            <param name="scheduler">The RadScheduler that the RadSchedulerContextMenuCollection is created for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.Add(Telerik.Web.UI.RadSchedulerContextMenu)">
            <summary>
            Adds the specified RadSchedulerContextMenu object to the collection
            </summary>
            <param name="target">The RadSchedulerContextMenu to add to the collection</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.Contains(Telerik.Web.UI.RadSchedulerContextMenu)">
            <summary>
            	Determines whether the specified RadSchedulerContextMenu is in the parent
            	RadScheduler's RadSchedulerContextMenuCollection object.
            </summary>
            <param name="target">The RadSchedulerContextMenu to search for in the collection</param>
            <returns><strong>true</strong> if the specified RadSchedulerContextMenu exists in
            	the collection; otherwise, <strong>false</strong>.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.CopyTo(Telerik.Web.UI.RadSchedulerContextMenu[],System.Int32)">
            <summary>
            	Copies the RadSchedulerContextMenu instances stored in the
            	<see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">RadSchedulerContextMenuCollection</see>
            	object to an System.Array object, beginning at the specified index location in the System.Array. 
            </summary>
            <param name="array">The System.Array to copy the RadSchedulerContextMenu instances to.</param>
            <param name="index">The zero-based relative index in array where copying begins</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadSchedulerContextMenu})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu"/> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection"/>.
            </summary>
            <param name="contextMenus">
                The array of <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu"/> to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection"/>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.IndexOf(Telerik.Web.UI.RadSchedulerContextMenu)">
            <summary>
            	Retrieves the index of a specified RadSchedulerContextMenu object in the collection.
            </summary>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>
            	for which the index is returned.</param>
            <returns>The index of the specified <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>
            	instance. If the <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> is not
            	currently a member of the collection, it returns -1. </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.Insert(System.Int32,Telerik.Web.UI.RadSchedulerContextMenu)">
            <summary>
            	Inserts the specified <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> object
            	to the collection at the specified index location.
            </summary>
            <param name="index">The location in the array at which to add the <strong>RadSchedulerContextMenu</strong> instance.</param>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> to add to the collection</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.Remove(Telerik.Web.UI.RadSchedulerContextMenu)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>
            	from the parent <see cref="T:Telerik.Web.UI.RadScheduler">RadScheduler</see>'s <see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">RadSchedulerContextMenuCollection</see>
            	object. 
            </summary>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see> to be removed</param>
            <remarks>To remove a control from an index location, use the <see cref="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.RemoveAt(System.Int32)">RemoveAt</see> method.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuCollection.RemoveAt(System.Int32)">
            <summary>
            	Removes a child <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>, at the
            	specified index location, from the <see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">RadSchedulerContextMenuCollection</see>
            	object. 
            </summary>
            <param name="index">The ordinal index of the <see cref="T:Telerik.Web.UI.RadSchedulerContextMenu">RadSchedulerContextMenu</see>
            	to be removed from the collection.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenuCollection.Item(System.Int32)">
            <summary>
            Gets a reference to the RadSchedulerContextMenu at the specified index location in the
            RadSchedulerContextMenuCollection object.
            </summary>
            <param name="index">The location of the RadSchedulerContextMenu in the <see cref="T:Telerik.Web.UI.RadSchedulerContextMenuCollection">RadSchedulerContextMenuCollection</see></param>
            <returns>The reference to the RadSchedulerContextMenu.</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadSchedulerContextMenuEventHandler">
             <summary>
            		Represents the method that handles the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see>
            		event of a <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
             </summary>
             <param name="sender">The source of the event.</param>
             <param name="e">A <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuEventArgs">RadTreeViewContextMenuEventArgs</see>
            		that contains the event data.</param>
            	<remarks>
            		<para>
            		The <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event is raised
            		when an item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control is clicked.
            		</para>
            		<para>
            		A click on a <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> item of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> makes a postback only if an event handler is attached
            		to the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event.
            		</para>
             </remarks>
            <example>
            		The following example demonstrates how to display information about the clicked item in the
            		<see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> shown after a right-click
            		on a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
             <code lang="CS">
            		&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			void RadTreeView1_ContextMenuItemClick(object sender, RadTreeViewContextMenuEventArgs e)
            			{
            				lblInfo.Text = string.Format(@"You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")",
            					e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text);
            			}
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
             <code lang="VB">
            		&lt;%@ Page Language="VB" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			Sub RadTreeView1_ContextMenuItemClick(ByVal sender as Object, ByVal e as RadTreeViewContextMenuEventArgs)
            				lblInfo.Text = String.Format("You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")", _
            		   e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text)
            			End Sub
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadSchedulerContextMenuEventArgs">
             <summary>
            		Provides data for the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see>
            		event of the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control. This class cannot be inherited. 
             </summary>
             <remarks>
            		<para>
            		The <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event is raised
            		when an item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control is clicked.
            		</para>
            		<para>
            		A click on a <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> item of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> makes a postback only if an event handler is attached
            		to the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event.
            		</para>
            </remarks>
            <example>
            		The following example demonstrates how to display information about the clicked item in the
            		<see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> shown after a right-click
            		on a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
             <code lang="CS">
            		&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			void RadTreeView1_ContextMenuItemClick(object sender, RadTreeViewContextMenuEventArgs e)
            			{
            				lblInfo.Text = string.Format(@"You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")",
            					e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text);
            			}
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
             <code lang="VB">
            		&lt;%@ Page Language="VB" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			Sub RadTreeView1_ContextMenuItemClick(ByVal sender as Object, ByVal e as RadTreeViewContextMenuEventArgs)
            				lblInfo.Text = String.Format("You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")", _
            		   e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text)
            			End Sub
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerContextMenuEventArgs.#ctor(Telerik.Web.UI.Appointment,Telerik.Web.UI.RadMenuItem)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuEventArgs">RadTreeViewContextMenuEventArgs</see> class.
            </summary>
            <param name="appointment">A <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> which represents a
            	node in the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </param>
            <param name="menuItem">A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which represents an
            	item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenuEventArgs.MenuItem">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> in the
                <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> control
            	when the event is raised.
            </summary>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> when the event is raised.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSchedulerContextMenuEventArgs.Appointment">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> in the
                <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control when the event is raised.
            </summary>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.AppointmentSortingMode">
            <summary>
            Defines the appointment sorting mode for TimelineView
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.AppointmentSortingMode.Global">
            <summary>
            In Global mode the appointments are sorted as a single list.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.AppointmentSortingMode.PerSlot">
            <summary>
            In PerSlot mode the appointments are sorted independently in each slot.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AppointmentStyleMode">
            <summary>
            Defines the styling mode for appointments.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.AppointmentStyleMode.Auto">
            <summary>
            Appointments with set background or border color are rendered using the Simple style - without rounded corners or gradiented background.
            All others are rendered using their default style - with rounded corners and gradiented background.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.AppointmentStyleMode.Simple">
            <summary>
            Appointments are rendered using the simple style - without rounded corners or gradiented background.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.AppointmentStyleMode.Default">
            <summary>
            Appointments rendered with rounded corners and gradiented background.
            Custom background and border colors are supported. Gradiented backgrounds for custom colors are not available in IE6.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.OccurrenceDeleteEventArgs.Appointment">
            <summary>
            Gets the master appointment that was used to generate the occurrence.
            </summary>
            <value>The master appointment that was used to generate the occurrence.</value>
        </member>
        <member name="P:Telerik.Web.UI.OccurrenceDeleteEventArgs.OccurrenceAppointment">
            <summary>
            Gets the occurrence appointment that is about to be removed.
            </summary>
            <value>The occurrence appointment that is about to be removed.</value>
            <remarks>
            This can also be the master appointment itself. If this is the case,
            it'll remain in the Appointments collection, but it will be hidden (Visible=false).
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourcesPopulatingEventArgs.SchedulerInfo">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the provider/web service.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> object
            that will be passed to the provider/web service.
            </value>
            <remarks>
            You can replace this object with your own implementation of
            <see cref="T:Telerik.Web.UI.ISchedulerInfo">ISchedulerInfo</see> in order
            to pass additional information to the provider/web service.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourcesPopulatingEventArgs.ServicePath">
            <summary>
            Gets or sets the URI for the request that is about to be made by a RadScheduler.
            </summary>
            <value>
            The URI for the request that is about to be made by a RadScheduler;
            null (Nothing in Visual Basic) when web service binding is not used.
            </value>
            <remarks>
            This property contains the absolute URI for the request, as resolved
            by RadScheduler. You might need to modify this URI to accommodate for
            URL rewriters and other scenarios.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourcesPopulatingEventArgs.Headers">
            <summary>
            Gets a collection of header name/value pairs associated with the request.
            </summary>
            <value>
            A <see cref="T:System.Net.WebHeaderCollection">WebHeaderCollection</see> containing
            header name/value pairs associated with this request;
            null (Nothing in Visual Basic) when web service binding is not used.
            </value>
            <remarks>
            The Headers property contains a <see cref="T:System.Net.WebHeaderCollection">WebHeaderCollection</see>
            instance containing header information that RadScheduler sends with the request.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourcesPopulatingEventArgs.Credentials">
            <summary>
            Gets or sets the network credentials that are sent to the host and used to authenticate the request.
            </summary>
            <value>
            An <see cref="T:System.Net.ICredentials">ICredentials</see> containing the authentication credentials for the request.
            The default is a null reference (Nothing in Visual Basic).
            </value>
            <remarks>
            Typically, you would set this property to the credentials of the client on whose behalf the request is made.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourcesPopulatingEventArgs.Proxy">
            <summary>
            Gets or sets the proxy to be used to connect to the Web Service.
            </summary>
            <value>
            An <see cref="T:System.Net.IWebProxy">IWebProxy</see> instance.
            The default is a null reference (Nothing in Visual Basic).
            </value>
        </member>
        <member name="T:Telerik.Web.UI.IRecurrenceEditorStrings">
            <summary>
            The localization strings to be used in RadSchedulerRecurrenceEditor.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSchedulerRecurrenceEditor.ResetLayout">
            <summary>
            Call when the RecurrenceEditor internal controls should be reinitialized.
            A good example is when placing the RecurrenceEditor in external edit/insert form.
            In order to clean the last selected values (from the previous display of the form)
            you can call the ResetLayout in the FormCreating event of RadScheduler
            and then on FormCreated event to populate the RecurrenceEditor with a RecurrenceRule (if edit).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.Key">
            <summary>
            Gets or sets a value indicating the resource <see cref="P:Telerik.Web.UI.Resource.Key">key</see> to match.
            </summary>
            <value>
            Resource <see cref="P:Telerik.Web.UI.Resource.Key">key</see> to match.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.Text">
            <summary>
            Gets or sets a value indicating the resource <see cref="P:Telerik.Web.UI.Resource.Text">text</see> to match.
            </summary>
            <value>
            Resource <see cref="P:Telerik.Web.UI.Resource.Text">text</see> to match.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.Type">
            <summary>
            Gets or sets a value indicating the resource <see cref="P:Telerik.Web.UI.Resource.Type">type</see> to match.
            </summary>
            <value>
            Resource <see cref="P:Telerik.Web.UI.Resource.Type">type</see> to match.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.ApplyCssClass">
            <summary>
            Gets or sets a value indicating the cascading style sheet (CSS) class
            to render for appointments that use the matching resource.
            </summary>
            <value>
            The cascading style sheet (CSS) class to render for appointments
            that use the matching resource.
            
            The default value is <see cref="F:System.String.Empty">Empty</see>.
            </value>
            <remarks>
            You can define your own CSS class name or use some of the predefined class names:
            <list type="bullet">
            	<item><strong>rsCategoryBlue</strong></item>
            	<item><strong>rsCategoryDarkBlue</strong></item>
            	<item><strong>rsCategoryDarkGreen</strong></item>
            	<item><strong>rsCategoryDarkRed</strong></item>
            	<item><strong>rsCategoryGreen</strong></item>
            	<item><strong>rsCategoryOrange</strong></item>
            	<item><strong>rsCategoryPink</strong></item>
            	<item><strong>rsCategoryRed</strong></item>
            	<item><strong>rsCategoryViolet</strong></item>
            	<item><strong>rsCategoryYellow</strong></item>
            </list>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.BackColor">
            <summary>
            Gets or sets a value indicating the background color
            to render for appointments that use the matching resource.
            </summary>
            <value>
            The background color to render for appointments
            that use the matching resource.
            
            The default value is <see cref="F:System.Drawing.Color.Empty">Empty</see>.
            </value>
            <remarks>
            Setting a background color automatically switches the appointment rendering
            to Simple (no rounded corners and gradients). In order to disable this
            legacy behavior, and force the default rendering, set <see cref="P:Telerik.Web.UI.RadScheduler.AppointmentStyleMode">AppointmentStyleMode</see>
            to <see cref="F:Telerik.Web.UI.AppointmentStyleMode.Default">Default</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ResourceStyleMapping.BorderColor">
            <summary>
            Gets or sets a value indicating the border color
            to render for appointments that use the matching resource.
            </summary>
            <value>
            The border color to render for appointments
            that use the matching resource.
            
            The default value is <see cref="F:System.Drawing.Color.Empty">Empty</see>.
            </value>
            <remarks>
            Setting a border color automatically switches the appointment rendering
            to Simple (no rounded corners and gradients). In order to disable this
            legacy behavior, and force the default rendering, set <see cref="P:Telerik.Web.UI.RadScheduler.AppointmentStyleMode">AppointmentStyleMode</see>
            to <see cref="F:Telerik.Web.UI.AppointmentStyleMode.Default">Default</see>.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerResourcePopulationMode">
            <summary>
            Specifies the resource population mode of a RadScheduler control when using Web Service data binding.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerResourcePopulationMode.Manual">
            <summary>
            In manual mode RadScheduler will not request resources from the Web Service.
            They can be populated from the code-behind of the ASP.NET page that hosts
            the RadScheduler control.
            </summary>
            <remarks>
            This mode is useful when server-side requests from the server are undesirable
            or forbidden (Medium Trust for example).
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerResourcePopulationMode.ServerSide">
            <summary>
            The resources will be populated from the server by issuing a request to
            the Web Service.
            </summary>
            <remarks>
            The <see cref="E:Telerik.Web.UI.RadScheduler.ResourcesPopulating">ResourcesPopulating</see>
            event will be raised.
            </remarks>
        </member>
        <member name="F:Telerik.Web.UI.SchedulerResourcePopulationMode.ClientSide">
            <summary>
            The resources will be populated from the client by issuing a request to
            the Web Service.
            </summary>
            <remarks>
            The <see cref="P:Telerik.Web.UI.RadScheduler.OnClientResourcesPopulating">ResourcesPopulating</see>
            client-side event will be raised.
            <b>Grouped views are not supported in this mode.</b>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerWebServiceClient">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.SchedulerWebServiceSettings.#ctor(System.String,System.Web.UI.StateBag)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.SchedulerWebServiceSettings.#ctor(System.Web.UI.StateBag)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.GetAppointmentsMethod">
            <summary>
            	Gets or sets the method name to be called to populate the appointments.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.DeleteAppointmentMethod">
            <summary>
            	Gets or sets the method name to be called to delete appointments.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.InsertAppointmentMethod">
            <summary>
            	Gets or sets the method name to be called to insert appointments.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.UpdateAppointmentMethod">
            <summary>
            	Gets or sets the method name to be called to update appointments.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.GetResourcesMethod">
            <summary>
            	Gets or sets the method name to be called to get the resources list.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.CreateRecurrenceExceptionMethod">
            <summary>
            	Gets or sets the method name to be called to create recurrence exceptions.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.RemoveRecurrenceExceptionsMethod">
            <summary>
            	Gets or sets the method name to be called to remove the recurrence exceptions of a given appointment.
            </summary>
            <remarks>
            	The method must be part of the web service specified through the
            	<see cref="P:Telerik.Web.UI.WebServiceSettings.Path">Path</see> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SchedulerWebServiceSettings.ResourcePopulationMode">
            <summary>
            	Gets or sets the <see cref="T:Telerik.Web.UI.SchedulerResourcePopulationMode">resource population mode</see>
            	to be used from RadScheduler.
            </summary>
            <value>
            	The <see cref="T:Telerik.Web.UI.SchedulerResourcePopulationMode">resource population mode</see>
            	to be used from RadScheduler. The default value is
            	<see cref="F:Telerik.Web.UI.SchedulerResourcePopulationMode.ServerSide">ClientSide</see>
            </value>
            <remarks>
            <para>
            	Resources need to be populated from the server when using resource grouping.
            	Doing so also reduces the client-side initialization time.
            </para> 
            <para>
            	This operation requires the <see cref="T:System.Net.WebPermission">WebPermission</see> to be granted
            	for the Web Service URL. This permission is not granted by default in <b>Medium Trust</b>.
            </para>
            <para>
            	You can disable the population of the resources from the server and still use
            	client-side rendering for grouped views. To do so you need to set the
            	value to <see cref="F:Telerik.Web.UI.SchedulerResourcePopulationMode.Manual">Manual</see> and
            	populate the resources from the OnInit method of the page.
            </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.NonSerializedInControlStateAttribute">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ISchedulerInfo">
            <summary>
            This interface contains the basic information about the scheduler instance
            that will be transferred to the Web Service and to the corresponding provider.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.ViewStart">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeStart">RadScheduler.VisibleRangeStart</see>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.ViewEnd">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadScheduler.VisibleRangeEnd">RadScheduler.VisibleRangeEnd</see>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.EnableDescriptionField">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadScheduler.EnableDescriptionField">RadScheduler.EnableDescriptionField</see>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.MinutesPerRow">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadScheduler.MinutesPerRow">RadScheduler.MinutesPerRow</see>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.TimeZoneOffset">
            <summary>
            Time Zone Offset in milliseconds
            See <see cref="P:Telerik.Web.UI.RadScheduler.TimeZoneOffset">RadScheduler.TimeZoneOffset</see>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ISchedulerInfo.VisibleAppointmentsPerDay">
            <summary>
            Limit of visible appointments per day. A value of 0 means no limit.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerInfo">
            <summary>
            Default implementation of ISchedulerInfo
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.WebServiceAppointmentController">
            <summary>
            The WebServiceAppointmentController provides a facade over a <see cref="T:Telerik.Web.UI.SchedulerProviderBase"/> object
            and is used to call your provider from web services.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.#ctor">
            <summary>
            Instantiates a new <see cref="T:Telerik.Web.UI.WebServiceAppointmentController"/> based on the default provider configured
            in web.config.
            </summary>
            <exception cref="T:System.Configuration.ConfigurationException">
            If there is no provider configured in the web.config file a <see cref="T:System.Configuration.ConfigurationException"/> will be thrown.
            </exception>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.#ctor(System.String)">
            <summary>
            Instantiates a new <see cref="T:Telerik.Web.UI.WebServiceAppointmentController"/> by using the specified provider name.
            </summary>
            <param name="providerName">The name of the provider configured in web.config</param>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.#ctor(Telerik.Web.UI.SchedulerProviderBase)">
            <summary>
            Instantiates a new <see cref="T:Telerik.Web.UI.WebServiceAppointmentController"/> based on the supplied <see cref="T:Telerik.Web.UI.SchedulerProviderBase"/>
            </summary>
            <param name="provider">The provider which will be used</param>
            <example>
            <code lang="CS">
            	XmlSchedulerProvider provider = new XmlSchedulerProvider(Server.MapPath("~/App_Data/data.xml"), true);
            	WebServiceAppointmentController controller = new WebServiceAppointmentController(provider);
            </code>
            <code lang="VB">
            	Dim provider As New XmlSchedulerProvider(Server.MapPath("~/App_Data/data.xml"), True)
            	Dim controller As New WebServiceAppointmentController(provider)
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.GetAppointments(Telerik.Web.UI.ISchedulerInfo)">
            <summary>
            Gets the appointments corresponding to specified time period
            </summary>
            <param name="schedulerInfo">Contains the current time period</param>
            <example>
            <code lang="CS">
            	[WebMethod]
            	public IEnumerable&lt;AppointmentData&gt; GetAppointments(SchedulerInfo schedulerInfo)
            	{
            		return Controller.GetAppointments(schedulerInfo);
            	}
            </code>
            <code lang="VB">
            	&lt;WebMethod&gt; _
            	Public Function GetAppointments(schedulerInfo As SchedulerInfo) As IEnumerable(Of AppointmentData)
            		Return Controller.GetAppointments(schedulerInfo)
            	End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.InsertAppointment(Telerik.Web.UI.ISchedulerInfo,Telerik.Web.UI.AppointmentData)">
            <summary>
            Inserts the specified appointment and returns the available appointments.
            </summary>
            <param name="schedulerInfo">A <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> object which contains the current time period.</param>
            <param name="appointmentData">A <see cref="T:Telerik.Web.UI.AppointmentData"/> object which contains the appointment properties.</param>
            <example>
            <code lang="CS">
            [WebMethod]
            public IEnumerable&lt;AppointmentData&gt; InsertAppointment(SchedulerInfo schedulerInfo, AppointmentData appointmentData)
            {
            	return Controller.InsertAppointment(schedulerInfo, appointmentData);
            }
            </code>
            <code lang="VB">
            &lt;WebMethod&gt; _
            Public Function InsertAppointment(schedulerInfo As SchedulerInfo, appointmentData As AppointmentData) As IEnumerable(Of AppointmentData)
            	Return Controller.InsertAppointment(schedulerInfo, appointmentData)
            End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.UpdateAppointment(Telerik.Web.UI.ISchedulerInfo,Telerik.Web.UI.AppointmentData)">
            <summary>
            Updates the specified appointment and returns the available appointments.
            </summary>
            <param name="schedulerInfo">A <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> object which contains the current time period.</param>
            <param name="appointmentData">A <see cref="T:Telerik.Web.UI.AppointmentData"/> object which contains the appointment properties.</param>
            <example>
            <code lang="CS">
            [WebMethod]
            public IEnumerable&lt;AppointmentData&gt; UpdateAppointment(SchedulerInfo schedulerInfo, AppointmentData appointmentData)
            {
            	return Controller.UpdateAppointment(schedulerInfo, appointmentData);
            }
            </code>
            <code lang="VB">
            &lt;WebMethod&gt; _
            Public Function UpdateAppointment(schedulerInfo As SchedulerInfo, appointmentData As AppointmentData) As IEnumerable(Of AppointmentData)
            	Return Controller.UpdateAppointment(schedulerInfo, appointmentData)
            End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.CreateRecurrenceException(Telerik.Web.UI.ISchedulerInfo,Telerik.Web.UI.AppointmentData)">
            <summary>
            Creates a recurrence exception with the specified appointment data and returns the available appointments.
            </summary>
            <param name="schedulerInfo">A <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> object which contains the current time period.</param>
            <param name="recurrenceExceptionData">A <see cref="T:Telerik.Web.UI.AppointmentData"/> object which contains the exception properties.</param>
            <example>
            <code lang="CS">
            [WebMethod]
            public IEnumerable&lt;AppointmentData&gt; CreateRecurrenceException(SchedulerInfo schedulerInfo, AppointmentData recurrenceExceptionData)
            {
            	return Controller.CreateRecurrenceException(schedulerInfo, recurrenceExceptionData);
            }
            </code>
            <code lang="VB">
            &lt;WebMethod&gt; _
            Public Function CreateRecurrenceException(schedulerInfo As SchedulerInfo, recurrenceExceptionData As AppointmentData) As IEnumerable(Of AppointmentData)
            	Return Controller.CreateRecurrenceException(schedulerInfo, recurrenceExceptionData)
            End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.RemoveRecurrenceExceptions(Telerik.Web.UI.ISchedulerInfo,Telerik.Web.UI.AppointmentData)">
            <summary>
            Removes all recurrence exceptions of the specified recurrence master and returns the available appointments.
            </summary>
            <param name="schedulerInfo">A <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> object which contains the current time period.</param>
            <param name="masterAppointmentData">A <see cref="T:Telerik.Web.UI.AppointmentData"/> object which is the recurrence master.</param>
            <example>
            <code lang="CS">
            [WebMethod]
            public IEnumerable&lt;AppointmentData&gt; RemoveRecurrenceExceptions(SchedulerInfo schedulerInfo, AppointmentData masterAppointmentData)
            {
            	return Controller.RemoveRecurrenceExceptions(schedulerInfo, masterAppointmentData);
            }
            </code>
            <code lang="VB">
            &lt;WebMethod&gt; _
            Public Function RemoveRecurrenceExceptions(schedulerInfo As SchedulerInfo, masterAppointmentData As AppointmentData) As IEnumerable(Of AppointmentData)
            	Return Controller.RemoveRecurrenceExceptions(schedulerInfo, masterAppointmentData)
            End Function
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.GetResources(Telerik.Web.UI.ISchedulerInfo)">
            <summary>
            Returns the resources of all appointments within the specified time period.
            </summary>
            <param name="schedulerInfo">The time period</param>
        </member>
        <member name="M:Telerik.Web.UI.WebServiceAppointmentController.DeleteAppointment(Telerik.Web.UI.ISchedulerInfo,Telerik.Web.UI.AppointmentData,System.Boolean)">
            <summary>
            Deletes the specified appointment and returns the available appointments.
            </summary>
            <param name="schedulerInfo">A <see cref="T:Telerik.Web.UI.ISchedulerInfo"/> object which contains the current time period.</param>
            <param name="appointmentData">A <see cref="T:Telerik.Web.UI.AppointmentData"/> which represents the apointment that shoud be deleted.</param>
            <param name="deleteSeries">Specified wether to delete the recurring series if the specified appointment is recurrence master.</param>
            <example>
            <code lang="CS">
            [WebMethod]
            public IEnumerable&lt;AppointmentData&gt; DeleteAppointment(SchedulerInfo schedulerInfo, AppointmentData appointmentData, bool deleteSeries)
            {
            	return Controller.DeleteAppointment(schedulerInfo, masterAppointmentData, deleteSeries);
            }
            </code>
            <code lang="VB">
            &lt;WebMethod&gt; _
            Public Function DeleteAppointment(schedulerInfo As SchedulerInfo, appointmentData As AppointmentData, deleteSeries As Bool) As IEnumerable(Of AppointmentData)
            	Return Controller.DeleteAppointment(schedulerInfo, masterAppointmentData, deleteSeries)
            End Function
            </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceAppointmentController.AppointmentFactory">
            <summary>
            A factory for appointment instances.
            </summary>
            <remarks>
            <para>
            	The default factory returns instances of the
            	<see cref="T:Telerik.Web.UI.Appointment">Appointment</see> class.
            </para>
            <para>
            	WebServiceAppointmentController needs to create appointment instances
            	before passing them to the provider. You can use custom appointment
            	classes by implementing an IAppointmentFactory and setting this property.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.WebServiceAppointmentController.AppointmentComparer">
            <summary>
            Gets or sets the comparer instance used to determine the appointment ordering within the same slot.
            By default, appointments are ordered by start time and duration.
            </summary>
            <remarks>
            You need to implement an appointment comparer only if you've overriden
            the client-side Telerik.Web.UI.Appointment.prototype.compare(appointment) function.
            In this case both the server-side and client-side implementation must work in the same manner.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.SchedulerWebServiceSettingsConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.Enabled">
            <summary>
            Gets or sets a value indicating whether the user can use the advanced insert/edit form.
            </summary>
            <value><strong>true</strong> if the user should be able to use the advanced insert/edit form; <strong>false </strong> otherwise. The default value is <strong>true</strong>.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.Modal">
            <summary>
            Gets or sets a value indicating whether advanced form is displayed as a modal dialog.
            </summary>
            <value>
            	<strong>true</strong> if the advanced form is displayed as a modal dialog;
            	<strong>false</strong> if the advanced form replaces the scheduler content.
            	The default value is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.ZIndex">
            <summary>
            Gets or sets a value indicating the z-index of the modal dialog.
            </summary>
            <value>
            An integer value that specifies the desired z-index.
            The default value is <strong>2500</strong>.
            </value>
            <remarks>
            Use this property to position the form over elements with higher z-index
            than the modal form.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.EnableResourceEditing">
            <summary>
            Gets or sets a value that indicates whether the resource editing in the advanced form is enabled.
            </summary>
            <value>A value that indicates whether the resource editing in the advanced form is enabled.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.EnableCustomAttributeEditing">
            <summary>
            Gets or sets a value that indicates whether the attribute editing in the advanced form is enabled.
            </summary>
            <value>A value that indicates whether the attribute editing in the advanced form is enabled.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.DateFormat">
            <summary>
            Gets or sets the edit form date format string.
            </summary>
            <remarks>
            The default value of this property is inferred from the
            <strong>Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortDatePattern</strong>
            property.
            </remarks>
            <value>The edit form date format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.TimeFormat">
            <summary>
            Gets or sets the edit form time format string.
            </summary>
            <remarks>
            The default value of this property is inferred from the
            <strong>Thread.CurrentThread.CurrentCulture.DateTimeFormat.ShortTimePattern</strong>
            property.
            </remarks>
            <value>The edit form time format string.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.MaximumHeight">
            <summary>
            Gets or sets the maximum height of the modal advanced form.
            </summary>
            <value>The maximum height of the modal advanced form.</value>
        </member>
        <member name="P:Telerik.Web.UI.AdvancedFormSettings.Width">
            <summary>
            Gets or sets the width of the modal advanced form.
            </summary>
            <value>The width of the modal advanced form</value>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuSettings.EnableDefault">
            <summary>
            Gets or sets a value indicating whether to use the integrated context menu.
            </summary>
            <value><c>true</c> if the intergrated menu is enabled; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuSettings.Skin">
            <summary>Gets or sets the skin name for the context menu.</summary>
            <value>A string indicating the skin name for the context menu. The default is "Default".</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuSettings.EnableEmbeddedScripts">
            <summary>
            Gets or sets the value, indicating whether to render script references to the embedded scripts or not.
            </summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed Scripts files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuSettings.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuSettings.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs.ExceptionAppointment">
            <summary>
            Gets the recurrence exception appointment that is about to be created.
            </summary>
            <value>The recurrence exception appointment that is about to be created.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs.Appointment">
            <summary>
            Gets the master appointment to which the recurrence exception is about to be attached.
            </summary>
            <value>The master appointment to which the recurrence exception is about to be attached.</value>
        </member>
        <member name="P:Telerik.Web.UI.RecurrenceExceptionCreatedEventArgs.OccurrenceAppointment">
            <summary>
            Gets the occurrence appointment that is about to be overriden by the recurrence exception.
            </summary>
            <value>The occurrence appointment that is about to be overriden by the recurrence exception.</value>
        </member>
        <member name="P:Telerik.Web.UI.CreateRecurrenceExceptionContext.RecurrenceExceptionDate">
            <summary>
            The date of the recurrence exception that is being created by
            the current Insert / Update operation pair.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.UpdateAppointmentContext.OriginalAppointment">
            <summary>
            A reference to the original appointment during an Update operation.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ResourceUpdateInfo">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.SchedulerClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.SchedulerTopTable">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.MultiDayViewSettings">
            <summary> Represents settings for RadScheduler's multi-day view. </summary>
        </member>
        <member name="T:Telerik.Web.UI.WeekViewSettings">
            <summary> Represents settings for RadScheduler's week view. </summary>
        </member>
        <member name="P:Telerik.Web.UI.ViewSettings.ReadOnly">
            <summary>
            Gets or sets a value indicating whether the view is in read-only mode.
            </summary>
            <value>
            	<strong>true</strong> if view should be read-only; <strong>false</strong> otherwise. The default value is <strong>false</strong>.
            </value>
            <remarks>
            	By default the user is able to insert, edit and delete appointments. Use the <strong>ReadOnly</strong> to disable the editing capabilities of RadScheduler.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.ViewSettings.ShowDateHeaders">
            <summary>
            Gets or sets a value indicating whether to render date headers for the current view.
            </summary>
            <value><c>true</c> if the date headers for the current view are rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.ViewSettings.UserSelectable">
            <summary>
            Gets or sets a value indicating whether to render a tab for the current view in the view chooser.
            </summary>
            <value><c>true</c> if a tab for the current view in the view chooser is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.GroupableViewSettings.GroupBy">
            <summary>
            Gets or sets the resource to group by.
            </summary>
            <value>The resource to group by.</value>
        </member>
        <member name="P:Telerik.Web.UI.GroupableViewSettings.GroupingDirection">
            <summary>
            Gets or sets the resource grouping direction.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GroupableViewSettings.ShowResourceHeaders">
            <summary>
            Gets or sets a value indicating whether to render resource headers for the current view.
            </summary>
            <value><c>true</c> if the resource headers for the current view are rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.DayStartTime">
            <summary>
                Gets or sets the time used to denote the start of the day.
            </summary>
            <value>
                The time used to denote the start of the day.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.DayEndTime">
            <summary>
                Gets or sets the time used to denote the end of the day.
            </summary>
            <value>
                The time used to denote the end of the day.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.WorkDayStartTime">
            <summary>
                Gets or sets the time used to denote the start of the work day.
            </summary>
            <value>
                The time used to denote the start of the work day.
            </value>
            <remarks>
            	The effect from this property is only visual.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.WorkDayEndTime">
            <summary>
                Gets or sets the time used to denote the end of the work day.
            </summary>
            <value>
                The time used to denote the end of the work day.
            </value>
            <remarks>
            	The effect from this property is only visual.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.ShowHoursColumn">
            <summary>
            Gets or sets a value indicating whether to render the hours column in day and week view.
            </summary>
            <value><c>true</c> if the hours column is rendered in day and week view; otherwise, <c>false</c>.</value>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.ShowHiddenAppointmentsIndicator">
            <summary>
            Gets or sets a value indicating whether to render indicator for appointments
            that are not visible when displaying only working hours, but will become visible when
            displaying the full day.
            </summary>
            <value>
            <c>true</c> if the indicator for hidden appointments should be rendered; otherwise, <c>false</c>.
            The default value is <c>true</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.BaseMultiDayViewSettings.EnableExactTimeRendering">
            <summary>
            Gets or sets a value indicating whether the appointment start and end time should be rendered exactly.
            </summary>
            <value>
            <c>true</c> if the appointment start and end time should be rendered exactly;
            <c>false</c> if the appointment start and end time should be snapped to the row boundaries.
            The default value is <c>false</c>.
            </value>
        </member>
        <member name="M:Telerik.Web.UI.WeekViewSettings.#ctor(Telerik.Web.UI.IScheduler,System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.WeekViewSettings.HeaderDateFormat">
            <summary>
            Gets or sets the week header date format string.
            </summary>
            <value>The week header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.WeekViewSettings.ColumnHeaderDateFormat">
            <summary>
            Gets or sets the week column header date format string. 
            </summary>
            <value>The week column header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.MultiDayViewSettings.#ctor(Telerik.Web.UI.IScheduler,System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.MultiDayViewSettings.HeaderDateFormat">
            <summary>
            Gets or sets the mult-day header date format string.
            </summary>
            <value>The multi-day header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MultiDayViewSettings.ColumnHeaderDateFormat">
            <summary>
            Gets or sets the multi-day header column date format string. 
            </summary>
            <value>The multi-day column header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MultiDayViewSettings.UserSelectable">
            <summary>
            Gets or sets a value indicating whether to render a tab for the current view in the view chooser.
            </summary>
            <value><c>true</c> if a tab for the current view in the view chooser is rendered; otherwise, <c>false</c>.</value>
        </member>
        <member name="T:Telerik.Web.UI.DayViewSettings">
            <summary> Represents settings for RadScheduler's day view. </summary>
        </member>
        <member name="M:Telerik.Web.UI.DayViewSettings.#ctor(Telerik.Web.UI.IScheduler,System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.DayViewSettings.HeaderDateFormat">
            <summary>
            Gets or sets the day header date format string.
            </summary>
            <value>The day header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.DayViewSettings.ShowDateHeaders">
            <summary>
            Not applicable in day view.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.MonthViewSettings">
            <summary> Represents settings for RadScheduler's Month view. </summary>
        </member>
        <member name="M:Telerik.Web.UI.MonthViewSettings.#ctor(Telerik.Web.UI.IScheduler,System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.HeaderDateFormat">
            <summary>
            Gets or sets the RadScheduler's header date format string in Month View. 
            </summary>
            <value>The RadScheduler's header date format string in Month View.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.ColumnHeaderDateFormat">
            <summary>
            Gets or sets the column header date format string in Month View. 
            </summary>
            <value>The column header date format string in Month View.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.DayHeaderDateFormat">
            <summary>
            Gets or sets the day header date format string in Month View. 
            </summary>
            <value>The day header date format string in Month View.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.FirstDayHeaderDateFormat">
            <summary>
            Gets or sets the first day of month header date format in Month View. 
            </summary>
            <value>The first day of month header date format in Month View.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.VisibleAppointmentsPerDay">
            <summary>
            	Gets or sets a value indicating the number of visible appointments per day in month view.
            </summary>
            <value>
            	A number specifying the number of visible appointments per day. The default value is 2.
            </value>
            <remarks>
            	A link button navigating to the specific date will be rendered when
            	the number of appointments exceeds this value.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.AdaptiveRowHeight">
            <summary>
            	Gets or sets a value indicating whether the height of each row
            	should be adjusted to match the height of its content.
            </summary>
            <value>
            	<strong>true</strong> if the height of each row should be adjusted to match the height of its content;
            	<strong>false</strong> if all rows should be with the same height.
            	The default value is <strong>false</strong>.
            </value>
            <remarks>
            	By default, all rows are rendered with the same height.
            	This property allows you to change this behaviour.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.MonthViewSettings.MinimumRowHeight">
            <summary>
            	Gets or sets a value indicating the minimum row height in month view.
            </summary>
            <value>
            	A number specifying the the minimum row height. The default value is 4.
            </value>
            <remarks>
            	This property is ignored when <see cref="P:Telerik.Web.UI.MonthViewSettings.AdaptiveRowHeight">AdaptiveRowHeight</see>
            	is set to <b>true</b>.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.GroupingDirection">
            <summary>
            Specifies resource grouping direction in RadScheduler.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TimelineViewSettings">
            <summary>Represents settings for the time line view.</summary>
        </member>
        <member name="M:Telerik.Web.UI.TimelineViewSettings.#ctor(Telerik.Web.UI.IScheduler,System.Web.UI.StateBag)">
            <excludetoc/>
            <exclude/>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.StartTime">
            <summary>
            The starting time of the Timeline view.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.NumberOfSlots">
            <summary>
            The number of slots to display in timeline view.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.SlotDuration">
            <summary>
            The duration of each slot in timeline view.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.HeaderDateFormat">
            <summary>
            Gets or sets the Timeline view header date format string.
            </summary>
            <value>The Timeline view header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.ColumnHeaderDateFormat">
            <summary>
            Gets or sets the timeline column header date format string. 
            </summary>
            <value>The timeline column header date format string.</value>
            <remarks>
            For additional information, please read this
            <a href="http://msdn2.microsoft.com/en-us/library/8kb3ddd4.aspx">MSDN article</a>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.TimeLabelSpan">
            <summary>
            	Gets or sets the number of rows/columns each time label spans.
            </summary>
            <value>
            	The number of rows/columns each time label spans.
            	The default value is <strong>1</strong>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.SortingMode">
            <summary>
            	Gets or sets a value that specifies the sorting mode to use when rendering the appointments.
            </summary>
            <value>
            	<see cref="F:Telerik.Web.UI.AppointmentSortingMode.PerSlot">AppointmentSortingMode.PerSlot</see>, appointments are sorted individually for each slot;
            	<see cref="F:Telerik.Web.UI.AppointmentSortingMode.Global">AppointmentSortingMode.Global</see> appointments are sorted as a single list.
            	The default value is <see cref="F:Telerik.Web.UI.AppointmentSortingMode.PerSlot">AppointmentSortingMode.PerSlot</see>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.ShowInsertArea">
            <summary>
            	Gets or sets a boolean value that specifies whether to
            	show an empty area at the end of each time slot that can
            	be used to insert appointments.
            </summary>
            <value>
            	<strong>true</strong>, insert are should be shown; <strong>false</strong> otherwise.
            	The default value is <strong>true</strong>
            </value>
            <remarks>
            	<para>
            	The insert area is not visible if the scheduler is in read-only mode or
            	<see cref="P:Telerik.Web.UI.RadScheduler.AllowInsert">AllowInsert</see> is <strong>false</strong>.
            	</para>
            	<para>
            	If all time slots are full and this property is set to <strong>false</strong>,
            	the user will not be able to insert appointments.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.TimelineViewSettings.EnableExactTimeRendering">
            <summary>
            Gets or sets a value indicating whether the appointment start and end time should be rendered exactly.
            </summary>
            <value>
            <c>true</c> if the appointment start and end time should be rendered exactly;
            <c>false</c> if the appointment start and end time should be snapped to the row boundaries.
            The default value is <c>false</c>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.AllDayLayout">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Month.MonthWeekLayout">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.Scheduler.Views.SchedulerModel.CreateDefaultRecurrenceRule(Telerik.Web.UI.Appointment)">
            <summary>
            Creates default recurrence rule for newly created recurring appointments.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Month.ContentTable">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.Scheduler.Views.Month.ContentTable.SyncCellHeight">
            <summary>
            Synchronize the height of all cells in the table.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Scheduler.Views.Month.ContentTable.SetMinimumCellHeight(System.Int32)">
            <summary>
            Adds padding to the table cells, so they are at least <paramref name="cellHeight"/> hight.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Scheduler.Views.Month.ContentTable.SyncCellHeight(System.Int32)">
            <summary>
            Sycnhronize the height of the cells in the specified row.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Scheduler.Views.Month.ContentTable.SyncRowHeight(Telerik.Web.UI.Scheduler.Views.Month.ContentTable)">
            <summary>
            Synchronizes the row heights of two tables with identical dimensions.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.ISchedulerRenderer">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Month.GroupedByDate.VerticalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.ViewBase">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Month.GroupedByDate.HorizontalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Month.GroupedByDate.Model">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.HorizontalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.Model">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.VerticalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.SchedulerAllDayTable">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.SchedulerRowHeaderTable">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Appointments">
            <summary>
            A list of the appointments that start in this time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Control">
            <summary>
            The control that represents this time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Start">
            <summary>
            The start time of the time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.End">
            <summary>
            The end time of the time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Duration">
            <summary>
            The duration of the time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Index">
            <summary>
            The unique index of the time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.FormContainer">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.CssClass">
            <summary>
            An optional CSS class name that will be rendered for the time slot.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Scheduler.Views.ISchedulerTimeSlot.Resource">
            <summary>
            The resource associated with the time slot.
            </summary>
            <value>The resource associated with the time slot in grouped views, otherwise null.</value>
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.SchedulerContentPanel">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByDate.HorizontalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByResource.HorizontalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.View">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByDate.Model">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByResource.Model">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.ModelBase">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByDate.TimelineAppointmentControl">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByDate.TimelineLayout">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.GroupedByDate.VerticalView">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.TimelineLayout">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Timeline.Model">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.AllDayAppointmentControl">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.AllDayLayout">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.Week.GroupedByDate.Renderer">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Scheduler.Views.ViewHeader">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.CdnSettings">
            <summary>
            Base class for CDN Related settings
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.CdnSettings.TelerikCdn">
            <summary>
            Gets or sets a value indicating whether to use the Telerik CDN network to load control scripts.
            </summary>
            <value>
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Disabled">TelerikCdnMode.Disabled</see> if the scripts should be loaded from the assembly or registered manually;
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Enabled">TelerikCdnMode.Enabled</see> if the Telerik CDN should be used.
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Auto">TelerikCdnMode.Auto</see> value is determined from ScriptManager.EnableCdn for .NET 4.0; For earlier versions of ASP.NET the value is set to Disabled.
            </value>
            <remarks>
            	<para>
            	By default the Telerik CDN is not used. If you enable it the scripts will be loaded from the Telerik CDN.
            	</para>
            	
            	<para>
            	The Telerik CDN is hosted on Amazon CloudFront. This is a global content delivery service with edge
            	locations in US, Europe and Asia. It automatically routes requests to the nearest location,
            	so content is delivered with the best possible performance.
            	</para>
            	
            	<para>
            	The Telerik CDN uses the following host names:
            	</para>
            	
            	<list type="table">
            		<listheader>
            			<term>Host name (HTTP)</term>
            			<description>Served content</description>
            		</listheader>
            		<item>
            			<term>aspnet-scripts.telerikstatic.com</term>
            			<description>Telerik ASP.NET controls scripts</description>
            		</item>
            		<item>
            			<term>aspnet-skins.telerikstatic.com</term>
            			<description>Telerik ASP.NET controls skins and images</description>
            		</item>
            	</list>
            	
            	<list type="table">
            		<listheader>
            			<term>Host name (HTTPS)</term>
            			<description>Served content</description>
            		</listheader>
            		<item>
            			<term>https://d2i2wahzwrm1n5.cloudfront.net</term>
            			<description>Telerik ASP.NET controls scripts</description>
            		</item>
            		<item>
            			<term>https://d35islomi5rx1v.cloudfront.net</term>
            			<description>Telerik ASP.NET controls skins and images</description>
            		</item>
            	</list>
            	
            	<para>
            	RadScriptManager only manages the control scripts.
            	See <see cref="T:Telerik.Web.UI.RadStyleSheetManager">RadStyleSheetManager</see> for enabling CDN support for the control skins.
            	</para>
            	
            	<para>
            	You can globally configure CDN-related settings from web.config by using the following application settings:
            	</para>
            	
            	<list type="table">
            		<listheader>
            			<term>Application setting</term>
            			<description>Maps to</description>
            		</listheader>
            		<item>
            			<term>Telerik.ScriptManager.TelerikCdn</term>
            			<description>RadScriptManager.CdnSettings.TelerikCdn</description>
            		</item>
            		<item>
            			<term>Telerik.ScriptManager.TelerikCdn.BaseUrl</term>
            			<description>RadScriptManager.CdnSettings.BaseUrl</description>
            		</item>
            		<item>
            			<term>Telerik.ScriptManager.TelerikCdn.BaseSecureUrl</term>
            			<description>RadScriptManager.CdnSettings.BaseSecureUrl</description>
            		</item>
            	</list>
            	
            	<para>
            	For example:
            	</para>
            	
            	<para>
            		&lt;appSettings&gt;&lt;br /&gt;
            		&lt;add key="Telerik.ScriptManager.TelerikCdn" value="Enabled" /&gt;&lt;br /&gt;
            		&lt;add key="Telerik.ScriptManager.TelerikCdn.BaseUrl" value="http://myserver" /&gt;&lt;br /&gt;
            		&lt;add key="Telerik.ScriptManager.TelerikCdn.BaseSecureUrl" value="https://myserver" /&gt;&lt;br /&gt;
            		&lt;/appSettings&gt;&lt;br /&gt;
            	</para>
            	
            	<para>
            	<strong>Note:</strong>
            	Ensure that your customers have unlimited access to the <strong>telerikstatic.com</strong> domain before turning on this feature.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.CdnSettings.BaseUrl">
            <summary>
            Gets or sets the base URL of the CDN that hosts the control scripts.
            </summary>
            <value>
            The base URL of the CDN for HTTP connections. The default value is <strong>http://aspnet-scripts.telerikstatic.com</strong>
            </value>
            <remarks>
            	<para>
            	In order to obtain the URL for a specific resource, RadScriptManager will combine the
            	base URL with the suite name (ajax) and the current version.
            	For example: http://aspnet-scripts.telerikstatic.com/ajax/2009.3.1207/Common/Core.js
            	</para>
            	
            	<para>
            	If the browser supports it, the RadScriptManager will serve a gzip compressed version from the "ajaxz" folder.
            	</para>
            
            	See <see cref="P:Telerik.Web.UI.CdnSettings.TelerikCdn">TelerikCdn</see> for detailed description of the Telerik CDN network.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.CdnSettings.BaseSecureUrl">
            <summary>
            Gets or sets the base secure (HTTPS) URL of the CDN that hosts the control scripts.
            </summary>
            <value>
            The base secure (HTTPS) URL of the CDN for HTTP connections. The default value is <strong>https://d2i2wahzwrm1n5.cloudfront.net</strong>
            </value>
            <remarks>
            	<para>
            	The BaseSecureUrl will be used when the page is served over a secure connection.
            	</para>
            
            	<para>
            	In order to obtain the URL for a specific resource, RadScriptManager will combine the
            	base URL with the suite name (ajax) and the current version.
            	For example: https://d2i2wahzwrm1n5.cloudfront.net/ajax/2009.3.1207/Common/Core.js
            	</para>
            	
            	<para>
            	If the browser supports it, the RadScriptManager will serve a gzip compressed version from the "ajaxz" folder.
            	</para>
            
            	See <see cref="P:Telerik.Web.UI.CdnSettings.TelerikCdn">TelerikCdn</see> for detailed description of the Telerik CDN network.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.TelerikCdnMode">
            <summary>
            Enumeration of the possible modes for the Telerik CDN.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TelerikCdnMode.Enabled">
            <summary>
            The Telerik static resources are served from a CDN
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TelerikCdnMode.Disabled">
            <summary>
            The Telerik static resources are served locally
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TelerikCdnMode.Auto">
            <summary>
            Value is determined from ScriptManager.EnableCdn for .NET 4.0;
            For earlier versions of ASP.NET the value is set to Disabled
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.StyleSheetCdnSettings">
            <summary>
            RadStyleSheetManager CDN settings
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.StyleSheetCdnSettings.TelerikCdn">
            <summary>
            Gets or sets a value indicating whether to use the Telerik CDN network to load control skins.
            </summary>
            <value>
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Disabled">TelerikCdnMode.Disabled</see> if the skins should be loaded from the assembly or registered manually;
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Enabled">TelerikCdnMode.Enabled</see> if the Telerik CDN should be used.
            	<see cref="F:Telerik.Web.UI.TelerikCdnMode.Auto">TelerikCdnMode.Auto</see> value is determined from ScriptManager.EnableCdn for .NET 4.0; For earlier versions of ASP.NET the value is set to Disabled.
            </value>
            <remarks>
            	<para>
            	By default the Telerik CDN is not used. If you enable it the skins will be loaded from the Telerik CDN.
            	</para>
            	
            	<para>
            	The Telerik CDN is hosted on Amazon CloudFront. This is a global content delivery service with edge
            	locations in US, Europe and Asia. It automatically routes requests to the nearest location,
            	so content is delivered with the best possible performance.
            	</para>
            	
            	<para>
            	The Telerik CDN uses the following host names:
            	</para>
            	
            	<list type="table">
            		<listheader>
            			<term>Host name (HTTP)</term>
            			<description>Served content</description>
            		</listheader>
            		<item>
            			<term>aspnet-scripts.telerikstatic.com</term>
            			<description>Telerik ASP.NET controls scripts</description>
            		</item>
            		<item>
            			<term>aspnet-skins.telerikstatic.com</term>
            			<description>Telerik ASP.NET controls skins and images</description>
            		</item>
            	</list>
            	
            	<list type="table">
            		<listheader>
            			<term>Host name (HTTPS)</term>
            			<description>Served content</description>
            		</listheader>
            		<item>
            			<term>https://d2i2wahzwrm1n5.cloudfront.net</term>
            			<description>Telerik ASP.NET controls scripts</description>
            		</item>
            		<item>
            			<term>https://d35islomi5rx1v.cloudfront.net</term>
            			<description>Telerik ASP.NET controls skins and images</description>
            		</item>
            	</list>
            	
            	<para>
            	RadStyleSheetManager only manages the control skins.
            	See <see cref="T:Telerik.Web.UI.RadScriptManager">RadScriptManager</see> for enabling CDN support for the control scripts.
            	</para>
            	
            	<para>
            	You can globally configure CDN-related settings from web.config by using the following application settings:
            	</para>
            	
            	<list type="table">
            		<listheader>
            			<term>Application setting</term>
            			<description>Maps to</description>
            		</listheader>
            		<item>
            			<term>Telerik.StyleSheetManager.TelerikCdn</term>
            			<description>StyleSheetManager.CdnSettings.TelerikCdn</description>
            		</item>
            		<item>
            			<term>Telerik.StyleSheetManager.TelerikCdn.BaseUrl</term>
            			<description>StyleSheetManager.CdnSettings.BaseUrl</description>
            		</item>
            		<item>
            			<term>Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl</term>
            			<description>StyleSheetManager.CdnSettings.BaseSecureUrl</description>
            		</item>
            	</list>
            	
            	<para>
            	For example:
            	</para>
            	
            	<para>
            		&lt;appSettings&gt;&lt;br /&gt;
            		&lt;add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled" /&gt;&lt;br /&gt;
            		&lt;add key="Telerik.StyleSheetManager.TelerikCdn.BaseUrl" value="http://myserver" /&gt;&lt;br /&gt;
            		&lt;add key="Telerik.StyleSheetManager.TelerikCdn.BaseSecureUrl" value="https://myserver" /&gt;&lt;br /&gt;
            		&lt;/appSettings&gt;&lt;br /&gt;
            	</para>
            	
            	<para>
            	<strong>Note:</strong>
            	Ensure that your customers have unlimited access to the <strong>telerikstatic.com</strong> domain before turning on this feature.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.StyleSheetCdnSettings.BaseUrl">
            <summary>
            Gets or sets the base URL of the CDN that hosts the control skins.
            </summary>
            <value>
            The base URL of the CDN for HTTP connections. The default value is <strong>http://aspnet-skins.telerikstatic.com</strong>
            </value>
            <remarks>
            	<para>
            	In order to obtain the URL for a specific resource, RadStyleSheetManager will combine the
            	base URL with the suite name (ajax) and the current version.
            	For example: http://aspnet-skins.telerikstatic.com/ajax/2009.3.1207/Default/Menu.Default.css
            	</para>
            	
            	<para>
            	If the browser supports it, the RadScriptManager will serve a gzip compressed version from the "ajaxz" folder.
            	</para>
            
            	See <see cref="P:Telerik.Web.UI.StyleSheetCdnSettings.TelerikCdn">TelerikCdn</see> for detailed description of the Telerik CDN network.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.StyleSheetCdnSettings.BaseSecureUrl">
            <summary>
            Gets or sets the base secure (HTTPS) URL of the CDN that hosts the control skins.
            </summary>
            <value>
            The base secure (HTTPS) URL of the CDN for HTTP connections. The default value is <strong>https://d35islomi5rx1v.cloudfront.net</strong>
            </value>
            <remarks>
            	<para>
            	The BaseSecureUrl will be used when the page is served over a secure connection.
            	</para>
            
            	<para>
            	In order to obtain the URL for a specific resource, RadStyleSheetManager will combine the
            	base URL with the suite name (ajax) and the current version.
            	For example: https://d35islomi5rx1v.cloudfront.net/ajax/2009.3.1207/Default/Menu.Default.css
            	</para>
            	
            	<para>
            	If the browser supports it, the RadStyleSheetManager will serve a gzip compressed version from the "ajaxz" folder.
            	</para>
            
            	See <see cref="P:Telerik.Web.UI.StyleSheetCdnSettings.TelerikCdn">TelerikCdn</see> for detailed description of the Telerik CDN network.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.OutputCompression">
            <summary>
            Defines the output compression mode of the Telerik.Web.UI.WebResource.axd handler.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.OutputCompression.Disabled">
            <summary>
            The compression is disabled (raw content is output to the browser).
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.OutputCompression.AutoDetect">
            <summary>
            Compression is identified by the browser and its version.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.OutputCompression.Forced">
            <summary>
            Output is always compressed.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.DefaultSiteMapLevelSetting">
            <summary>
            Specialized class for the RadSiteMap.DefaultLevelSettings.
            Removes the Level property from the property grid and IntelliSense.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.Level">
            <summary>
            Gets or sets the level to which a given LevelSetting refer/
            </summary>
            <value>
            The Level property serves for explicitly setting the level to which a given 
            LevelSetting refer.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.Layout">
             <summary>
             Gets or sets the layout mode that is applied to a given LevelSetting. By default is set to List
             </summary>
            <example>
             	<code lang="CS" title="[New Example]">
              levelSetting.LayoutMode = SiteMapLayout.List;
              levelSetting.LayoutMode = SiteMapLayout.Flow;
                 </code>
             	<code lang="VB" title="[New Example]">
              levelSetting.LayoutMode = SiteMapLayout.List
              levelSetting.LayoutMode = SiteMapLayout.Flow
                 </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.MaximumNodes">
            <summary>
            Gets or sets the maximum nodes that are allowed for a given level. 
            </summary>
            <value>
            Use the MaximumNodes property to explicitly state how many nodes should be rendered
            for a given level. 
                <remarks>
                Redundant nodes are sliced. If MaximumNodes is set to a value larger
                than the nodes count, all of the nodes will be rendered.
                </remarks>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.Width">
            <summary>
            Gets or sets the width of the specified level.
            </summary>
            <value>
            A <see cref="T:System.Web.UI.WebControls.Unit">Unit</see> specifying width of the specified level. The
            default value is <strong>Unit.Empty</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.SeparatorText">
            <summary>
            Gets or sets the separator text that is going to be used to separate 
            nodes in Flow layout mode. 
            </summary>
            <value>
            A string value that is used to separate nodes when the LevelSetting layout mode is set to Flow.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.ImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed next to all the nodes of a given level
            </summary>
            <value>
            	The URL to the image to display for all the nodes of a given level. The default value is empty
            	string which means by default no image is displayed.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	displayed before the text of the current node.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.NodeTemplate">
             <summary>Gets or sets the template for displaying the nodes on the specified level.</summary>
             <value>
             	<para>
            		An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            		(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            		</para>
             	<para>
                     To specify template for a single node use the <see cref="P:Telerik.Web.UI.RadSiteMapNode.NodeTemplate"/> property of 
            			the <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> control.
                 </para>
             </value>
             <example>
             	<para>The following template demonstrates how to add an Image control in certain
                 node.</para>
             	<para>ASPX:</para>
            		<para>
            &lt;telerik: RadSiteMap runat="server" ID="RadSiteMap1"&gt;
                 &lt;DefaultLevelSettings&gt;
                     &lt;NodeTemplate&gt;
                         &lt;asp:Image ID="Image1" runat="server" ImageUrl="MyImage.gif"&gt;&lt;/asp:Image&gt;
                     &lt;/NodeTemplate&gt;
                 &lt;/DefaultLevelSettings&gt;
            &lt;/telerik:RadSiteMap&gt;
            		</para>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapLevelSetting.SeparatorTemplate">
             <summary>Gets or sets the separator template for nodes on the specified level.</summary>
             <value>
             	<para>
            		An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            		(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            		</para>
             	<para>
                     To specify separator template for a single node use the <see cref="P:Telerik.Web.UI.RadSiteMapNode.SeparatorTemplate"/> property of 
            			the <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> control.
                 </para>
            		<para>
            			The separator is rendered only in <see cref="F:Telerik.Web.UI.SiteMapLayout.Flow">Flow</see> mode.
            		</para>
             </value>
             <example>
             	<para>The following template demonstrates how to add custom separator to a certain node.</para>
             	<para>ASPX:</para>
            		<para>
            &lt;telerik: RadSiteMap runat="server" ID="RadSiteMap1"&gt;
                 &lt;DefaultLevelSettings&gt;
                      &lt;SeparatorTemplate&gt;
                          &lt;asp:Image ID="Image1" runat="server" ImageUrl="MySeparator.gif"&gt;&lt;/asp:Image&gt;
                      &lt;/SeparatorTemplate&gt;
                 &lt;/DefaultLevelSettings&gt;
            &lt;/telerik:RadSiteMap&gt;
            		</para>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.DefaultSiteMapLevelSetting.Level">
            <summary>
            Not applicable to DefaultSiteMapLevelSetting
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SiteMapLayout">
            <summary>
            Specifies the layout mode of <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> nodes.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SiteMapLayout.List">
            <summary>
            Nodes are rendered as a list in one or more columns.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SiteMapLayout.Flow">
            <summary>
            Nodes are rendered horizontally to fill the available width. Nodes automatically wrap.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.SiteMapRepeatDirection">
            <summary>
            Specifies the repeat direction of <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> columns.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SiteMapRepeatDirection.Vertical">
            <summary>
            Nodes are displayed vertically in columns from top to bottom, 
            and then left to right, until all nodes are rendered.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.SiteMapRepeatDirection.Horizontal">
            <summary>
            Nodes are displayed horizontally in rows from left to right, 
            then top to bottom, until all nodes are rendered.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNode">
            <summary>Represents a node in the <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> control.</summary>
            <remarks>
            	<para>
            		The <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> control is made up of nodes. Nodes which are immediate children
            		of the control are root nodes. Nodes which are children of other nodes are child nodes.
            	</para>
            	<para>
            		A node usually stores data in two properties, the <see cref="P:Telerik.Web.UI.RadSiteMapNode.Text">Text</see> property and 
            		the <see cref="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">NavigateUrl</see> property.
            	</para>
            	<para>To create nodes, use one of the following methods:</para>
            	<list type="bullet">
            		<item>
            			Data bind the <b>RadSiteMap</b> control to a data source,
            			for example <see cref="T:System.Web.UI.WebControls.SiteMapDataSource">SiteMapDataSource</see>.
            		</item>
            		<item>
            			Use declarative syntax to define nodes inline in your page or user control.
            		</item>
            		<item>
            			Use one of the constructors to dynamically create new instances of the
            			<see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> class. These nodes can then be added to the
            			<b>Nodes</b> collection of another node or site map.
            		</item>
            	</list>
            	<para>
                    When the user clicks a node, the <b>RadSiteMap</b> control navigates
                    to the linked Web page. By default, a linked page
                    is displayed in the same window or frame. To display the linked content in a different 
            		window or frame, use the <see cref="P:Telerik.Web.UI.RadSiteMapNode.Target">Target</see> property.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNode.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add node to
                <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> controls. 
                <code lang="CS">
            		RadSiteMapNode node = new RadSiteMapNode();
            		node.Text = "News";
            		node.NavigateUrl = "~/News.aspx";
             
            		RadSiteMap1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadSiteMapNode()
            		node.Text = "News"
            		node.NavigateUrl = "~/News.aspx"
             
            		RadSiteMap1.Nodes.Add(node)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNode.#ctor(System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> class with the
                specified text, value and URL.
            </summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> class using the specified text, value and URL.
            </remarks>
            <example>
                This example demonstrates how to add nodes to <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see>
                control. 
                <code lang="CS">
            		RadSiteMapNode node = new RadSiteMapNode("News", "~/News.aspx");
             
            		RadSiteMap1.Nodes.Add(node);
                </code>
            	<code lang="VB">
            		Dim node As New RadSiteMapNode("News", "~/News.aspx")
             
            		RadSiteMap1.Nodes.Add(node)
                </code>
            </example>
            <param name="text">
                The text of the node. The <see cref="P:Telerik.Web.UI.RadSiteMapNode.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="navigateUrl">
                The url which the node will navigate to. The
                <see cref="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">NavigateUrl</see> property is set to the value of this
                parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNode.Remove">
            <summary>
            Removes the node from the Nodes collection of its parent
            </summary>
            <example>
            The following example demonstrates how to remove a node.
                <code lang="CS">
            		RadSiteMapNode node = RadSiteMap1.Nodes[0];
            		node.Remove();
                </code>
            	<code lang="VB">
            		Dim node As RadSiteMapNode = RadSiteMap1.Nodes(0)
            		node.Remove()
                </code>		
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Text">
            <summary>
            	Gets or sets the text displayed for the current node.
            </summary>
            <value>
            	The text displayed for the node in the <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> control. The default is empty string.
            </value>
            <remarks>
            	Use the <b>Text</b> property to specify or determine the text that is displayed for the node
            	in the <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">
            <summary>
            	Gets or sets the URL to navigate to when the current node is clicked.
            </summary>
            <value>
            	The URL to navigate to when the node is clicked. The default value is empty string which means that
            	clicking the current node will not navigate.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Target">
            <summary>
            	Gets or sets the target window or frame in which to display the Web page content associated with the current node.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the node is
                clicked. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without frames.</description>
            			</item>
            		</list>
            	</para>
            	The default value is empty string which means the linked resource will be loaded in the current window.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to target window or frame in which to display the 
            		Web page content associated with the current node. The Web page is specified by
                    the <see cref="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>
            		If this property is not set, the Web page specified by the
            		<see cref="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">NavigateUrl</see> property is loaded in the current window.
            	</para>
            	<para>
            		The <b>Target</b> property is taken into consideration only when the <see cref="P:Telerik.Web.UI.RadSiteMapNode.NavigateUrl">NavigateUrl</see> 
            		property is set.
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <b>Target</b> property 
                <para>
            		<para class="sourcecode">
            		&lt;telerik:RadSiteMap id="RadSiteMap1" runat="server"&gt;<br/>
                    &lt;Nodes&gt;<br/>
                    &lt;telerik:RadSiteMapNode Text="News" NavigateUrl="~/News.aspx"
                    <strong>Target="_self"</strong> /&gt;<br/>
                    &lt;telerik:RadSiteMapNode Text="External URL" NavigateUrl="http://www.example.com"
                    <strong>Target="_blank"</strong> /&gt;<br/>
                    &lt;/Nodes&gt;<br/>
                    &lt;/telerik:RadSiteMap&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Value">
            <summary>
            	Gets or sets custom (user-defined) data associated with the current node.
            </summary>
            <value>
            	A string representing the user-defined data. The default value is emptry string.
            </value>
            <remarks>
            	Use the <b>Value</b> property to associate custom data with a <see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see> object. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.ToolTip">
            <summary>
            Gets or sets the tooltip shown for the node when the user hovers it with the mouse
            </summary>
            <value>
            A string representing the tooltip. The default value is empty string.
            </value>
            <remarks>
            	The ToolTip property is also used as the alt attribute of the node image (in case <see cref="P:Telerik.Web.UI.RadSiteMapNode.ImageUrl"/> is set)
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Enabled">
            <summary>
            	Gets or sets a value indicating whether the node is enabled.
            </summary>
            <value>
            	<c>true</c> if the node is enabled; otherwise <c>false</c>. The default value is <c>true</c>.
            </value>
            <remarks>
            	Disabled nodes cannot be clicked, or expanded.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.DataItem">
            <summary>Gets the data item that is bound to the node</summary>
            <value>
            	An Object that represents the data item that is bound to the node. The default value is null (Nothing in Visual Basic), 
            	which indicates that the node is not bound to any data item. The return value will always be null unless accessed within
            	a <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound">NodeDataBound</see> event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound">NodeDataBound</see> event to perform additional
                mapping of fields from the data item to <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> properties. It assumes the user has subscribed to the
                <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound">NodeDataBound</see> event. 
                <code lang="CS">
            		private void RadSiteMap1_NodeDataBound(object sender, Telerik.Web.UI.RadSiteMapNodeEventArgs e)
            		{
            			e.Node.ImageUrl = "image" + (string)DataBinder.Eval(e.Node.DataItem, "ID") + ".gif";
            			e.Node.NavigateUrl = (string)DataBinder.Eval(e.Node.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadSiteMap1_NodeDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadSiteMapNodeEventArgs ) Handles RadSiteMap1.NodeDataBound
            			e.Node.ImageUrl = "image" &amp; DataBinder.Eval(e.Node.DataItem, "ID") &amp; ".gif"
            			e.Node.NavigateUrl = CStr(DataBinder.Eval(e.Node.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.CssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied by default to the node.
            </summary>
            <remarks>
            By default the visual appearance of hovered nodes is defined in the skin CSS
            file. You can use the <strong>CssClass</strong> property to specify unique
            appearance for the node.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.HoveredCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the node when the mouse hovers it.
            </summary>
            <remarks>
            By default the visual appearance of hovered nodes is defined in the skin CSS
            file. You can use the <strong>HoveredCssClass</strong> property to specify unique
            appearance for a node when it is hoevered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the node when it is disabled.
            </summary>
            <remarks>
            By default the visual appearance of disabled nodes is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for a node when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.SelectedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when node is
            selected.
            </summary>
            <remarks>
            By default the visual appearance of selected nodes is defined in the skin CSS
            file. You can use the <strong>SelectedCssClass</strong> property to specify unique
            appearance for a node when it is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.ImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed next to the text of a node.
            </summary>
            <value>
            	The URL to the image to display for the node. The default value is empty
            	string which means by default no image is displayed.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	displayed before the text of the current node.
            </remarks>
            <example>
            	<para>
            		The following example demonstrates how to specify the image to display for
            		the node using the <b>ImageUrl</b> property.
            	</para>
                <para class="sourcecode">
               		 &lt;telerik:RadSiteMap id="RadSiteMap1" runat="server"&gt;<br/>
               		  &lt;Nodes&gt;<br/>
               		  &lt;telerik:RadSiteMapNode<strong>ImageUrl="~/Img/inbox.gif"</strong>
               		 Text="Index"&gt;&lt;/telerik:RadSiteMapNode&gt;<br/>
               		  &lt;telerik:RadSiteMapNode<strong>ImageUrl="~/Img/outbox.gif"</strong>
               		 Text="Outbox"&gt;&lt;/telerik:RadSiteMapNode&gt;<br/>
               		  &lt;telerik:RadSiteMapNode<strong>ImageUrl="~/Img/trash.gif"</strong>
               		 Text="Trash"&gt;&lt;/telerik:RadSiteMapNode&gt;<br/>
               		  &lt;telerik:RadSiteMapNode<strong>ImageUrl="~/Img/meetings.gif"</strong>
               		 Text="Meetings"&gt;&lt;/telerik:RadSiteMapNode&gt;<br/>
               		  &lt;/Nodes&gt;<br/>
               		 &lt;/telerik:RadSiteMap&gt;
                </para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.HoveredImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is hovered with the mouse.
            </summary>
            <remarks>
            If the <c>HoveredImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadSiteMapNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.DisabledImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is disabled.
            </summary>
            <remarks>
            If the <c>DisabledImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadSiteMapNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.SelectedImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is selected.
            </summary>
            <remarks>
            If the <c>SelectedImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadSiteMapNode.ImageUrl">ImageUrl</see> property will be 
            used when the node is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Level">
            <summary>
            Gets the level of the node.
            </summary>
            <value>
            An integer representing the level of the node. Root nodes are level 0 (zero).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Nodes">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/> object that contains the child nodes of the current RadSiteMapNode.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/> that contains the child nodes of the current RadSiteMapNode. By default
            	the collection is empty (the node has no children).
            </value>
            <remarks>
            	Use the <b>Nodes</b> property to access the child nodes of the RadSiteMapNode. You can also use the <b>Nodes</b> property to
            	manage the child nodes - you can add, remove or modify nodes.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of a child node.
                <code lang="CS">
            		RadSiteMapNode node = RadSiteMap1.FindNodeByText("Test");
            		node.Nodes[0].Text = "Example";
            		node.Nodes[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		Dim node As RadSiteMapNode = RadSiteMap1.FindNodeByText("Test")
            		node.Nodes(0).Text = "Example"
            		node.Nodes(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.SiteMap">
            <summary>
            Gets the <see cref="T:Telerik.Web.UI.RadSiteMap"/> which this node belongs to.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.UI.RadSiteMap"/> which this node belongs to;
            null (Nothing) if the node is not added to any <see cref="T:Telerik.Web.UI.RadSiteMap"/> control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.Selected">
            <summary>
            Gets or sets a value indicating whether the node is selected.
            </summary>
            <value>
            <c>True</c> if the node is selected; otherwise <c>false</c>. The default value is
            <c>false</c>.
            </value>
            <remarks>
            Only one node can be selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.NodeTemplate">
             <summary>Gets or sets the template for displaying the node.</summary>
             <value>
             	<para>
            		An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            		(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            		</para>
             	<para>
                     To specify common display for all nodes use the
            			<see cref="P:Telerik.Web.UI.SiteMapLevelSetting.NodeTemplate">RadSiteMap.DefaultLevelSettings.NodeTemplate</see> property.
                 </para>
             </value>
             <example>
             	<para>The following template demonstrates how to add an Image control in certain
                 node.</para>
             	<para>ASPX:</para>
            		<para>
            &lt;telerik: RadSiteMap runat="server" ID="RadSiteMap1"&gt;
                &lt;Nodes&gt;
                    &lt;telerik:RadSiteMapNode Text="Root Node" &gt;
                        &lt;Nodes&gt;
                            &lt;telerik:RadSiteMapNode&gt;
                                &lt;NodeTemplate&gt;
                                    &lt;asp:Image ID="Image1" runat="server" ImageUrl="MyImage.gif"&gt;&lt;/asp:Image&gt;
                                &lt;/NodeTemplate&gt;
                            &lt;/telerik:RadSiteMapNode&gt;
                        &lt;/Nodes&gt;
                    &lt;/telerik:RadSiteMapNode&gt;
                &lt;/Nodes&gt;
            &lt;/telerik:RadSiteMap&gt;
            		</para>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.SeparatorTemplate">
             <summary>Gets or sets the separator template for the node.</summary>
             <value>
             	<para>
            		An object implementing the <strong>ITemplate</strong> interface. The default value is a null reference 
            		(<b>Nothing</b> in Visual Basic), which indicates that this property is not set.
            		</para>
             	<para>
                     To specify common display for all nodes use the
            			<see cref="P:Telerik.Web.UI.SiteMapLevelSetting.SeparatorTemplate">RadSiteMap.DefaultLevelSettings.SeparatorTemplate</see> property.
                 </para>
            		<para>
            			The separator is rendered only in <see cref="F:Telerik.Web.UI.SiteMapLayout.Flow">Flow</see> mode.
            		</para>
             </value>
             <example>
             	<para>The following template demonstrates how to add custom separator to a certain node.</para>
             	<para>ASPX:</para>
            		<para>
            &lt;telerik: RadSiteMap runat="server" ID="RadSiteMap1"&gt;
                &lt;Nodes&gt;
                    &lt;telerik:RadSiteMapNode Text="Root Node" &gt;
                        &lt;Nodes&gt;
                            &lt;telerik:RadSiteMapNode&gt;
                                &lt;SeparatorTemplate&gt;
                                    &lt;asp:Image ID="Image1" runat="server" ImageUrl="MySeparator.gif"&gt;&lt;/asp:Image&gt;
                                &lt;/SeparatorTemplate&gt;
                            &lt;/telerik:RadSiteMapNode&gt;
                        &lt;/Nodes&gt;
                    &lt;/telerik:RadSiteMapNode&gt;
                &lt;/Nodes&gt;
            &lt;/telerik:RadSiteMap&gt;
            		</para>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNode.ParentNode">
            <summary>
            Gets the parent node of the current node.
            </summary>
            <value>
            The parent node. If the the node is a root node null (Nothing) is returned.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNodeEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound"/> and <see cref="E:Telerik.Web.UI.RadSiteMap.NodeCreated"/> events.
            of the <see cref="T:Telerik.Web.UI.RadSiteMap"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNodeEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadSiteMap.NodeDataBound"/>, <see cref="E:Telerik.Web.UI.RadSiteMap.NodeCreated"/> events of the
            <see cref="T:Telerik.Web.UI.RadSiteMap"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeEventArgs.#ctor(Telerik.Web.UI.RadSiteMapNode)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadSiteMapNodeEventArgs"/> class.
            </summary>
            <param name="node">The referenced node.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeEventArgs.Node">
            <summary>
            Gets or sets the referenced node in the <see cref="T:Telerik.Web.UI.RadSiteMap"/> control when the event is raised.
            </summary>
            <value>The referenced node in the <see cref="T:Telerik.Web.UI.RadSiteMap"/> control when the event is raised.</value>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNodeBindingCollection">
            <summary>
            	Defines the relationship between a data item and the RadSiteMap node it is binding to in a 
            	<see cref="T:Telerik.Web.UI.RadSiteMap">RadSiteMap</see>control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBindingCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadSiteMapNodeBinding"/> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadSiteMapNodeBindingCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadSiteMapNodeBinding"/> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadSiteMapNodeBinding"/> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadSiteMapNodeBindingCollection"/>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNodeCollection">
            <summary>
            Represents a collection of <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> objects in a <see cref="T:Telerik.Web.UI.RadSiteMap"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/> class.
            </summary>
            <param name="parent">The parent <see cref="T:Telerik.Web.UI.RadSiteMap"/> control.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.Add(Telerik.Web.UI.RadSiteMapNode)">
            <summary>
            Appends a node to the collection.
            </summary>
            <param name="node">The node to add to the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadSiteMapNode})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple nodes in a single step. 
                <code lang="CS">
            		RadSiteMapNode[] nodes = new RadSiteMapNode[] { new RadSiteMapNode("First"), new RadSiteMapNode("Second"), new RadSiteMapNode("Third") };
            		RadSiteMap1.Nodes.AddRange(nodes);
                </code>
            	<code lang="VB">
                    Dim nodes() As RadSiteMapNode = {New RadSiteMapNode("First"), New RadSiteMapNode("Second"), New RadSiteMapNode("Third")}
                    RadSiteMap1.Nodes.AddRange(nodes)
                </code>
            </example>
            <param name="nodes">
                The array of <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadSiteMapNodeCollection"/>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.Insert(System.Int32,Telerik.Web.UI.RadSiteMapNode)">
            <summary>
            Inserts a node to the collection at the specified index.
            </summary>
            <param name="index">The zero-based index at which <paramref name="node"/> should be inserted.</param>
            <param name="node">The node to insert into the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.Remove(Telerik.Web.UI.RadSiteMapNode)">
            <summary>
            Removes the specified node from the collection.
            </summary>
            <param name="node">The node to remove from the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.FindNodeByText(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</cee> with a <see cref="P:Telerik.Web.UI.RadSiteMapNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadSiteMapNode</c> whose <c>Text</c> property equals to the specified argument.
            Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.FindNodeByText(System.String,System.Boolean)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</cee> with a <see cref="P:Telerik.Web.UI.RadSiteMapNode.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadSiteMapNode</c> whose <c>Text</c> property equals to the specified argument
             Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSiteMapNodeCollection.FindNode(System.Predicate{Telerik.Web.UI.RadSiteMapNode})">
            <summary>
            Returns  the first <strong>RadSiteMapNode</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindNode</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadSiteMap1.FindNode(NodeWithEqualsTextAndValue);
            }
            private static bool NodeWithEqualsTextAndValue(RadSiteMapNode node)
            {
                if (node.Text == node.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadSiteMap1.FindNode(NodeWithEqualsTextAndValue)
            End Sub
            Private Shared Function NodeWithEqualsTextAndValue(ByVal node As RadSiteMapNode) As Boolean
                If node.Text = node.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;RadSiteMapNode&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeCollection.Item(System.Int32)">
            <summary>
            Gets or sets the <see cref="T:Telerik.Web.UI.RadSiteMapNode"/> at the specified index.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSiteMapNodeBinding">
            <summary>
            	Represents the simple binding between the property value of an object and the property value of a
            	<see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.DisabledCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadSiteMapNode.DisabledCssClass">DisabledCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.DisabledCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadSiteMapNode.DisabledCssClass">DisabledCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.DisabledImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadSiteMapNode.DisabledImageUrl">DisabledImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.DisabledImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadSiteMapNode.DisabledImageUrl">DisabledImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.HoveredCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadSiteMapNode.HoveredCssClass">HoveredCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSiteMapNodeBinding.HoveredCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadSiteMapNode.HoveredCssClass">HoveredCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadSiteMapNode">RadSiteMapNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapListLayoutSetting.RepeatColumns">
            <summary>
            Gets or sets the number of columns to display on this level.
            </summary>
            <remarks>
            Specifies the number of columns which are displayed for a given level. For example, 
            if it set to 3, the nodes in the level are displayed in three columns.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.SiteMapListLayoutSetting.RepeatDirection">
            <summary>
            Gets or sets whether the columns are repeated vertically or horizontally
            </summary>
            <remarks>
            <para>When this property is set to <see cref="F:Telerik.Web.UI.SiteMapRepeatDirection.Vertical">Vertical</see>, 
            nodes are displayed vertically in columns from top to bottom, 
            and then left to right, until all nodes are rendered.
            </para>
            <para>
            When this property is set to <see cref="F:Telerik.Web.UI.SiteMapRepeatDirection.Horizontal">Horizontal</see>,
            nodes are displayed horizontally in rows from left to right, 
            then top to bottom, until all nodes are rendered.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSkinManager.ShowChooser">
            <summary>
            Gets or sets a value indicating whether Skin chooser should be rendered in run-time.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSkinManager.Enabled">
            <summary>
            Gets or sets a value indicating whether skinning should be enabled or not.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSkinManager.Skin">
            <summary>
            "Specifies the skin that will be used by the control"
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSkinManager.PersistenceMode">
            <summary>
            Specifies the skin manager persistance mode.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSkinManager.TargetControls">
            <summary>
            Gets a collection of TargetControl objects that allows for specifying the objects for which tooltips will be created on the client-side.
            </summary>
            <value>
            Gets a collection of TargetControl objects that allows for specifying the objects for which tooltips will be created on the client-side.
            </value>
            <remarks>
            Use the TargetControls collection to programmatically control which objects should be tooltipified on the client-side. 
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadSliderItem">
            <summary>
            RadSliderItem  class.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.Text">
            <summary>Gets or sets the text caption for the slider item.</summary>
            <value>The text of the item. The default value is empty string.</value>        
            <remarks>
            Use the <strong>Text</strong> property to specify the text to display for the
            item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.Value">
            <summary>Gets or sets the value  for the slider item.</summary>
            <value>The value of the item. The default value is empty string.</value>        
            <remarks>
            Use the <strong>Value</strong> property to specify the value 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.Owner">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadSlider">RadSlider</see> instance which contains the current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.SliderParent">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadSlider">RadSlider</see> instance which contains the current item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.Selected">
            <summary>Gets the selected state of the slider item.</summary>       
            <remarks>
            Use the <strong>Selected</strong> property to determine whether the item is selected or not.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItem.ToolTip">
            <summary>Gets or sets the tooltip of the slider item.</summary>
        </member>
        <member name="T:Telerik.Web.UI.RadSliderItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadSlider">RadSlider</see> control.
            </summary>
            <remarks>
            	The <strong>RadSliderItemCollection</strong> class represents a collection of
                <strong>RadSliderItem</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadSliderItemCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadSliderItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of slider items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadSliderItemCollection.Add(Telerik.Web.UI.RadSliderItem)">Add</see> method to add items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadSliderItemCollection.Remove(Telerik.Web.UI.RadSliderItem)">Remove</see> method to remove items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.Add(Telerik.Web.UI.RadSliderItem)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object to the end of the current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> to append to the end of the current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.FindItemByText(System.String)">
            <summary>
            Finds the first <strong>RadSliderItem</strong> with <strong>Text</strong> that
            matches the given text value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadSliderItem</strong> that matches the
            specified text value.</font>
            </returns>
            <param name="text">The string to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.FindItemByValue(System.String)">
            <summary>
            Finds the first <strong>RadSliderItem</strong> with <strong>Value</strong> that
            matches the given value.
            </summary>
            <returns>
            	<font size="1">The first <strong>RadSliderItem</strong> that matches the
            specified value.</font>
            </returns>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.FindItemByAttribute(System.String,System.String)">
            <summary>
            Searches the items in the collection for a <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadSliderItem</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.Contains(Telerik.Web.UI.RadSliderItem)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadSliderItem})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="items">
                The array of <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> to append to the end of the current 
            <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.IndexOf(Telerik.Web.UI.RadSliderItem)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object in the collection.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> to locate.
            </param>
            <returns>
            	The zero-based index of item within the current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.Insert(System.Int32,Telerik.Web.UI.RadSliderItem)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see>.</param>
            <param name="item">The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.Remove(Telerik.Web.UI.RadSliderItem)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadSliderItemCollection.Remove(System.Int32)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the index to remove.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadSliderItemCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadSliderItem">RadSliderItem</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadSliderItemCollection">RadSliderItemCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.RadSpell">
            <summary>
            Telerik RadSpell
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadSpell.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.TagKey">
            <summary>
            Gets the <see cref="T:System.Web.UI.HtmlTextWriterTag"></see> value that corresponds to this Web server control. This property is used primarily by control developers.
            </summary>
            <value></value>
            <returns>One of the <see cref="T:System.Web.UI.HtmlTextWriterTag"></see> enumeration values.</returns>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.HandlerUrl">
            <summary>
            Gets or sets the URL for the spell dialog handler
            </summary>
            <value>the relative path for the spell dialog handler </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DialogsCssFile">
            <summary>
            Gets or sets the location of a CSS file, that will be added in the dialog window. If you need to include 
            more than one file, use the CSS @import url(); rule to add the other files from the first.
            <remarks>This property is needed if you are using a custom skin. It allows you to include your custom skin
            CSS in the dialogs, which are separate from the main page.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DialogsScriptFile">
            <summary>
            Gets or sets the location of a JavaScript file, that will be added in the dialog window. If you need to include 
            more than one file, you will need to combine the scripts into one first.
            <remarks>This property is needed if want to override some of the default functionality without loading the dialog
            from an external ascx file.</remarks>
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.AdditionalQueryString">
            <summary>
            Gets or sets an additional querystring appended to the dialog URL.
            </summary>
            <value>A <strong>String</strong>, appended to the dialog URL</value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.AllowAddCustom">
            <summary>Gets or sets the value indicating whether the spell will allow adding custom words.</summary>
            <value>The default is <b>true</b></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.AjaxUrl">
            <summary>
            Gets or sets the URL which the AJAX call will be made to. Check the help for more information.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.ButtonText">
            <summary>Gets or sets the text of the button that will start the spellcheck. This property is localizable.</summary>
            <value>The default is <b>Spell Check</b></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.ButtonType">
            <summary>Gets or sets the type of the button that will start the spellcheck.</summary>
            <value>The default is <b>PushButton</b></value>
            <remarks>
            	<para>Values allowed:
                <strong>PushButton</strong>/<strong>LinkButton</strong>/<strong>ImageButton</strong>/<strong>
                None.</strong></para>
            	<para>Setting the value to <strong>None</strong> will not render a button. The only
                way to start a spellcheck will be through the client-side API.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.ClientTextSource">
             <summary>Gets or sets the class of the client side text source object.</summary>
             <value>
             A <strong>string</strong> containing the name of the JavaScript class. The
             default is <b>HtmlElementTextSource</b> -- a built in implementation that obtains the
             source from a HTML element.
             </value>
             <remarks>
             The text source is a JavaScript object.  It has to provide two methods: GetText() and SetText(newValue).
             </remarks>
             <example>
             <code lang="JScript" title="Different controls text source">
             &lt;script type="text/javascript"&gt;
             function DifferentControlsSource()
             {
                 this.GetText = function()
                 {
                     return document.getElementById('before').value;
                 }
            
                 this.SetText = function(newValue)
                 {
                     document.getElementById('after').value = newValue;
                 }
             }
             &lt;/script&gt;
             </code>
             </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.ControlToCheck">
            <summary>
            	The ID of the control to check.
            </summary>
            <remarks>
            The ID can be both a server-side ID, or a client-side ID. RadSpell will find the
            appropriate server control and use its ClientID to attach to it.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.ControlsToCheck">
            <summary>
            	An array of IDs of the control to check.
            </summary>
            <remarks>
            The IDs can be server-side or client-side. RadSpell will find the
            appropriate server control and use its ClientID to attach to it.
            Note that you cannot mix server and client IDs in this list - use only one kind.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.CustomDictionarySourceTypeName">
            <summary>
            Gets or sets the fully qualified type name that will be used to store and read
            the custom dictionary.
            </summary>
            <remarks>
                The type name must be fully qualified if the type is in a GAC-deployed assembly.
                The type must implement the
                <see cref="T:Telerik.Web.UI.Dictionaries.ICustomDictionarySource">ICustomDictionarySource</see>
                interface.
            </remarks>
            <example>
            	<code lang="CS" title="C#">
            spell1.CustomDictionarySourceTypeName = "RadSpellExtensions.CustomDictionarySource, RadSpellExtensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b5e57ccb698eab8e";
                </code>
            	<code lang="VB" title="VB">
            spell1.CustomDictionarySourceTypeName = "RadSpellExtensions.CustomDictionarySource, RadSpellExtensions, Version=1.0.0.0, Culture=neutral, PublicKeyToken=b5e57ccb698eab8e"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.CustomDictionarySuffix">
            <summary>Gets or sets the suffix for the custom dictionary files.</summary>
            <value>The default is <b>-Custom</b></value>
            <remarks>
            The filenames are formed with the following scheme: Language + CustomDictionarySuffix +
            ".txt". Different suffixes can be used to create different custom dictionaries for
            different users.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DialogTypeName">
            <summary>Gets or sets the assembly qualified name of the SpellDialog type.</summary>
            <value>The default is <strong>string.Empty</strong></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DialogVirtualPath">
            <summary>Gets or sets the virtual path of the UserControl that represents the SpellDialog.</summary>
            <value>The default is <strong>string.Empty</strong></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DictionaryLanguage">
            <summary>Gets or sets the dictionary language used for spellchecking.</summary>
            <value>The default is <b>en-US</b></value>
            <remarks>
                The language name is used to find a corresponding dictionary file. Spellchecking in
                en-US will work only if a file en-US.TDF can be found inside the folder pointed to
                by <see cref="P:Telerik.Web.UI.RadSpell.DictionaryPath">DictionaryPath</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.DictionaryPath">
            <summary>Gets or sets the path for the dictionary files.</summary>
            <value>The default is <strong>~/RadControls/Spell/TDF/</strong></value>
            <remarks>
            This is the path that contains the TDF files, and the custom dictionary TXT
            files.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.EditDistance">
            <summary>
            Gets or sets a the edit distance. If you increase the value, the checking speed
            decreases but more suggestions are presented. Applicable only in EditDistance mode.
            </summary>
            <value>The default is <b>1</b></value>
            <remarks>
                This property takes effect only if the
                <see cref="P:Telerik.Web.UI.RadSpell.SpellCheckProvider">SpellCheckProvider</see> property is set to
                <strong>EditDistanceProvider</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.FragmentIgnoreOptions">
            <summary>
            Configures the spellchecker engine, so that it knows whether to skip URL's, email
            addresses, and filenames and not flag them as erros.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.IsClientID">
            <summary>
            Gets or sets a value indicating whether whether the ControlToCheck
            property provides a client element ID or a server side control ID.
            </summary>
            <value>The default is <strong>false</strong>.</value>
            <remarks>
                When <strong>true</strong> RadSpell will look for the server-side control and get
                its ClientID. When <strong>false</strong> the
                <see cref="P:Telerik.Web.UI.RadSpell.ControlToCheck">ControlToCheck</see> property will be interpreted as a
                client-side ID and will be used to attach to the target control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.Language">
            <summary>Gets or sets the localization language for the user interface.</summary>
            <value>
            The localization language for the user interface. The default value is
            <strong>en-US</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.SpellChecked">
            <summary>
            Gets a value indicating if the target control has been spellchecked.
            </summary>
            <remarks>
            <para>Spellchecking the entire text by the client would set the property to
                <strong>true</strong> on postback.
            </para>
            <para>The property is used by the SpellCheckValidator class. You can set it on the
                client side with RadSpell's SetSpellChecked(false) on various events, say a
                TEXTAREA's OnChange.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.SpellCheckProviderTypeName">
            <summary>Allows the use of a custom spell checking provider. It must implement the ISpellCheckProvider interface.</summary>
            <value>The default is <b>PhoneticProvider</b></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.SpellCheckProvider">
            <summary>Specifies the spellchecking algorithm which will be used by RadSpell.</summary>
            <value>The default is <b>PhoneticProvider</b></value>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.SupportedLanguages">
            <summary>Gets or sets the supported languages.</summary>
            <remarks>
            The supported languages will be displayed in a drop-down list, and the user can
            select the language for spellchecking.
            </remarks>
            <value>
            A string array containing the codes and names of the languages (code, name, code,
            name...)
            </value>
            <example>
            	<code title="ASPNET">
            &lt;radS:RadSpell ID="spell1"
                Runat="server"
                ControlToCheck="textBox1"
                SupportedLanguages="en-US,English,fr-FR,French"&gt;
            &lt;/radS:RadSpell&gt;
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.WordIgnoreOptions">
            <summary>
            Gets or sets the value used to configure the spellchecker engine to ignore words containing: UPPERCASE, some 
            CaPitaL letters, numbers; or to ignore repeated words (very very)
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.OnClientLoad">
            <summary>
            Gets or sets the name of the client-side function that will be called when the
            spell control is initialized on the page.
            </summary>
            <remarks>
            The function should accept two parameters: sender (the spell client object) and arguments.
            </remarks>
            <example>
            	<code lang="JScript">
            function onSpellLoad(sender, args)
            {
                log("spell: " + sender.get_id() + " ready.");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.OnClientCheckStarted">
            <summary>
            Gets or sets the name of the client-side function that will be called when the
            spell check starts.
            </summary>
            <remarks>
            The function should accept two parameters: sender (the spell client object) and arguments.
            </remarks>
            <example>
            	<code lang="JScript">
            function onCheckStarted(sender, args)
            {
                log("spell: " + sender.clientId + " started for: " + sender.targetControlId);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.OnClientCheckFinished">
            <summary>
            Gets or sets the name of the client-side function that will be called when the
            spell check is finished.
            </summary>
            <remarks>
            The function should accept two parameters: sender (the spell client object) and arguments.
            </remarks>
            <example>
            	<code lang="JScript">
            function onCheckFinished(sender, args)
            {
                log("spell: " + sender.clientId + " finished for: " + sender.targetControlId);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.OnClientCheckCancelled">
            <summary>
            Specifies the name of the client-side function that will be called when the user
            cancels the spell check.
            </summary>
            <remarks>
            The function should accept two parameters: sender (the spell client object) and arguments.
            </remarks>
            <example>
            	<code lang="JScript" title="[New Example]">
            function onCheckCancelled(sender, args)
            {
                log("spell: " + sender.clientId + " cancelled for: " + sender.targetControlId);
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.OnClientDialogClosed">
            <summary>
            Specifies the name of the client-side function that will be called before the
            spell check dialog closes.
            </summary>
            <remarks>
            The function should accept two parameters: sender (the dialog opener client object) and arguments.
            </remarks>
            <example>
            	<code lang="JScript" title="[New Example]">
            function onDialogClosed(sender, args)
            {
                alert("spell: " + sender.get_id()+ " dialog closed");
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.Skin">
            <summary>Gets or sets the skin name for the control user interface.</summary>
            <value>A string containing the skin name for the control user interface. The default is string.Empty.</value>
            <remarks>
            <para>
            If this property is not set, the control will render using the skin named "Default".
            If EnableEmbeddedSkins is set to false, the control will not render skin.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.EnableAjaxSkinRendering">
            <summary>Gets or sets the value, indicating whether to render the skin CSS files during Ajax requests</summary>
            <remarks>
            <para>
            If EnableAjaxSkinRendering is set to false you will have to register the needed control base CSS file by hand when adding/showing the control with Ajax.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.EnableEmbeddedScripts">
            <summary>Gets or sets the value, indicating whether to render links to the embedded client scripts or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedScripts is set to false you will have to register the needed script files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.LocalizationPath">
            <summary>
            Gets or sets a value indicating where the soell will look for its .resx localization files.
            By default these files should be in the App_GlobalResources folder. However, if you cannot put
            the resource files in the default location or .resx files compilation is disabled for some reason 
            (e.g. in a DotNetNuke environment), this property should be set to the location of the resource files.
            </summary>
            <value>
            A relative path to the dialogs location. For example: "~/controls/RadControlsResources/".
            </value>
            <remarks>
            	<para>If specified, the <strong>LocalizationPath</strong>
            property will allow you to load the spell localization files from any location in the current
            web application.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.EnableEmbeddedSkins">
            <summary>Gets or sets the value, indicating whether to render links to the embedded skins or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedSkins is set to false you will have to register the needed CSS files by hand.
            </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadSpell.EnableEmbeddedBaseStylesheet">
            <summary>Gets or sets the value, indicating whether to render the link to the embedded base stylesheet of the control or not.</summary>
            <remarks>
            <para>
            If EnableEmbeddedBaseStylesheet is set to false you will have to register the needed control base CSS file by hand.
            </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.Spell.SpellDialog">
            <summary>
            This class is a container for the Spell Dialog UI
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Spell.SpellDialog.OnLoad(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.Spell.SpellDialog.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.Spell.SpellDialog.CreateChildControls">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.Spell.SpellDialog.OnPreRender(System.EventArgs)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.Spell.SpellDialog.Localization">
            <summary>
            Holds the Spell Localization strings for the RadSpell dialog (loaded from RadSpell.Dialog.resx).
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Spell.SpellDialog.EnableEmbeddedSkins">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.Spell.SpellDialog.LocalizationPath">
            <summary>
            Gets or sets a string containing the localization language for the RadSpell Dialog
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Spell.SpellDialog.Language">
            <summary>
            Gets or sets a string containing the localization language for the RadSpell Dialog
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadStyleSheetManager">
            <summary>
            A control allowing the ability to combine multiple embedded stylesheet references
            into a larger one as a way to reduce the number of files the client must download
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadStyleSheetManager.EnableHandlerDetection">
            <summary>
            	Gets or sets a value indicating if RadStyleSheetManager should check the Telerik.Web.UI.WebResource
            	handler existence in the application configuration file.
            </summary>
            <remarks>
            	When EnableHandlerDetection set to true, RadStyleSheetManager automatically checks if the
            	HttpHandler it uses is registered to the application configuration file and throws
            	an exception if the HttpHandler registration missing. Set this property to false
            	if your scenario uses a file to output the combined skins, or when running in Medium trust.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadStyleSheetManager.EnableStyleSheetCombine">
            <summary>
            Specifies whether or not multiple embedded stylesheet references should be combined into a single file
            </summary>
            <remarks>
            	When EnableStyleSheetCombine set to true, the stylesheet references of the controls
            	on the page are combined to a single file, so that only one &lt;link&gt;
            	tag is output to the page HTML
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadStyleSheetManager.OutputCompression">
            <summary>
            	Specifies whether or not the combined output will be compressed.
            </summary>
            <remarks>
            	<para>In some cases the browsers do not recognize compressed streams (e.g. if IE 6 lacks
            	an update installed). In some cases the Telerik.Web.UI.WebResource handler
            	cannot determine if to compress the stream. Set this property
            	to <see cref="F:Telerik.Web.UI.OutputCompression.Disabled">Disabled</see>
            	if you encounter that problem.</para>
            	<para>The <strong>OutputCompression</strong> property works only when
            	<see cref="P:Telerik.Web.UI.RadStyleSheetManager.EnableStyleSheetCombine">EnableStyleSheetCombine</see> is set to <strong>true</strong>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadStyleSheetManager.HttpHandlerUrl">
            <summary>
            Specifies the URL of the HTTPHandler that combines and serves the stylesheets.
            </summary>
            <remarks>
            	<para>
            		The HTTPHandler should either be registered in the application configuration
            		file, or a file with the specified name should exist at the location, which
            		HttpHandlerUrl points to.
            	</para>
            	<para>
            		If a file is to serve the files, it should inherit the class Telerik.Web.UI.WebResource
            	</para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.MultiPageScrollBars">
            <summary>
            	Specifies the visibility and position of scrollbars in a <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.None">
            <summary>
            No scroll bars are displayed. Overflowing content will be visible.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.Horizontal">
            <summary>
            	Displays only a horizontal scroll bar. The scroll bar is always visible.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.Vertical">
            <summary>
            	Displays only a vertical scroll bar. The scroll bar is always visible.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.Both">
            <summary>
            	Displays both a horizontal and a vertical scroll bar. The scroll bars are always visible.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.Auto">
            <summary>
            	Displays, horizontal, vertical, or both scroll bars as necessary (the content overflows the RadMultiPage boundaries). 
            	Otherwise, no scroll bars are shown.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MultiPageScrollBars.Hidden">
            <summary>
            	No scroll bars are displayed. Overflowing content is clippet at RadMultiPage boundaries.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMultiPageEventArgs">
            <summary>
            	Provides data for the events of the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMultiPageEventArgs.#ctor(Telerik.Web.UI.RadPageView)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadMultiPageEventArgs">RadMultiPageEventArgs</see> class.
            </summary>
            <param name="pageView">
                A <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> which represents a page view in the
                <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPageEventArgs.PageView">
            <summary>
               Gets the referenced page view in the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control when the event is raised.
            </summary>
            <value>
                The referenced page view in the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control when the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the page view referenced in the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadMultiPageEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadMultiPage.PageViewCreated"/> event provided by the <see cref="T:Telerik.Web.UI.RadMultiPage"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.MultiPageClientState">
            <summary>
            	For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadPageView">
            <summary>
                The <b>RadPageView</b> class represents a single page in the
                <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPageView.MultiPage">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control which contains the current RadPageView
            </summary>
            <value>
            	A <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> object which contains the current RadPageView. 
            	Null (Nothing in VB.NET) is returned if the current RadPageView is not added in a RadMultiPage control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPageView.Selected">
            <summary>
            	Gets or sets a value indicating whether the current RadPageView is selected.
            </summary>
            <value>
            	<c>true</c> if the current RadPageView is selected; otherwise
            	<c>false</c>. The default value is <c>false</c>.
            </value>
            <remarks>
            	Use the Selected property to select a RadPageView object. There can be only one selected
            	RadPageView at a time within a <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPageView.Index">
            <summary>
            	Gets the zero-based index of the current RadPageView object.
            </summary>
            <value>
            	The zero-based index of the current RadPageView; -1 will be returned if the current RadPageView object is not added 
            	in a <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPageView.DefaultButton">
            <summary>
             Gets or sets the identifier for the default button that is contained in the RadPageView control.
            </summary>
            <value>
            A string value corresponding to the ID for a button control contained in the RadPageView. 
            The default is an empty string, indicating that the RadPageView does not have a default button.
            </value>
            <remarks>
            Use the DefaultButton property to indicate which button gets clicked when the RadPageView control has focus and the user presses the ENTER key. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPageView.ContentUrl">
            <summary>
            Specifies the URL that will originally be loaded in the
            RadPageView (can be changed on the client).
            </summary>
            <value>The default is an empty string - "".</value>
        </member>
        <member name="T:Telerik.Web.UI.RadMultiPage">
            <summary>
            	A control which contains <see cref="T:Telerik.Web.UI.RadPageView"/> controls. Only one page view can be visible at a time.
            </summary>
            <remarks>
            	RadMultiPage is usually used with RadTabStrip to create paged data entry forms. Use the <see cref="P:Telerik.Web.UI.RadTabStrip.MultiPageID"/>
            	property to associate a RadMultiPage control with RadTabStrip.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadMultiPage.FindPageViewByID(System.String)">
            <summary>
            	Finds a <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> with the specified ID.
            </summary>
            <param name="id">The ID of the RadPageView</param>
            <returns>
            	A <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> with the specified ID. Null (Nothing) is returned if there is no
            	<see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> with the specified ID.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadMultiPage.DescribeComponent(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.SelectedIndex">
            <summary>
            	Gets or sets the index of the selected <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see>.
            </summary>
            <value>
            	The index of the currently selected <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see>. The default value is -1,
            	which means that no <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> is selected.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.PageViews">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadPageViewCollection">RadPageViewCollection</see> that represents the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see>
            	controls int the current RadMultiPage instance.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.RenderSelectedPageOnly">
            <summary>
            	Gets or sets a value indicating whether to render only the currently selected <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see>.
            </summary>
            <value>
            	<c>True</c> if only the current <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> should be rendered; otherwise <c>false</c>.
            	The default value is <c>false</c> which means all pageviews will be rendered.
            </value>
            <remarks>
            	Use the RenderSelectedPageOnly to make the RadMultiPage control render only the selected <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see>.
            	This can save output size because by default all pageviews are rendered. If RenderSelectedPageOnly is set to <c>true</c> 
            	RadMultiPage will make a request to the server in order to change the selected pageview.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.ScrollBars">
            <summary>
            	Gets or sets the visibility and position of scroll bars in the <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </summary>
            <value>
            	One of the <see cref="T:Telerik.Web.UI.MultiPageScrollBars"/> values. The default value is None.
            </value>
            <remarks>
            	Use this property to customize the visibility and position of scroll bars. By default any overflowing content is visible. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.EnableEmbeddedSkins">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.RadMultiPage.Skin">
            <exclude />
            <excludetoc />
        </member>
        <member name="E:Telerik.Web.UI.RadMultiPage.PageViewCreated">
            <summary>
            	Occurs when page views are added programmatically to the RadMultiPage control. It also occurs after postback when
            	the RadMultiPage control recreates its page views from ViewState.
            </summary>
            <example>
                The example below starts by defining a dynamic page view and adding a control (i.e.
                Label) to the new page view. 
                <code lang="CS">
            		protected void Page_Load(object sender, System.EventArgs e)
            		{
            			if (!Page.IsPostBack)
            			{
            				PageView view = new RadPageView();
            				view.ID = "dynamicPageView";
            				RadMultiPage1.PageViews.Add(view);
            			}
            		}
              
            		protected void RadMultiPage1_PageViewCreated(object sender, Telerik.Web.UI.RadMultiPageEventArgs e)
            		{
            			Label l = new Label();
            			l.ID = "dynamicLabel";
            			l.Text = "Programatically created label";
            			e.PageView.Controls.Add(l);
            		}
                </code>
            	<code lang="VB">
            		Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs)
            		    If Not Page.IsPostBack Then
            		        Dim view As PageView = New RadPageView()
            		        view.ID = "dynamicPageView"
            		        RadMultiPage1.PageViews.Add(view)
            		    End If
            		End Sub
            		
            		Protected Sub RadMultiPage1_PageViewCreated(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadMultiPageEventArgs) Handles RadMultiPage1.PageViewCreated
            		    Dim l As New Label()
            		    l.ID = "dynamicLabel"
            		    l.Text = "Programatically created label"
            		    e.PageView.Controls.Add(l)
            		End Sub
            	</code>
            </example>
            <remarks>
            	Use this event when you need to create page views from code behind. Controls added dynamically should be created in 
            	the PageViewCreated event handler.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.TabStripAlign">
            <summary>
            Specifies the alignment of tabs within the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripAlign.Left">
            <summary>
            The Tabs will be aligned to the left.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripAlign.Center">
            <summary>
            The Tabs will be centered in the middle.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripAlign.Right">
            <summary>
            The Tabs will be aligned to the right.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripAlign.Justify">
            <summary>
            The Tabs will be justified.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TabStripOrientation">
            <summary>
            	Specifies the way tabs can be oriented
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripOrientation.HorizontalTop">
            <summary>
            	RadTabStrip is above the content (e.g. RadMultiPage). 
            	Child tabs (if any) are shown below parent tabs.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripOrientation.HorizontalBottom">
            <summary>
            	RadTabStrip is below the content (e.g. RadMultiPage). 
            	Child tabs (if any) are shown above parent tabs.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripOrientation.VerticalRight">
            <summary>
            	RadTabStrip is on the right side of the content (e.g. RadMultiPage). 
            	Child tabs (if any) are shown on the left side of parent tabs.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripOrientation.VerticalLeft">
            <summary>
            	RadTabStrip is on the left side of the content (e.g. RadMultiPage). 
            	Child tabs (if any) are shown on the right side of parent tabs.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TabStripScrollButtonsPosition">
            <summary>
            	The position of the scroll buttons when the <see cref="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">RadTabStrip.ScrollChildren</see>
            	property is set to <c>true</c>.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripScrollButtonsPosition.Left">
            <summary>
            The buttons are to the left of tabs.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripScrollButtonsPosition.Middle">
            <summary>
            The tabs are between the left and right scroll buttons.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TabStripScrollButtonsPosition.Right">
            <summary>
            The buttons are to the right of the tabs.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTabStripEventArgs">
            <summary>
            Provides data for the events of the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTabStripEventArgs.#ctor(Telerik.Web.UI.RadTab)">
            <summary>
                Initializes a new instance of the
                <see cref="T:Telerik.Web.UI.RadTabStripEventArgs">RadTabStripEventArgs</see> class.
            </summary>
            <param name="tab">
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> which represents a tab in the
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadTabStripEventArgs.Tab">
            <summary>
               Gets the referenced tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control when the event is raised.
            </summary>
            <value>
                The referenced tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control when the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the tab referenced in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadTabStripEventHandler">
            <summary>
            Represents the method that handles the events provided by the <see cref="T:Telerik.Web.UI.RadTabStrip"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadPageViewCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> objects in a
                <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> control.
            </summary>
            <remarks>
            	The <strong>RadPageViewCollection</strong> class represents a collection of
                <strong>RadPageView</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadPageViewCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadPageView from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of RadPageView controls in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadPageViewCollection.Add(Telerik.Web.UI.RadPageView)">Add</see> method to add RadPageView controls to the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadPageViewCollection.Remove(Telerik.Web.UI.RadPageView)">Remove</see> method to remove RadPageView controls from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.#ctor(Telerik.Web.UI.RadMultiPage)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadPageViewCollection"/> class.
            </summary>
            <param name="multiPage">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Add(Telerik.Web.UI.RadPageView)">
            <summary>
            	Appends the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to the collection.
            </summary>
            <param name="pageView">
            	The <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to append to the collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Insert(System.Int32,Telerik.Web.UI.RadPageView)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadPageViewCollection">RadPageViewCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see>.</param>
            <param name="pageView">The <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Add(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.AddAt(System.Int32,System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.IndexOf(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Remove(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Contains(System.Web.UI.Control)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.Remove(Telerik.Web.UI.RadPageView)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> from the collection.
            </summary>
            <param name="pageView">
            	The <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to remove from the collection.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPageViewCollection.IndexOf(Telerik.Web.UI.RadPageView)">
            <summary>
                Determines the index of the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> in the collection.
            </summary>
            <returns>
            	The zero-based index position of the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> in the
            	collection. If the specified <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> is not found in the collection -1 is returned.
            </returns>
            <param name="pageView">
            	A <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to search for in the collection.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadPageViewCollection.Item(System.Int32)">
            <summary>
                Gets the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> at the specified index in the
                collection.
            </summary>
            <remarks>
            	Use this indexer to get a <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> from the collection at
                the specified index, using array notation.
            </remarks>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> to retrieve from the
            	collection.
            </param>
        </member>
        <member name="T:Telerik.Web.UI.RadTabBinding">
            <summary>
            	Defines the relationship between a data item and the tab it is binding to in a 
            	<see cref="T:Telerik.Web.UI.RadTabStrip"/>control. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTabBinding.ApplyTo(Telerik.Web.UI.NavigationItem,System.Object,Telerik.Web.UI.PropertyDescriptorCache)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ChildGroupCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.ChildGroupCssClass">ChildGroupCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ChildGroupCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.ChildGroupCssClass">ChildGroupCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.DisabledCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.DisabledCssClass">DisabledCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.DisabledCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.DisabledCssClass">DisabledCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.DisabledImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.DisabledImageUrl">DisabledImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.DisabledImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.DisabledImageUrl">DisabledImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.HoveredCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.HoveredCssClass">HoveredCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.HoveredCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.HoveredCssClass">HoveredCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.OuterCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.OuterCssClass">OuterCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.OuterCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.OuterCssClass">OuterCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.IsSeparator">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.IsSeparator">IsSeparator</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.IsSeparatorField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.IsSeparator">IsSeparator</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.IsBreak">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.IsBreak">IsBreak</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.IsBreakField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.IsBreak">IsBreak</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.PerTabScrolling">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.PerTabScrolling">PerTabScrolling</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.PerTabScrollingField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.PerTabScrolling">PerTabScrolling</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollChildren">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.ScrollChildren">ScrollChildren</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollChildrenField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.ScrollChildren">ScrollChildren</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollPosition">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.ScrollPosition">ScrollPosition</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollPositionField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.ScrollPosition">ScrollPosition</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.SelectedCssClass">SelectedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.SelectedCssClass">SelectedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.SelectedImageUrl">SelectedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.SelectedImageUrl">SelectedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedIndexField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.SelectedIndex">SelectedIndex</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.SelectedIndex">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.SelectedIndex">SelectedIndex</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.PageViewID">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.PageViewID">PageViewID</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.PageViewIDField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.PageViewID">PageViewID</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollButtonsPosition">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTab.ScrollButtonsPosition">ScrollButtonsPosition</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBinding.ScrollButtonsPositionField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTab.ScrollButtonsPosition">ScrollButtonsPosition</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTabBindingCollection">
            <summary>
            	Represents a collection of <see cref="T:Telerik.Web.UI.RadTabBinding"/> objects.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTabBindingCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadTabBinding"/> object at the specified index from the collection.
            </summary>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadTabBinding"/>at the specified index in the collection.
            </returns>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadTabBinding"/> to retrieve.
            </param>
        </member>
        <member name="T:Telerik.Web.UI.RadTab">
            <summary>Represents a tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.</summary>
            <remarks>
            	<para>
            		The <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control is made up of tabs. Tabs which are immediate children
            		of the tabstrip are root tabs. tabs which are children of root tabs are child tabs.
            	</para>
            	<para>
            		A tab usually stores data in two properties, the <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property and 
            		the <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property. The value of the <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is displayed 
            		in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control, and the <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> 
            		property is used to store additional data.
            	</para>
            	<para>To create tabs, use one of the following methods:</para>
            	<list type="bullet">
            		<item>
            			Use declarative syntax to define tabs inline in your page or user control.
            		</item>
            		<item>
            			Use one of the constructors to dynamically create new instances of the
            			<see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class. These tabs can then be added to the
            			<b>Tabs</b> collection of another tab or tabstrip.
            		</item>
            		<item>
            			Data bind the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control to a data source.
            		</item>
            	</list>
            	<para>
                    When the user clicks a tab, the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control can navigate
                    to a linked Web page, post back to the server or select that tab. If the
                    <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property of a tab is set, the
                    <b>RadTabStrip</b> control navigates to the linked page. By default, a linked page
                    is displayed in the same window or frame. To display the linked content in a different 
            		window or frame, use the <see cref="P:Telerik.Web.UI.RadTab.Target">Target</see> property.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTab.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add tabs to the 
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
                <code lang="CS">
            		RadTab tab = new RadTab();
            		tab.Text = "News";
            		tab.NavigateUrl = "~/News.aspx";
             
            		RadTabStrip1.Tabs.Add(tab);
                </code>
            	<code lang="VB">
            		Dim tab As New RadTab()
            		tab.Text = "News"
            		tab.NavigateUrl = "~/News.aspx"
             
            		RadTabStrip1.Tabs.Add(tab)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTab.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class with the
                specified text data.
            </summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class using the specified text.
            </remarks>
            <example>
                The following example demonstrates how to add tabs to the
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control. 
                <code lang="CS">
            		RadTab tab = new RadTab("News");
             
            		RadTabStrip1.Tabs.Add(tab);
                </code>
            	<code lang="VB">
            		Dim tab As New RadTab("News")
             
            		RadTabStrip1.Tabs.Add(tab)
                </code>
            </example>
            <param name="text">
                The text displayed for the tab. The <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is initialized with the value
            	of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTab.#ctor(System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class with the
                specified text and value data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class using the specified text and value.
                </para>
            </remarks>
            <example>
                This example demonstrates how to add tabs to the 
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control. 
                <code lang="CS">
            		RadTab tab = new RadTab("News", "NewsTabValue");
             
            		RadTabStrip1.Tabs.Add(tab);
                </code>
            	<code lang="VB">
            		Dim tab As New RadTab("News", "NewsTabValue")
             
            		RadTabStrip1.Tabs.Add(tab)
                </code>
            </example>
            <param name="text">
                The text displayed for the tab. The <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is initialized with the value
            	of this argument.
            </param>
            <param name="value">
                The value associated with the tab. The <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is initialized with the value
            	of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTab.SelectParents">
            <summary>
            	Selects recursively all parent tabs in the hierarchy.
            </summary>
            <remarks>
            	Use this method to programmatically select all parents of the tab. Selected tabs
            	will be visible in the browser.
            </remarks>
            <example>
                The following example demonstrates how to select the parents of the tab which
                corresponds to the current URL.
                <code lang="CS">
            		RadTab currentTab = RadTabStrip1.FindTabByUrl(Request.Url.PathAndQuery);
            		if (currentTab != null)
            		{
            			currentTab.SelectParents();
            		}
                </code>
            	<code lang="VB">
            		Dim currentTab as RadTab = RadTabStrip1.FindTabByUrl(Request.Url.PathAndQuery)
            	 
            		If Not currentTab Is Nothing Then
            			currentTab.SelectParents()
            		End If
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.IsSeparator">
            <summary>
            	Gets or sets a value indicating whether the tab will behave as separator.</summary>
            <value>
            	<c>true</c> if the tab is separator; otherwise <c>false</c>. The default value is <c>false</c>.
            </value>
            <remarks>
            	Use separators to visually separate the tabs. You also need to specify the width
            	of the separator tab through the <strong>Width</strong> property.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.TabTemplate">
            <summary>Gets or sets the template for displaying the tab.</summary>
            <value>
            	<para>An object implementing the <strong>ITemplate</strong>The default value is a null reference (<strong>Nothing</strong> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>
                    To specify common display for all tabs use the
                    <see cref="P:Telerik.Web.UI.RadTabStrip.TabTemplate"/> property of the <see cref="T:Telerik.Web.UI.RadTabStrip"/> control.
                </para>
            </value>
            <example>
            	The following example demonstrates how to customize the appearance of a specific tab using the 
            	<b>TabTemplate</b> property
            	<code lang="html">
            	&lt;telerik:RadTabStrip ID="RadTabStrip1" runat="server"&gt;
            		&lt;Tabs&gt;
            			&lt;telerik:RadTab&gt;
            				&lt;TabTemplate&gt;
            					Tab 1 &lt;img src="Images/tabIcon.gif" alt="" /&gt;
            				&lt;/TabTemplate&gt;
            			&lt;/telerik:RadTab&gt;
            		&lt;/Tabs&gt;
            	&lt;/telerik:RadTabStrip&gt;
            	</code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Level">
            <summary>
            	Gets the level of the current tab.
            </summary>
            <value>
            	An integer representing the level of the tab. Root tabs are level 0 (zero).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Selected">
            <summary>
            	Gets or sets a value indicating whether the tab is selected.
            </summary>
            <value>
            	<c>true</c> if the tab is selected; otherwise <c>false</c>.
            	The default value is <c>false</c>.
            </value>
            <remarks>
                Use the <b>Selected</b> property to determine whether the tab is currently selected
                within its parent <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>. Setting the <b>Selected</b>
                property to <c>true</c> will deselect the previously selected tab.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.TabStrip">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> instance which contains the current tab.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.PostBack">
            <summary>
            	Gets or sets a value indicating whether clicking on the tab will postback.
            </summary>
            <value>
            	<c>true</c> if the node should postback; otherwise <c>false</c>.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadTabStrip.TabClick">TabClick</see> event all tabs
                will postback. To prevent the current tab from initiating postback you can set the <b>PostBack</b> 
            	property to <c>false</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.DataItem">
            <summary>Gets the data item that is bound to the tab</summary>
            <value>
            	An Object that represents the data item that is bound to the tab. The default value is null (Nothing in Visual Basic), 
            	which indicates that the tab is not bound to any data item. The return value will always be null unless accessed within
            	a <see cref="E:Telerik.Web.UI.RadTabStrip.TabDataBound">TabDataBound</see> event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadTabStrip.TabDataBound">TabDataBound</see> event to perform additional
                mapping of fields from the data item to <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> properties. It assumes the user has subscribed to the
                <see cref="E:Telerik.Web.UI.RadTabStrip.TabDataBound">TabDataBound</see> event. 
                <code lang="CS">
            		private void RadTabStrip1_TabDataBound(object sender, Telerik.Web.UI.RadTabStripEventArgs e)
            		{
            			e.Tab.ImageUrl = "image" + (string)DataBinder.Eval(e.Tab.DataItem, "ID") + ".gif";
            			e.Tab.NavigateUrl = (string)DataBinder.Eval(e.Tab.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadTabStrip1_TabDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadTabStripEventArgs) Handles RadTabStrip1.TabDataBound
            			e.Tab.ImageUrl = "image" &amp; DataBinder.Eval(e.Tab.DataItem, "ID") &amp; ".gif"
            			e.Tab.NavigateUrl = CStr(DataBinder.Eval(e.Tab.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.ScrollChildren">
            <summary>
            	Gets or sets a value indicating whether the children of the tab will be
            	scrollable.
            </summary>
            <value>
            	<c>true</c> if the child tabs will be scrollable; otherwise <c>false</c>. The default value is <c>false</c>.
            </value>
            <remarks>
            	To enable scrolling of the child tabs the <see cref="P:Telerik.Web.UI.RadTabStrip.ScrollChildren">ScrollChildren</see> property
            	must also be set to <c>true</c>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.ScrollButtonsPosition">
            <summary>The position of the scroll buttons with regards to the tab band.</summary>
            <remarks>
                This property is applicable when the
                <see cref="P:Telerik.Web.UI.RadTab.ScrollChildren">ScrollChildren</see> property is set to
                <c>true</c>; otherwise it is ignored.
            </remarks>
            <value>
                One of the <see cref="T:Telerik.Web.UI.TabStripScrollButtonsPosition">TabStripScrollButtonsPosition</see>
                enumeration values. The default value is <c>Right</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.ScrollPosition">
            <summary>
            	Gets or sets the position of the scrollable band of tabs relative to the
            	beginning of the scrolling area.
            </summary>
            <remarks>
                This property is applicable when the
                <see cref="P:Telerik.Web.UI.RadTab.ScrollChildren">ScrollChildren</see> property is set to
                <strong>true</strong>; otherwise it is ignored.
            </remarks>
            <value>
            	An integer specifying the initial scrolling position (measured in pixels). The default value is 0
                (no offset from the default scrolling position). Use negative values to move the tabs to the left.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.PerTabScrolling">
            <summary>
            	Gets or sets a value indicating whether the tabstrip should scroll directly to
            	the next tab.
            </summary>
            <value>
            	<c>true</c> if the tabstrip should scroll to the next (or previous) tab; otherwise <c>false</c>. 
            	The default value is <c>false</c>.
            </value>
            <remarks>
                By default tabs are scrolled smoothly. If you want the tabstrip to scroll directly
                to the next (or previous) tab set this property to <c>true</c>. This
                property is applicable when the <see cref="P:Telerik.Web.UI.RadTab.ScrollChildren">ScrollChildren</see>
                property is set to <c>true</c>; otherwise it is ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.SelectedIndex">
            <summary>
            	Gets or sets the index of the selected child tab.
            </summary>
            <value>
            	The zero based index of the selected tab. The default value is -1 (no child tab is selected).
            </value>
            <remarks>
            	Use the <b>SelectedIndex</b> property to programmatically specify the selected
            	child tab in a <b>IRadTabContainer</b> (<b>RadTabStrip</b> or <b>RadTab</b>). 
            	To clear the selection set the <b>SelectedIndex</b> property to <c>-1</c>.
            </remarks>
            <example>
                The following example demonstrates how to programmatically select a tab by using
                the <b>SelectedIndex</b> property.
                <code lang="CS">
            		void Page_Load(object sender, EventArgs e)
            		{
            			if (!Page.IsPostBack)
            			{
            				RadTab newsTab = new RadTab("News");
            				RadTabStrip1.Tabs.Add(newsTab);
                
            				RadTabStrip1.SelectedIndex = 0; //This will select the "News" tab
             
            				RadTab cnnTab = new RadTab("CNN");
            				newsTab.Tabs.Add(cnnTab);
             
            				RadTab nbcTab = new RadTab("NBC");
            				newsTab.Tabs.Add(nbcTab);
             
            				newsTab.SelectedIndex = 1; //This will select the "NBC" child tab of the "News" tab
            			}
            		}
                </code>
            	<code lang="VB">
            		 Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            		     If Not Page.IsPostBack Then
            		         Dim newsTab As RadTab = New RadTab("News")
            		         RadTabStrip1.Tabs.Add(newsTab)
            		  
            		         RadTabStrip1.SelectedIndex = 0 'This will select the "News" tab
            		  
            		         Dim cnnTab As RadTab = New RadTab("CNN")
            		         newsTab.Tabs.Add(cnnTab)
            		  
            		         Dim nbcTab As RadTab = New RadTab("NBC")
            		         newsTab.Tabs.Add(nbcTab)
            		  
            		         newsTab.SelectedIndex = 1 'This will select the "NBC" child tab of the "News" tab
            		     End If
            		 End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.SelectedTab">
            <summary>
            	Gets the selected child tab.
            </summary>
            <value>
            	Returns the child tab which is currently selected. If no tab is selected
            	(the <see cref="P:Telerik.Web.UI.RadTab.SelectedIndex">SelectedIndex</see> property is <c>-1</c>) the <b>SelectedTab</b> 
            	property will return <c>null</c> (<c>Nothing</c> in VB.NET).
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Owner">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.IRadTabContainer">IRadTabContainer</see> instance which contains the current tab.
            </summary>
            <value>
                The object which contains the tab. It might be an instance of the
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> class or the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see>
                class depending on the hierarchy level.
            </value>
            <remarks>
                The value is of the <see cref="T:Telerik.Web.UI.IRadTabContainer">IRadTabContainer</see> type which is
                implemented by the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> class and the
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> class. Use the <b>Owner</b> property when
                recursively traversing tabs in the <b>RadTabStrip</b> control.
            </remarks>
            <example>
                The following example demonstrates how to make a bread crumb trail out of
                hierarchical RadTabStrip. 
                <code lang="CS">
            	void Page_Load(object sender, EventArgs e)
            	{
            		if (RadTabStrip1.SelectedIndex &gt;= 0)
            		{
            			RadTab selected = RadTabStrip1.InnermostSelectedTab;
            			IRadTabContainer owner = selected.Owner;
            			string breadCrumbTrail = string.Empty;
            			while (owner != null)
            			{
            				breadCrumbTrail =  " &gt; " +  owner.SelectedTab.Text + breadCrumbTrail;
            				owner = owner.Owner;
            			}
            			Label1.Text = breadCrumbTrail;
            		}
            	}
                </code>
            	<code lang="VB">
            		Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
            			If RadTabStrip1.SelectedIndex &gt;= 0 Then
            				Dim selected As RadTab = RadTabStrip1.InnermostSelectedTab
            				Dim owner As IRadTabContainer = selected.Owner
            				Dim breadCrumbTrail As String = String.Empty
            				While Not owner Is Nothing
            					breadCrumbTrail = " &gt; " &amp; owner.SelectedTab.Text &amp; breadCrumbTrail
            					owner = owner.Owner
            				End While
            				Label1.Text = breadCrumbTrail
            			End If
            		End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Tabs">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> object that contains the child tabs of the current tab.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> that contains the child tabs of the current tab. By default
            	the collection is empty (the tab has no children).
            </value>
            <remarks>
            	Use the <b>Tabs</b> property to access the child tabs of the current tab. You can also use the <b>Tabs</b> property to
            	manage the children of the current tab. You can add, remove or modify tabs from the <b>Tabs</b> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of child tabs.
                <code lang="CS">
            		RadTabStrip1.Tabs[0].Tabs[0].Text = "Example";
            		RadTabStrip1.Tabs[0].Tabs[0].NavigateUrl = "http://www.example.com";
                </code>
            	<code lang="VB">
            		RadTabStrip1.Tabs(0).Tabs(0).Text = "Example"
            		RadTabStrip1.Tabs(0).Tabs(0).NavigateUrl = "http://www.example.com"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.SelectedCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied when the tab is selected.
            </summary>
            <value>
            	The CSS class applied when the tab is selected. The default value is empty string.
            </value>
            <remarks>
            	By default the visual appearance of selected tabs is defined in the skin CSS
            	file. You can use the <b>SelectedCssClass</b> property to specify unique
            	appearance for the current tab when it is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.DisabledCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied when the tab is disabled.
            </summary>
            <value>
            	The CSS class applied when the tab is disabled. The default value is empty string.
            </value>
            <remarks>
            	By default the visual appearance of disabled tabs is defined in the skin CSS
            	file. You can use the <b>DisabledCssClass</b> property to specify unique
            	appearance for the tab when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.HoveredCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied when the tab is hovered with the mouse.
            </summary>
            <value>
            	The CSS class applied when the tab is hovered. The default value is empty string.
            </value>
            <remarks>
            	By default the visual appearance of hovered tabs is defined in the skin CSS
            	file. You can use the <b>HoveredCssClass</b> property to specify unique
            	appearance for the tab when it is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.OuterCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied on the outmost tab element (&lt;LI&gt;).
            </summary>
            <value>
            	The CSS class applied on the wrapping element (&lt;LI&gt;). The default value is empty string.
            </value>
            <remarks>
            	You can use the <b>OuterCssClass</b> property to specify unique
            	appearance for the tab, or to insert elements that are before/after the link element.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.ChildGroupCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied to the HTML element
            	containing the child tabs.
            </summary>
            <value>
            	The CSS class applied to the child tabs container. The default value is empty
            	string.
            </value>
            <remarks>
            	Tabs are rendered as <b>LI</b> (list item) HTML elements inside a
                <b>UL</b> (unordered list). The CSS class specified by the
                <b>ChildGroupCssClass</b> property is applied to the <b>UL</b>
                tag.
            </remarks>
            <example>
            	<h3>ASPX:</h3>&lt;telerik:RadTabStrip ID="RadTabStrip1" runat="server"&gt;<br/>
                 &lt;Tabs&gt;<br/>
                 &lt;telerik:RadTab Text="News" <strong>ChildGroupCssClass="news"</strong>&gt;<br/>
                 &lt;Tabs&gt;<br/>
                 &lt;telerik:RadTab Text="CNN" /&gt;<br/>
                 &lt;telerik:RadTab Text="NBC" /&gt;<br/>
                 &lt;/Tabs&gt;<br/>
                 &lt;/telerik:RadTab&gt;<br/>
                 &lt;/Tabs&gt;<br/>
                &lt;/telerik:RadTabStrip&gt; 
                <h3>HTML:</h3>
            	<para class="sourcecode">
            		&lt;li&gt;News<br/>
            		&lt;ul <strong>class="news"</strong>&gt;<br/>
            		&lt;li&gt;CNN&lt;/li&gt;<br/>
            		&lt;li&gt;NBC&lt;/li&gt;<br/>
            		&lt;/ul&gt;<br/>
            		&lt;/li&gt;
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.IsBreak">
            <summary>
            Gets or sets a value indicating whether next tab will be displayed on a new
            line.
            </summary>
            <value>
            	<c>true</c> if the next tab should be displayed on a new line; otherwise <c>false</c>.
            	The default value is <c>false</c>.
            </value>
            <remarks>
            	Use the <b>IsBreak</b> property to create multi-row tabstrip. All tabs after the "break" 
            	tab will be displayed on a new line.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.PageViewID">
            <summary>
                Gets or sets the <strong>ID</strong> of the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> in
                a <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> that will be switched when the tab is
                selected.
            </summary>
            <remarks>
                This property overrides the default relation between the page views within a
                <see cref="T:Telerik.Web.UI.RadMultiPage">RadMultiPage</see> and the tabs in a
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see>. By default a tab activates the page view
                with the same index.
            </remarks>
            <value>
                The <strong>ID</strong> of the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> that will be
                activated when the tab is selected. The default value is empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Text">
            <summary>
            	Gets or sets the text displayed for the current tab.
            </summary>
            <value>
            	The text displayed for the tab in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control. The default is empty string.
            </value>
            <remarks>
            	Use the <b>Text</b> property to specify or determine the text that is displayed for the tab 
            	in the <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Value">
            <summary>
            	Gets or sets custom (user-defined) data associated with the current tab.
            </summary>
            <value>
            	A string representing the user-defined data. The default value is emptry string.
            </value>
            <remarks>
            	Use the <b>Value</b> property to associate custom data with a <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.NavigateUrl">
            <summary>
            	Gets or sets the URL to navigate to when the current tab is clicked.
            </summary>
            <value>
            	The URL to navigate to when the tab is clicked. The default value is empty string which means that
            	clicking the current tab will not navigate.
            </value>
            <remarks>
            	<para>
            		By default clicking a tab will select it. If the tab has any child tabs they will be displayed. To make a tab
            		navigate to some designated URL you can use the <b>NavigateUrl</b> property. You can optionally set the 
            		<see cref="P:Telerik.Web.UI.RadTab.Target">Target</see> property to specify the window or frame in which to display the linked content.
            	</para>
            	<para>
            		Setting the <b>NavigateUrl</b> property will disable tab selection and as a result the 
            		<see cref="E:Telerik.Web.UI.RadTabStrip.TabClick">TabClick</see> event won't be raised for the current tab.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.ImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed next to the text of a tab.
            </summary>
            <value>
            	The URL to the image to display for the tab. The default value is empty
            	string which means by default no image is displayed.
            </value>
            <remarks>
            	Use the <b>ImageUrl</b> property to specify a custom image that will be
            	displayed before the text of the current tab.
            </remarks>
            <example>
            	<para>
            		The following example demonstrates how to specify the image to display for
            		the tab using the <b>ImageUrl</b> property.
            	</para>
                <para class="sourcecode">
               		 &lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"&gt;<br/>
               		  &lt;Tabs&gt;<br/>
               		  &lt;telerik:RadTab<strong>ImageUrl="~/Img/inbox.gif"</strong>
               		 Text="Index"&gt;&lt;/telerik:RadTab&gt;<br/>
               		  &lt;telerik:RadTab<strong>ImageUrl="~/Img/outbox.gif"</strong>
               		 Text="Outbox"&gt;&lt;/telerik:RadTab&gt;<br/>
               		  &lt;telerik:RadTab<strong>ImageUrl="~/Img/trash.gif"</strong>
               		 Text="Trash"&gt;&lt;/telerik:RadTab&gt;<br/>
               		  &lt;telerik:RadTab<strong>ImageUrl="~/Img/meetings.gif"</strong>
               		 Text="Meetings"&gt;&lt;/telerik:RadTab&gt;<br/>
               		  &lt;/Tabs&gt;<br/>
               		 &lt;/telerik:RadTabStrip&gt;
                </para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.HoveredImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed when the 
            	user hovers the current tab with the mouse.
            </summary>
            <value>
            	The URL to the image to display for the tab when the user hovers it with the mouse. The default value is empty
            	string which means the image specified via <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> will be used.
            </value>
            <remarks>
            	<para>
            		Use the <b>HoveredImageUrl</b> property to specify a custom image that will be
            		displayed when the user hovers the tab with the mouse. Setting the <b>HoveredImageUrl</b>
            		property required the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> property to be set beforehand. 
            	</para>
            	<para>
            		If the <b>HoveredImageUrl</b> property is not set the value of the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> 
            		will be used instead.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.SelectedImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed when the tab is selected.
            </summary>
            <value>
            	The URL to the image to display when the tab is selected. The default value is empty
            	string which means the image specified via <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> will be used.
            </value>
            <remarks>
            	<para>
            		Use the <b>SelectedImageUrl</b> property to specify a custom image that will be
            		displayed when the current tab is selected. Setting the <b>SelectedImageUrl</b>
            		property required the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> property to be set beforehand. 
            	</para>
            	<para>
            		If the <b>SelectedImageUrl</b> property is not set the value of the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> 
            		will be used instead.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.DisabledImageUrl">
            <summary>
            	Gets or sets the URL to an image which is displayed when the tab is disabled 
            	(its <strong>Enabled</strong> property is set to <c>false</c>).
            </summary>
            <value>
            	The URL to the image to display when the tab is disabled. The default value is empty
            	string which means the image specified via <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> will be used.
            </value>
            <remarks>
            	<para>
            		Use the <b>DisabledImageUrl</b> property to specify a custom image that will be
            		displayed when the current tab is disabled. Setting the <b>DisabledImageUrl</b>
            		property required the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> property to be set beforehand. 
            	</para>
            	<para>
            		If the <b>DisabledImageUrl</b> property is not set the value of the <see cref="P:Telerik.Web.UI.RadTab.ImageUrl">ImageUrl</see> 
            		will be used instead.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.Target">
            <summary>
            	Gets or sets the target window or frame in which to display the Web page content associated with the current tab.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the tab is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="table">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without frames.</description>
            			</item>
            		</list>
            	</para>
            	The default value is empty string which means the linked resource will be loaded in the current window.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to target window or frame in which to display the 
            		Web page content associated with the current tab. The Web page is specified by
                    the <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>
            		If this property is not set, the Web page specified by the
            		<see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> property is loaded in the current window.
            	</para>
            	<para>
            		The <b>Target</b> property is taken into consideration only when the <see cref="P:Telerik.Web.UI.RadTab.NavigateUrl">NavigateUrl</see> 
            		property is set.
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <b>Target</b> property 
                <para>
            		<para class="sourcecode">
            		&lt;telerik:RadTabStrip id="RadTabStrip1" runat="server"&gt;<br/>
                    &lt;Tabs&gt;<br/>
                    &lt;telerik:RadTab Text="News" NavigateUrl="~/News.aspx"
                    <strong>Target="_self"</strong> /&gt;<br/>
                    &lt;telerik:RadTab Text="External URL" NavigateUrl="http://www.example.com"
                    <strong>Target="_blank"</strong> /&gt;<br/>
                    &lt;/Tabs&gt;<br/>
                    &lt;/telerik:RadTabStrip&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadTab.PageView">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> activated when the tab is selected.</summary>
            <value>
                The <see cref="T:Telerik.Web.UI.RadPageView">RadPageView</see> that is activated when the tab is selected.
                The default value is <strong>null</strong> (<strong>Nothing</strong> in VB.NET).
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadTabCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> objects in a
                <see cref="T:Telerik.Web.UI.RadTabStrip">RadTabStrip</see> control.
            </summary>
            <remarks>
            	The <strong>RadTabCollection</strong> class represents a collection of
                <strong>RadTab</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadTabCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadTab from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of menu items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadTabCollection.Add(Telerik.Web.UI.RadTab)">Add</see> method to add tabs in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadTabCollection.Remove(Telerik.Web.UI.RadTab)">Remove</see> method to remove tabs from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.Add(Telerik.Web.UI.RadTab)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object to the end of the current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <param name="tab">
            The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> to append to the end of the current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add tabs in a
                <strong>RadTabStrip</strong> control.
            	<code lang="CS">
            		RadTab newsTab = new RadTab("News");
            		RadTabStrip1.Tabs.Add(newsTab);
                </code>
            	<code lang="VB">
            		Dim newsTab As RadTab = New RadTab("News")
            		RadTabStrip1.Tabs.Add(newsTab)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.AddRange(Telerik.Web.UI.RadTab[])">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple tabs in a single step. 
                <code lang="CS">
            		RadTab[] tabs = new RadTab[] { new RadTab("First"), new RadTab("Second"), new RadTab("Third") };
            		RadTabStrip1.Tabs.AddRange(tabs);
                </code>
            	<code lang="VB">
                    Dim tabs() As RadTab = {New RadTab("First"), New RadTab("Second"), New RadTab("Third")}
                    RadTabStrip1.Tabs.AddRange(tabs)
                </code>
            </example>
            <param name="tabs">
                The array of <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> o append to the end of the current 
            <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.Insert(System.Int32,Telerik.Web.UI.RadTab)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see>.</param>
            <param name="tab">The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.IndexOf(Telerik.Web.UI.RadTab)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object in the collection.
            </summary>
            <param name="tab">
            	The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> to locate.
            </param>
            <returns>
            	The zero-based index of tab within the current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.Contains(Telerik.Web.UI.RadTab)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <param name="tab">
            	The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.Remove(Telerik.Web.UI.RadTab)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <param name="tab">
            	The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <param name="index">The zero-based index of the tab to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.FindTabByValue(System.String)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The value to search for.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.FindTabByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Value">Value</see> property is equal to the specifed 
            	value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="value">
            	The value to search for.
            </param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.FindTabByText(System.String)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal
                to the specified value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.FindTabByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadTabStrip</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> whose <see cref="P:Telerik.Web.UI.RadTab.Text">Text</see> property is equal
                to the specified value. If a tab is not found, null (Nothing in Visual Basic) is returned.
            </returns>
            <param name="text">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTabCollection.FindTab(System.Predicate{Telerik.Web.UI.RadTab})">
            <summary>
            Returns  the first <strong>RadTab</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindTab</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadTabStrip1.FindTab(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadTab tab)
            {
                if (tab.Text == tab.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadTabStrip1.FindTab(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal tab As RadTab) As Boolean
                If tab.Text = tab.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTabCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadTab">RadTab</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadTabCollection">RadTabCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.TabStripClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButtonEventArgs">
            <summary>
            Provides data for the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event
            of the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonEventArgs.#ctor(Telerik.Web.UI.RadToolBarButton)">
            <summary>
                Initializes a new instance of the
                <see cref="T:Telerik.Web.UI.RadToolBarButtonEventArgs">RadToolBarButtonEventArgs</see> class.
            </summary>
            <param name="button">
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> which represents a button in the
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButtonEventArgs.Button">
            <summary>
               Gets the referenced button in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the
            	<see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event is raised.
            </summary>
            <value>
                The referenced button in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the
            	<see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the button referenced in the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the
            	<see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButtonEventHandler">
            <summary>
            Represents the method that handles the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see>
            event of a <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <param name="sender">The source of the event.</param>
            <param name="e">A <see cref="T:Telerik.Web.UI.RadToolBarButtonEventArgs">RadToolBarButtonEventArgs</see> that
            contains the event data.</param>
            <remarks>
            When you create a <strong>RadToolBarButtonEventHandler</strong> delegate, you identify the method that will
            handle the event. To associate the event with your event handler, add an instance of the delegate to the
            event. The event handler is called whenever the event occurs, unless you remove the delegate.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarEventArgs">
            <summary>
            Provides data for the events of the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarEventArgs.#ctor(Telerik.Web.UI.RadToolBarItem)">
            <summary>
                Initializes a new instance of the
                <see cref="T:Telerik.Web.UI.RadToolBarEventArgs">RadToolBarEventArgs</see> class.
            </summary>
            <param name="item">
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> which represents an item in the
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarEventArgs.Item">
            <summary>
               Gets the referenced item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the
            	event is raised.
            </summary>
            <value>
                The referenced item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the item referenced in the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarEventHandler">
            <summary>
            Represents the method that handles the events of a <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <param name="sender">The source of the event.</param>
            <param name="e">A <see cref="T:Telerik.Web.UI.RadToolBarEventArgs">RadToolBarEventArgs</see> that contains the event data.</param>
            <remarks>
            When you create a <strong>RadToolBarEventHandler</strong> delegate, you identify the method that will
            handle the event. To associate the event with your event handler, add an instance of the delegate to the
            event. The event handler is called whenever the event occurs, unless you remove the delegate.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.ToolBarDropDownExpandDirection">
            <summary>
            Specifies the expand direction of a drop down within the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarDropDownExpandDirection.Up">
            <summary>
            The drop down will expand upwards
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarDropDownExpandDirection.Down">
            <summary>
            The drop down will expand downwards
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.IRadToolBarButton">
            <summary>
            Defines properties that must be implemented to allow a control to act like
            a RadToolBarButton item in a <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.PostBack">
            <summary>
            Gets or sets a value, indicating if the item will perform a postback.
            </summary>
            <remarks>
            Used to indicate that an item should not perform a postback when
            the containing <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> performs postback through.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.Value">
            <summary>Gets or sets the value associated with the toolbar item.</summary>
            <value>The value associated with the item. The default value is empty string.</value>
            <remarks>
            	<para>Use the <b>Value</b> property to specify or determine the value associated
                with the item.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.NavigateUrl">
            <summary>Gets or sets the URL to link to when the item is clicked.</summary>
            <value>
            The URL to link to when the item is clicked. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>NavigateUrl</strong> property to specify the URL to link to when
            the item is clicked. Use "~" (tilde) in front of an URL within the same ASP.NET
            application. When specifying external URL do not forget the protocol (e.g.
            "http://").
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.Target">
            <summary>
            Gets or sets the target window or frame to display the Web page content linked to
            when the toolbar item is clicked.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the item is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="Itemle">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without
                            frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset
                            parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without
                            frames.</description>
            			</item>
            		</list>
            	</para>The default value is empty string.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to specify the frame or window that displays the
                    Web page linked to when the toolbar item is clicked. The Web page is specified by
                    setting the <see cref="P:Telerik.Web.UI.IRadToolBarButton.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>If this property is not set, the Web page specified by the
                <strong>NavigateUrl</strong> property is loaded in the current window.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ItemTemplate">
            <summary>Gets or sets the template for displaying the item.</summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying the item. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.CommandName">
            <summary>
            Gets or sets the command name associated with the toolbar item that is passed to the
            	ItemCommand event of the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance.
            </summary>
            <value>
            	The command name of the toolbar item. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.IRadToolBarButton.CommandName">CommandName</see>
            </summary>
            <value>
            	An optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.IRadToolBarButton.CommandName">CommandName</see>. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.CausesValidation">
            <summary>
            Gets or sets a value indicating whether clicking the button causes page validation
            to occur.
            </summary>
            <value>
            true if clicking the button causes page validation to occur; otherwise, false.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.PostBackUrl">
            <summary>
            Gets or sets the URL of the Web page to post to from the current page when
            the button control is clicked.
            </summary>
            <value>
            The URL of the Web page to post to from the current page when the button
            control is clicked.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ValidationGroup">
            <summary>
            Gets or sets the name for the group of controls for which the button control
            causes validation when it posts back to the server.
            </summary>
            <value>
            The name for the group of controls for which the button control causes validation
             when it posts back to the server.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ToolBar">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance which contains the item.</summary>
            <remarks>
                Use this property to obtain an instance to the
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> object containing the item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.Text">
            <summary>
            	Gets or sets the text displayed for the current item.
            </summary>
            <value>
            	The text an item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control displays. The default is empty string.
            </value>
            <remarks>
            	Use the <b>Text</b> property to specify or determine the text an item displays displays
            	in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.HoveredImageUrl">
            <summary>
            Gets or sets the path to an image to display when the user moves the
            mouse over the item.
            </summary>
            <value>
            The path to the image to display when the user moves the mouse over the item. The
            default value is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/inbox.gif"
                <strong>HoveredImageUrl="~/Img/inboxOver.gif"</strong> Text="Index" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.HoveredCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the user moves the mouse
            over the toolbar item.
            </summary>
            <value>
            The CSS class applied when the user moves the mouse over the toolbar item. The default value is
            <strong>String.Empty</strong>.
            </value>
            <remarks>
            By default the visual appearance of a hovered toolbar items is defined in the skin CSS
            file. You can use the <strong>HoveredCssClass</strong> property to specify unique
            appearance for the toolbar item when it is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ClickedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            clicked.
            </summary>
            <value>
            The CSS class applied when the toolbar item is clicked. The default value is
            <strong>String.Empty</strong>.
            </value>
            <example>
            By default the visual appearance of clicked toolbar items is defined in the skin CSS
            file. You can use the <strong>ClickedCssClass</strong> property to specify unique
            appearance for the toolbar item when it is clicked.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ClickedImageUrl">
            <summary>
            Gets or sets the path to an image to display for the item when the user clicks it.
            </summary>
            <value>
            The path to the image to display when the user clicks the item. The default value
            is empty string.
            </value>
            <remarks>
            Use the <strong>ClickedImageUrl</strong> property to specify the image that will be
            used when the user clicks the item. If the <strong>ClickedImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.DisabledImageUrl">
            <summary>
            Gets or sets the path to an image to display when the item is disabled.
            </summary>
            <value>
            The path to the image to display when the item is disabled. The
            default value is empty string.
            </value>
            <remarks>
            Use the <strong>DisabledImageUrl</strong> property to specify the image that will be
            used when the item is disabled. If the <strong>DisabledImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            disabled.
            </summary>
            <value>
            The CSS class applied when the toolbar item is disabled. The default value is
            <strong>String.Empty</strong>.
            </value>
            <remarks>
            By default the visual appearance of disabled toolbar items is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for the toolbar item when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.FocusedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolBar item is
            focused after tabbing to it, or by using its AccessKey
            </summary>
            <value>
            The CSS class applied when the toolBar item is focused. The default value is
            <strong>String.Empty</strong>.
            </value>
            <remarks>
            By default the visual appearance of focused toolBar items is defined in the skin CSS
            file. You can use the <strong>FocusedCssClass</strong> property to specify unique
            appearance for the toolBar item when it is focused.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.FocusedImageUrl">
            <summary>
            Gets or sets the path to an image to display when the user focuses the
            item either by tabbing to it or by using the AccessKey
            </summary>
            <value>
            The path to the image to display when the user user focuses the
            item either by tabbing to that it or by using the AccessKey. The
            default value is empty string.
            </value>
            <remarks>
            Use the <strong>FocusedImageUrl</strong> property to specify the image that will be
            used when the item gets the focus after tabbing or using its AccessKey.
            If the <strong>FocusedImageUrl</strong> property is set to empty string the image specified
            by the <strong>ImageUrl</strong> property will be used. Use "~" (tilde) when referring to
            images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.IRadToolBarButton.ImagePosition">
            <summary>
            Gets or sets the position of the item image according to the item text.
            </summary>
            <value>
            The position of the item image according to the item text. The
            default value is <strong>ToolBarImagePosition.Left</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.IRadToolBarButtonContainer">
            <summary>
                Defines properties that toolbar button containers
            	(<see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see>,
                <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>) should implement.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ToolBarImagePosition">
            <summary>
            Specifies the position of the image of an item within the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
            control according to the item text.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarImagePosition.Left">
            <summary>
            The image will be displayed to the left of the text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarImagePosition.Right">
            <summary>
            The image will be displayed to the right of the text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarImagePosition.AboveText">
            <summary>
            The image will be displayed above the text
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.ToolBarImagePosition.BelowText">
            <summary>
            The image will be displayed below the text
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButton">
            <summary>Represents a single button in the RadToolBar class.</summary>
            <remarks>
            	<para>
                    When the user clicks a toolbar button, the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control can
            		either navigate to a linked Web page or simply post back to the server. If the
                    <see cref="P:Telerik.Web.UI.RadToolBarButton.NavigateUrl">NavigateUrl</see> property of a toolbar button is set, the
                    <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control navigates to the linked page. By default,
            		a linked page is displayed in the same window or frame as the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
                    control. To display the linked content in a different window or frame, use the
                    <see cref="P:Telerik.Web.UI.RadToolBarButton.Target">Target</see> property.
                </para>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarItem">
            <summary>Represents a single item in the RadToolBar class.</summary>
            <remarks>
            	<para>
                    The <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control is made up of a list of toolbar items
                    represented by <b>RadToolBarItem</b> objects (<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>,
            		<see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see>,
            		<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>). All toolbar  items are stored
            		in the <see cref="P:Telerik.Web.UI.RadToolBar.Items">Items</see> collection of the toolbar.
            		You can access the toolbar to which the item belongs
                    by using the <see cref="P:Telerik.Web.UI.RadToolBarItem.ToolBar">ToolBar</see> property.
                </para>
            	<para>To create the toolbar items for a <b>RadToolBar</b> control, use one of the
                following methods:</para>
            	<list type="bullet">
            		<item>Use declarative syntax to create static toolbar items.</item>
            		<item>Use a constructor to dynamically create new instances of either toolbar item classes
            			(<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>,
            			<see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see>,
            			<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>). These <b>RadToolBarItem</b>
            			objects can then be added to the <see cref="P:Telerik.Web.UI.RadToolBar.Items">Items</see> collection of the
            			<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>.</item>
            		<item>Bind the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control to a data source.</item>
            	</list>
            	<para>
                    Each toolbar item has a <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property. The Button items
            		(<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> and
            		<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>) have a
                    <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property. The value of the
            		<see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is displayed in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>
            		control, while the <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property is used to store any
            		additional data about the toolbar item.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.ToolBar">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance which contains the item.</summary>
            <remarks>
                Use this property to obtain an instance to the
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> object containing the item.
            </remarks>		
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.Text">
            <summary>
            	Gets or sets the text displayed for the current item.
            </summary>
            <value>
            	The text an item in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control displays. The default is empty string.
            </value>
            <remarks>
            	Use the <b>Text</b> property to specify or determine the text an item displays displays
            	in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
            <example>
            	<para>The following example demonstrates how to specify the image to display for
                a button using the <strong>ImageUrl</strong> property.</para>
            	<para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadToolBarButton <strong>ImageUrl="~/Img/inbox.gif"</strong> Text="Index"
                    /&gt;<br/>
                    &lt;telerik:RadToolBarButton <strong>ImageUrl="~/Img/outbox.gif"</strong> Text="Outbox"
                    /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.HoveredImageUrl">
            <summary>
            Gets or sets the path to an image to display when the user moves the
            mouse over the item.
            </summary>
            <value>
            The path to the image to display when the user moves the mouse over the item. The
            default value is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/inbox.gif"
                <strong>HoveredImageUrl="~/Img/inboxOver.gif"</strong> Text="Index" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            Use the <strong>HoveredImageUrl</strong> property to specify the image that will be
            used when the user moves the mouse over the item. If the <strong>HoveredImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.HoveredCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the user moves the mouse
            over the toolbar item.
            </summary>
            <value>
            The CSS class applied when the user moves the mouse over the toolbar item. The default value is
            <strong>String.Empty</strong>.
            </value>
            <remarks>
            By default the visual appearance of a hovered toolbar items is defined in the skin CSS
            file. You can use the <strong>HoveredCssClass</strong> property to specify unique
            appearance for the toolbar item when it is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.ClickedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            clicked.
            </summary>
            <value>
            The CSS class applied when the toolbar item is clicked. The default value is
            <strong>String.Empty</strong>.
            </value>
            <example>
            By default the visual appearance of clicked toolbar items is defined in the skin CSS
            file. You can use the <strong>ClickedCssClass</strong> property to specify unique
            appearance for the toolbar item when it is clicked.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.ClickedImageUrl">
            <summary>
            Gets or sets the path to an image to display for the item when the user clicks it.
            </summary>
            <value>
            The path to the image to display when the user clicks the item. The default value
            is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarDropDown ImageUrl="~/Img/inbox.gif"
                <strong>ClickedImageUrl="~/Img/inboxClicked.gif"</strong> Text="DropDown1" &gt;
                    &lt;Items&gt;<br/>
            			&lt;telerik:RadToolBarButton Text="Mail1" <strong>ClickedImageUrl="~/Img/mail1Clicked.gif"</strong>
            			/&gt;
                    &lt;/Items&gt;<br/>
            	&lt;/telerik:RadToolBarDropDown&gt;/<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            Use the <strong>ClickedImageUrl</strong> property to specify the image that will be
            used when the user clicks the item. If the <strong>ClickedImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.DisabledImageUrl">
            <summary>
            Gets or sets the path to an image to display when the item is disabled.
            </summary>
            <value>
            The path to the image to display when the item is disabled. The
            default value is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/inbox.gif"
                <strong>DisabledImageUrl="~/Img/inboxDisabled.gif"</strong> Text="Index" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            Use the <strong>DisabledImageUrl</strong> property to specify the image that will be
            used when the item is disabled. If the <strong>DisabledImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar item is
            disabled.
            </summary>
            <value>
            The CSS class applied when the toolbar item is disabled. The default value is
            <strong>String.Empty</strong>.
            </value>
            <remarks>
            By default the visual appearance of disabled toolbar items is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for the toolbar item when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.FocusedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolBar item is
            focused after tabbing to it, or by using its AccessKey
            </summary>
            <value>
            The CSS class applied when the toolBar item is focused. The default value is
            <strong>String.Empty</strong>.
            </value>
            <example>
            	<para class="sourcecode">
            	&lt;style type="text/css"&gt;
            	.myFocusedCssClass .rtbText
            	{
            		font-weight:bold !important;
            		color:red !important;
            	}
            	&lt;/style&gt;
            	&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton
                <strong>FocusedCssClass="myFocusedCssClass"</strong> Text="Bold" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            By default the visual appearance of focused toolBar items is defined in the skin CSS
            file. You can use the <strong>FocusedCssClass</strong> property to specify unique
            appearance for the toolBar item when it is focused.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.FocusedImageUrl">
            <summary>
            Gets or sets the path to an image to display when the user focuses the
            item either by tabbing to it or by using the AccessKey
            </summary>
            <value>
            The path to the image to display when the user user focuses the
            item either by tabbing to that it or by using the AccessKey. The
            default value is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/bold.gif"
                <strong>FocusedImageUrl="~/Img/boldFocused.gif"</strong> Text="Bold" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            Use the <strong>FocusedImageUrl</strong> property to specify the image that will be
            used when the item gets the focus after tabbing or using its AccessKey.
            If the <strong>FocusedImageUrl</strong> property is set to empty string the image specified
            by the <strong>ImageUrl</strong> property will be used. Use "~" (tilde) when referring to
            images within the current ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.OuterCssClass">
            <summary>
            	Gets or sets the Cascading Style Sheet (CSS) class applied on the outmost element (&lt;LI&gt;).
            </summary>
            <value>
            	The CSS class applied on the wrapping element (&lt;LI&gt;). The default value is empty string.
            </value>
            <remarks>
            	You can use the <b>OuterCssClass</b> property to specify unique
            	appearance for the item, or to insert elements that are before/after the link element.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.ImagePosition">
            <summary>
            Gets or sets the position of the item image according to the item text.
            </summary>
            <value>
            The position of the item image according to the item text. The
            default value is <strong>ToolBarImagePosition.Left</strong>.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/bold.gif"
                <strong>ImagePosition="Right"</strong> Text="Bold" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItem.EnableImageSprite">
            <summary>
            Gets or sets a value indicating whether the item image should have sprite support.
            </summary>
            <value>
            	<strong>True</strong> if the item should have sprite support; otherwise
                <strong>False</strong>. The default value is <strong>False</strong>.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarItem.Renderer">
            <summary>
            	For internal use only
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButton.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarButton button = new RadToolBarButton();
            button.Text = "Create New";
            button.CommandName = "CreateNew";
            button.ImageUrl = "~/ToolBarImages/CreateNew.gif";
             
            RadToolBar1.Items.Add(button);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim button As New RadToolBarButton()
            button.Text = "Create New"
            button.CommandName = "CreateNew"
            button.ImageUrl = "~/ToolBarImages/CreateNew.gif"
             
            RadToolBar1.Items.Add(button)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButton.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class with the
                specified text data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class using the specified text.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarButton button = new RadToolBarButton("Create New");
            button.CommandName = "CreateNew";
            button.ImageUrl = "~/ToolBarImages/CreateNew.gif";
             
            RadToolBar1.Items.Add(button);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim button As New RadToolBarButton("Create New")
            button.CommandName = "CreateNew"
            button.ImageUrl = "~/ToolBarImages/CreateNew.gif"
             
            RadToolBar1.Items.Add(button)
                </code>
            </example>
            <param name="text">
                The text of the button. The <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButton.#ctor(System.String,System.Boolean,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class with the
                specified text, checked state and group name data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> class using the specified text,
            		checked state and group name.
                </para>
            	<para>
            		When this constructor used, the CheckOnClick property of the created
            		<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> is automatically set to true.
            	</para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarButton alighLeftButton = new RadToolBarButton("Left", false, "Alignment");
            alighLeftButton.CommandName = "AlignLeft";
            alighLeftButton.ImageUrl = "~/ToolBarImages/AlignLeft.gif";
            RadToolBar1.Items.Add(alighLeftButton);
            
            RadToolBarButton alignCenterButton = new RadToolBarButton("Center", false, "Alignment");
            alignCenterButton.CommandName = "AlignCenter";
            alignCenterButton.ImageUrl = "~/ToolBarImages/AlignCenter.gif";
            RadToolBar1.Items.Add(alignCenterButton);
            
            RadToolBarButton alignRightButton = new RadToolBarButton("Right", false, "Alignment");
            alignRightButton.CommandName = "AlignRight";
            alignRightButton.ImageUrl = "~/ToolBarImages/AlignRight.gif";
            RadToolBar1.Items.Add(alignRightButton);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim alighLeftButton As RadToolBarButton = New RadToolBarButton("Left", False, "Alignment")
            alighLeftButton.CommandName = "AlignLeft"
            alighLeftButton.ImageUrl = "~/ToolBarImages/AlignLeft.gif"
            RadToolBar1.Items.Add(alighLeftButton)
            
            Dim alignCenterButton As RadToolBarButton = New RadToolBarButton("Center", False, "Alignment")
            alignCenterButton.CommandName = "AlignCenter"
            alignCenterButton.ImageUrl = "~/ToolBarImages/AlignCenter.gif"
            RadToolBar1.Items.Add(alignCenterButton)
            
            Dim alignRightButton As RadToolBarButton = New RadToolBarButton("Right", False, "Alignment")
            alignRightButton.CommandName = "AlignRight"
            alignRightButton.ImageUrl = "~/ToolBarImages/AlignRight.gif"
            RadToolBar1.Items.Add(alignRightButton)
                </code>
            </example>
            <param name="text">
                The text of the button. The <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="isChecked">
                The checked state of the button. The <see cref="P:Telerik.Web.UI.RadToolBarButton.Checked">Checked</see> property is set to the value
                of this parameter.
            </param>
            <param name="group">
                The group to which the button belongs. The <see cref="P:Telerik.Web.UI.RadToolBarButton.Group">Group</see> property is set
            	to the value of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButton.Clone">
            <summary>Creates a copy of the current <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object.</summary>
            <returns>A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> which is a copy of the current one.</returns>
            <remarks>
            Use the <strong>Clone</strong> method to create a copy of the current button. All
            properties of the clone are set to the same values as the current ones.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.Owner">
            <summary>
            Gets a reference to the owner of the RadToolBarButton.
            </summary>
            <value>
            The IToolBarItemContainer control (<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see>,
            <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see>,
            <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>) which holds the RadToolBarButton.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.DataItem">
            <summary>Gets the data item that is bound to the button</summary>
            <value>
            	An Object that represents the data item that is bound to the button. The default value is null
            	(Nothing in Visual Basic), which indicates that the button is not bound to any data item. The
            	return value will always be null unless accessed within a
            	<see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event to perform additional
                mapping of fields from the data item to <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> properties. It assumes the user has subscribed to the
                <see cref="E:Telerik.Web.UI.RadToolBar.ButtonDataBound">ButtonDataBound</see> event. 
                <code lang="CS">
            		private void RadToolBar1_ButtonDataBound(object sender, Telerik.Web.UI.RadToolBarButtonEventArgs e)
            		{
            			e.Button.ImageUrl = "image" + (string)DataBinder.Eval(e.Button.DataItem, "ID") + ".gif";
            			e.Button.NavigateUrl = (string)DataBinder.Eval(e.Button.DataItem, "URL");
            		}
                </code>
            	<code lang="VB">
            		Sub RadToolBar1_ButtonDataBound(ByVal sender As Object, ByVal e As Telerik.Web.UI.RadToolBarButtonEventArgs) Handles RadToolBar1.ButtonDataBound
            			e.Button.ImageUrl = "image" &amp; DataBinder.Eval(e.Button.DataItem, "ID") &amp; ".gif"
            			e.Button.NavigateUrl = CStr(DataBinder.Eval(e.Button.DataItem, "URL"))
            		End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.IsSeparator">
            <summary>
            Gets or sets whether the button is separator.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CheckOnClick">
            <summary>
            Gets or sets whether the button has a check state.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.Checked">
            <summary>
            Gets or sets if the button is checked.
            </summary>
            <remarks>
            	<para>The <strong>Checked</strong> property of the button depends on the
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CheckOnClick">CheckOnClick</see> property. If the
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CheckOnClick">CheckOnClick</see> property is set to
            	<strong>false</strong>, the <strong>Checked</strong> property will be ignored.
            	</para>
            	<para>When a button's Checked state is set to true, all the buttons that belong
            	to the same group in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> get their Checked
            	state set to false.
            	</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.Group">
            <summary>
            Gets or sets the group to which the button belongs.
            </summary>
            <remarks>
            	The <strong>Group</strong> property of the button depends on the
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CheckOnClick">CheckOnClick</see> property. When several buttons
            	in the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> are assigned to the same group, checking one
            	of them will uncheck the one that is currently checked. If the
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CheckOnClick">CheckOnClick</see> property is set to
            	<strong>false</strong>, the <strong>Group</strong> property will be ignored.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CheckedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the toolbar button is
            checked.
            </summary>
            <value>
            The CSS class applied when the toolbar button is checked. The default value is
            <strong>string.Empty</strong>.
            </value>
            <example>
            By default the visual appearance of clicked toolbar buttons is defined in the skin CSS
            file. You can use the <strong>ClickedCssClass</strong> property to specify unique
            appearance for the toolbar button when it is clicked.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CheckedImageUrl">
            <summary>
            Gets or sets the path to an image to display for the button when its <see cref="P:Telerik.Web.UI.RadToolBarButton.Checked">Checked</see> state is "true".
            </summary>
            <value>
            The path to the image to display when its <see cref="P:Telerik.Web.UI.RadToolBarButton.Checked">Checked</see> state is "true". The default value
            is empty string.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/alignLeft.gif"
                <strong>CheckedImageUrl="~/Img/alignLeftChecked.gif"</strong> Text="Left" /&gt;<br/>
                &lt;telerik:RadToolBarButton ImageUrl="~/Img/alignRight.gif"
                <strong>CheckedImageUrl="~/Img/alignRightChecked.gif"</strong> Text="Right"
                /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
            <remarks>
            Use the <strong>CheckedImageUrl</strong> property to specify the image that will be
            used when the button is checked. If the <strong>CheckedImageUrl</strong>
            property is set to empty string the image specified by the <strong>ImageUrl</strong>
            property will be used. Use "~" (tilde) when referring to images within the current
            ASP.NET application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.AllowSelfUnCheck">
            <summary>
            Gets or sets a value indicating if a checked button will get unchecked when clicked.
            </summary>
            <value>
            If a checked button will get unchecked when clicked. The default value is
            <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.ItemTemplate">
            <summary>Gets or sets the template for displaying the button.</summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying the item. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            </value>
            <example>
            	<para>The following template demonstrates how to add a Calendar control in a certain
                ToolBar button.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadToolBar runat="server" ID="RadToolBar1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadToolBarDropDown Text="Date"&gt;</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>&lt;Items&gt;</para>
            					<para>&lt;telerik:RadToolBarButton Text="Date"&gt;</para>
            						<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            							<para>&lt;ItemTemplate&gt;</para>
            							<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            								<para>&lt;asp:Calendar runat="server" ID="Calendar1"
            								/&gt;</para>
            							</blockquote>
            							<para>&lt;/ItemTemplate&gt;</para>
            						</blockquote>
            					<para>&lt;/telerik:RadToolBarDropButton&gt;</para>
            				<para>&lt;/Items&gt;</para>
            			</blockquote>
            			<para>&lt;/telerik:RadToolBarDropDown&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.PostBack">
            <summary>
            Gets or sets a value indicating whether clicking on the button will
            postback.
            </summary>
            <value>
            	<strong>True</strong> if the toolbar button should postback; otherwise
                <strong>false</strong>. By default all the items will postback provided the user
                has subscribed to the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonClick">ButtonClick</see> event.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonClick">ButtonClick</see> all toolbar
                buttons will postback. To turn off that behavior you should set the
                <strong>PostBack</strong> property to <strong>false</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.Value">
            <summary>Gets or sets the value associated with the toolbar button.</summary>
            <value>The value associated with the button. The default value is empty string.</value>
            <remarks>
            	<para>Use the <b>Value</b> property to specify or determine the value associated
                with the button.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.NavigateUrl">
            <summary>Gets or sets the URL to link to when the button is clicked.</summary>
            <value>
            The URL to link to when the button is clicked. The default value is empty
            string.
            </value>
            <example>
                The following example demonstrates how to use the <strong>NavigateUrl</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="News" <strong>NavigateUrl="~/News.aspx"</strong>
                    /&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="External URL"
                    <strong>NavigateUrl="http://www.example.com"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>NavigateUrl</strong> property to specify the URL to link to when
            the button is clicked. Use "~" (tilde) in front of an URL within the same ASP.NET
            application. When specifying external URL do not forget the protocol (e.g.
            "http://").
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.Target">
            <summary>
            Gets or sets the target window or frame to display the Web page content linked to
            when the toolbar button is clicked.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the button is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="Itemle">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without
                            frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset
                            parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without
                            frames.</description>
            			</item>
            		</list>
            	</para>The default value is empty string.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to specify the frame or window that displays the
                    Web page linked to when the toolbar button is clicked. The Web page is specified by
                    setting the <see cref="P:Telerik.Web.UI.RadToolBarButton.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>If this property is not set, the Web page specified by the
                <strong>NavigateUrl</strong> property is loaded in the current window.</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to use the <strong>Target</strong>
                property</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadToolBar runat="server" ID="RadToolBar1"&gt;</para>
            	<para>&lt;Items&gt;</para>
            	<para>&lt;telerik:RadToolBarButton <strong>Target="_blank"</strong>
                NavigateUrl="http://www.google.com" /&gt;</para>
            	<para>&lt;/Items&gt;</para>
            	<para>&lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CommandName">
            <summary>
            Gets or sets the command name associated with the toolbar button that is passed to the
            	ItemCommand event of the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance.
            </summary>
            <value>
            	The command name of the toolbar button. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CommandName">CommandName</see>
            </summary>
            <value>
            	An optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CommandName">CommandName</see>. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when
            the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> is clicked
            </summary>
            <value>
            	<strong>true</strong> if validation is performed when the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>
            is clicked otherwise, <b>false</b>. The default value is <b>true</b>.
            </value>
            <remarks>
            	<para>By default, page validation is performed when the button is clicked. Page
                validation determines whether the input controls associated with a validation
                control on the page all pass the validation rules specified by the validation
                control. You can specify or determine whether validation is performed when the button is clicked
            	on both the client and the server by using the <b>CausesValidation</b>
                property. To prevent validation from being performed, set the
                <b>CausesValidation</b> property to <b>false</b>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.ValidationGroup">
            <summary>
            	<para>Gets or sets the name of the validation group to which the
            	<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> belongs.</para>
            </summary>
            <value>
            The name of the validation group to which this <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>
            belongs. The default is an empty string (""), which indicates that this property is not set.
            </value>
            <remarks>
                This property works only when <see cref="P:Telerik.Web.UI.RadToolBarButton.CausesValidation">CausesValidation</see>
                is set to true.
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButton.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when the
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when the
            	<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> is clicked. The default value is an empty
            	string (""), which causes the page to post back to itself.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButton.ButtonRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButton.DropDownItemRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButton.SeparatorRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButton.TemplatedButtonRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarDropDown">
            <summary>Represents a dropdown in the RadToolBar class.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarDropDown.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarDropDown dropdown = new RadToolBarDropDown();
            dropdown.Text = "Manage";
            dropdown.ImageUrl = "~/ToolbarImages/Manage.gif";
             
            RadToolBar1.Items.Add(dropdown);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim dropdown As New RadToolBarDropDown()
            dropdown.Text = "Manage"
            dropdown.ImageUrl = "~/ToolbarImages/Manage.gif"
             
            RadToolBar1.Items.Add(dropdown)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarDropDown.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> class with the
                specified text data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> class using the specified text.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarDropDown dropdown = new RadToolBarDropDown("Manage");
             
            RadToolBar1.Items.Add(dropdown);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim dropdown As New RadToolBarDropDown("Manage")
            
            RadToolBar1.Items.Add(dropdown)
                </code>
            </example>
            <param name="text">
                The text of the dropdown. The <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarDropDown.Buttons">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> object that
            	contains the child buttons of the dropdown.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> that contains the
            	child buttons of the dropdown. By default the collection is empty (the dropdown has no buttons).
            </value>
            <remarks>
            	Use the <strong>Buttons</strong> property to access the child buttons of the dropdown. You can also use
            	the <strong>Buttons</strong> property to manage the children of the dropdown. You can add,
            	remove or modify buttons from the <strong>Buttons</strong> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of child buttons.
                <code lang="CS">
            		manageDropDown.Buttons[0].Text = "Users";
            		manageDropDown.Buttons[0].ImageUrl = "~/ToolbarImages/ManageUsers.gif";
                </code>
            	<code lang="VB">
            		manageDropDown.Buttons[0].Text = "Users"
            		manageDropDown.Buttons[0].ImageUrl = "~/ToolbarImages/ManageUsers.gif"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarDropDown.ExpandDirection">
            <summary>
            Gets or sets the expand direction of the drop down.
            </summary>
            <value>
            The expand direction of the drop down. The
            default value is <strong>ToolBarDropDownExpandDirection.Down</strong>.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarDropDown ImageUrl="~/Img/bold.gif"
                <strong>ExpandDirection="Up"</strong> Text="Bold" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarDropDown.DropDownWidth">
            <summary>
            Gets or sets the width of the dropdown in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarDropDown.DropDownHeight">
            <summary>
            Gets or sets the height of the dropdown in pixels.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarDropDown.DropDownRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarSplitButton">
            <summary>Represents a splitbutton in the RadToolBar class.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarSplitButton.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarSplitButton splitButton = new RadToolBarSplitButton();
            splitButton.Text = "News";
            splitButton.ImageUrl = "~/News.gif";
             
            RadToolBar1.Items.Add(splitButton);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim splitButton As New RadToolBarSplitButton()
            splitButton.Text = "News"
            splitButton.ImageUrl = "~/News.gif"
             
            RadToolBar1.Items.Add(splitButton)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarSplitButton.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> class with the
                specified text data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> class using the specified text.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadToolBarSplitButton splitButton = new RadToolBarSplitButton("News");
             
            RadToolBar1.Items.Add(splitButton);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim splitButton As New RadToolBarSplitButton("News")
             
            RadToolBar1.Items.Add(splitButton)
                </code>
            </example>
            <param name="text">
                The text of the split button. The <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.Buttons">
            <summary>
            	Gets a <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> object that
            	contains the child buttons of the split button.
            </summary>
            <value>
                A <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> that contains the
            	child buttons of the split button. By default the collection is empty (the split button has
            	no buttons).
            </value>
            <remarks>
            	Use the <strong>Buttons</strong> property to access the child buttons of the split button.
            	You can also use the <strong>Buttons</strong> property to manage the children of the
            	current tab. You can add, remove or modify buttons from the <strong>Buttons</strong> collection.
            </remarks>
            <example>
                The following example demonstrates how to programmatically modify the properties of child buttons.
                <code lang="CS">
            		registerPurchaseSplitButton.Buttons[0].Text = "Cache Purchase";
            		registerPurchaseSplitButton.Buttons[0].ImageUrl = "~/ToolBarImages/RegisterCachePurchase.gif";
            
            		registerPurchaseSplitButton.Buttons[1].Text = "Check Purchase";
            		registerPurchaseSplitButton.Buttons[1].ImageUrl = "~/ToolBarImages/RegisterCheckPurchase.gif";
                </code>
            	<code lang="VB">
            		registerPurchaseSplitButton.Buttons[0].Text = "Cache Purchase"
            		registerPurchaseSplitButton.Buttons[0].ImageUrl = "~/ToolBarImages/RegisterCachePurchase.gif"
            
            		registerPurchaseSplitButton.Buttons[1].Text = "Check Purchase"
            		registerPurchaseSplitButton.Buttons[1].ImageUrl = "~/ToolBarImages/RegisterCheckPurchase.gif"
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.ExpandDirection">
            <summary>
            Gets or sets the expand direction of the drop down.
            </summary>
            <value>
            The expand direction of the drop down. The
            default value is <strong>ToolBarDropDownExpandDirection.Down</strong>.
            </value>
            <example>
            	<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1" runat="server"&gt;<br/>
                &lt;Items&gt;<br/>
                &lt;telerik:RadToolBarDropDown ImageUrl="~/Img/bold.gif"
                <strong>ExpandDirection="Up"</strong> Text="Bold" /&gt;<br/>
                &lt;/Items&gt;<br/>
                &lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.DropDownWidth">
            <summary>
            Gets or sets the width of the dropdown in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.DropDownHeight">
            <summary>
            Gets or sets the height of the dropdown in pixels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.EnableDefaultButton">
            <summary>Gets or sets a value, indicating if the <strong>RadToolBarSplitButton</strong> will
            	use the <strong>DefaultButton</strong> behavior.</summary>
            <value>
            	A value, indicating if the <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> wll
            	use the <strong>DefaultButton</strong> behavior. The default value is <strong>true</strong>
            </value>
            <remarks>
            	<para>Use the <strong>EnableDefaultButton</strong> property to set if
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> will use the <strong>DefaultButton</strong>
            	behavior or not. When the <strong>DefaultButton</strong> behavior is used, the
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> properties are ignored and the
            	properties of the last selected button are used instead. Use the <strong>EnableDefaultButton</strong>
            	property in conjunction with the <see cref="P:Telerik.Web.UI.RadToolBarSplitButton.DefaultButtonIndex">DefaultButtonIndex</see> property to
            	specify which of the <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> child buttons will
            	be used when the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> is initially displayed.</para>
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>EnableDefaultButton</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                        &lt;telerik:RadToolBarSplitButton <strong>EnableDefaultButton="true"
            			DefaultButtonIndex="1"&gt;</strong>
                            &lt;Buttons&gt;<br/>
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/red.gif" Text="Red" /&gt;
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/green.gif" Text="Green" /&gt;
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/blue.gif" Text="Blue" /&gt;
                            &lt;/Buttons&gt;<br/>
            	        &lt;/telerik:RadToolBarSplitButton&gt;/<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.DefaultButtonIndex">
            <summary>Gets or sets the index of the button which properties will be used by default when the
            	<see cref="P:Telerik.Web.UI.RadToolBarSplitButton.EnableDefaultButton">EnableDefaultButton</see> property set to true.</summary>
            <value>
            	The index of the button which properties will be used by default when the
            	<see cref="P:Telerik.Web.UI.RadToolBarSplitButton.EnableDefaultButton">EnableDefaultButton</see> property set to true.
            	The default value is <strong>0</strong>
            </value>
            <remarks>
            	Use the <strong>DefaultButtonIndex</strong> property to specify the button
            which properties <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> will use
            when the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> is initially displayed.
            </remarks>
            <example>
                The following example demonstrates how to use the <strong>DefaultButtonIndex</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                        &lt;telerik:RadToolBarSplitButton <strong>EnableDefaultButton="true"
            			DefaultButtonIndex="1"&gt;</strong>
                            &lt;Buttons&gt;<br/>
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/red.gif" Text="Red" /&gt;
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/green.gif" Text="Green" /&gt;
            	        		&lt;telerik:RadToolBarButton ImageUrl="~/images/blue.gif" Text="Blue" /&gt;
                            &lt;/Buttons&gt;<br/>
            	        &lt;/telerik:RadToolBarSplitButton&gt;/<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.ItemTemplate">
            <summary>Gets or sets the template for displaying the button.</summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying the button. The default value is a null reference (<strong>Nothing</strong> in
                Visual Basic), which indicates that this property is not set.</para>
            </value>
            <example>
            	<para>The following template demonstrates how to add a Calendar control in a certain
                ToolBar button.</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadToolBar runat="server" ID="RadToolBar1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;telerik:RadToolBarDropDown Text="Date"&gt;</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>&lt;Items&gt;</para>
            				<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            					<para>&lt;ItemTemplate&gt;</para>
            					<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            						<para>&lt;asp:Calendar runat="server" ID="Calendar1"
                                       /&gt;</para>
            					</blockquote>
            					<para>&lt;/ItemTemplate&gt;</para>
            				</blockquote>
            				<para>&lt;/Items&gt;</para>
            			</blockquote>
            			<para>&lt;/telerik:RadToolBarDropDown&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.PostBack">
            <summary>
            Gets or sets a value indicating whether clicking on the button will
            postback.
            </summary>
            <value>
            	<strong>True</strong> if the toolbar split button should postback; otherwise
                <strong>false</strong>. By default all the items will postback provided the user
                has subscribed to the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonClick">ButtonClick</see> event.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadToolBar.ButtonClick">ButtonClick</see> all toolbar
                buttons will postback. To turn off that behavior you should set the
                <strong>PostBack</strong> property to <strong>false</strong>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.Value">
            <summary>Gets or sets the value associated with the toolbar split button.</summary>
            <value>The value associated with the button. The default value is empty string.</value>
            <remarks>
            	<para>Use the <b>Value</b> property to specify or determine the value associated
                with the button.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.NavigateUrl">
            <summary>Gets or sets the URL to link to when the button is clicked.</summary>
            <value>
            The URL to link to when the button is clicked. The default value is empty
            string.
            </value>
            <example>
                The following example demonstrates how to use the <strong>NavigateUrl</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadToolBar id="RadToolBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                        &lt;telerik:RadToolBarSplitButton Text="News" <strong>NavigateUrl="~/News.aspx"</strong>
                        ImageUrl="~/Img/News.gif"&gt;
                            &lt;Buttons&gt;<br/>
            	        		&lt;telerik:RadToolBarButton Text="Button1" /&gt;
                            &lt;/Buttons&gt;<br/>
            	        &lt;/telerik:RadToolBarSplitButton&gt;/<br/>
                        &lt;telerik:RadToolBarButton Text="News" <strong>NavigateUrl="~/News.aspx"</strong>
                        /&gt;<br/>
                    &lt;telerik:RadToolBarButton Text="External URL"
                    <strong>NavigateUrl="http://www.example.com"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadToolBar&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>NavigateUrl</strong> property to specify the URL to link to when
            the button is clicked. Use "~" (tilde) in front of an URL within the same ASP.NET
            application. When specifying external URL do not forget the protocol (e.g.
            "http://").
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.Target">
            <summary>
            Gets or sets the target window or frame to display the Web page content linked to
            when the toolbar button is clicked.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the button is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="Itemle">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without
                            frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset
                            parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without
                            frames.</description>
            			</item>
            		</list>
            	</para>The default value is empty string.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to specify the frame or window that displays the
                    Web page linked to when the toolbar button is clicked. The Web page is specified by
                    setting the <see cref="P:Telerik.Web.UI.RadToolBarSplitButton.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>If this property is not set, the Web page specified by the
                <strong>NavigateUrl</strong> property is loaded in the current window.</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to use the <strong>Target</strong>
                property</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadToolBar runat="server" ID="RadToolBar1"&gt;</para>
            	<para>&lt;Items&gt;</para>
                        &lt;telerik:RadToolBarSplitButton Text="News" NavigateUrl="~/News.aspx"
                        <strong>Target="_blank"</strong> ImageUrl="~/Img/News.gif"&gt;
                            &lt;Buttons&gt;<br/>
            	        		&lt;telerik:RadToolBarButton Text="Button1" /&gt;
                            &lt;/Buttons&gt;<br/>
            	        &lt;/telerik:RadToolBarSplitButton&gt;/<br/>
            	<para>&lt;/Items&gt;</para>
            	<para>&lt;/telerik:RadToolBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.CommandName">
            <summary>
            Gets or sets the command name associated with the toolbar button that is passed to the
            	ItemCommand event of the <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance.
            </summary>
            <value>
            	The command name of the toolbar button. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.CommandArgument">
            <summary>
            Gets or sets an optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CommandName">CommandName</see>
            </summary>
            <value>
            	An optional parameter passed to the Command event of the
            	<see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> instance along with the associated
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.CommandName">CommandName</see>. The default value is an empty string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.CausesValidation">
            <summary>
            Gets or sets a value indicating whether validation is performed when
            the <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> is clicked
            </summary>
            <value>
            	<strong>true</strong> if validation is performed when the
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> is clicked otherwise, <b>false</b>.
            	The default value is <b>true</b>.
            </value>
            <remarks>
            	<para>By default, page validation is performed when the button is clicked. Page
                validation determines whether the input controls associated with a validation
                control on the page all pass the validation rules specified by the validation
                control. You can specify or determine whether validation is performed when the button is clicked
            	on both the client and the server by using the <b>CausesValidation</b>
                property. To prevent validation from being performed, set the
                <b>CausesValidation</b> property to <b>false</b>.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.ValidationGroup">
            <summary>
            	<para>Gets or sets the name of the validation group to which the
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> belongs.</para>
            </summary>
            <value>
            The name of the validation group to which this <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>
            belongs. The default is an empty string (""), which indicates that this property is not set.
            </value>
            <remarks>
                This property works only when <see cref="P:Telerik.Web.UI.RadToolBarSplitButton.CausesValidation">CausesValidation</see>
                is set to true.
            </remarks>
            
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarSplitButton.PostBackUrl">
            <summary>
            	Gets or sets the URL of the page to post to from the current page when the
                <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> is clicked.
            </summary>
            <value>
            	The URL of the Web page to post to from the current page when the
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see> is clicked. The default value is an empty
            	string (""), which causes the page to post back to itself.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarSplitButton.SplitButtonRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarSplitButton.TemplatedSplitButtonRenderer">
            <exclude />
            <excludetoc />
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs.Text">
            <summary>
            Text is the text in the input area of the combobox. 
            This value can be used to filter the items that are added.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs.Value">
            <summary>
            Value is the value of the currently selected item.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs.NumberOfItems">
            <summary>
            NumberOfItems  is the number of items that have been added by all previous calls to the 
            ItemsRequested event handler when the ShowMoreResultsBox property is True. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs.EndOfItems">
            <summary>
            EndOfItems is boolean property indicating that no more items should be requested.
            Once set, the serverside ItemsRequested event is no longer fired.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadComboBoxItemsRequestedEventArgs.Message">
            <summary>
            Message is the message that appears in the ShowMoreResults box. 
            This is only used when the ShowMoreResultsBox property is True.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ComboBoxPostBackArguments">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadComboBoxClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Attributes">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.ClientStateLogPlayer`1">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.ClientStateLogEntry">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.ClientStateLogEntryType">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.EventMap">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.AutoFilterColumnElement">
            <summary>
            Defines the filtering properties for a single column of the AutoFilter range. 
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.AutoFilterConditionElement">
            <summary>
            Defines a single condition in a custom AutoFilter function.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.AutoFilterAndElement">
            <summary>
            Defines an AND condition in a custom AutoFilter function.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.AutoFilterOrElement">
            <summary>
            Defines an OR condition in a custom AutoFilter function.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.AutoFilterElement">
            <summary>
            Defines an AutoFilter range on the current worksheet.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.BorderStyles.Weight">
            <summary>
            Max value 3
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.BorderStyles.PositionType">
            <summary>
            This is required
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.GridExcelBuilder.ColumnElement">
            <summary>
            Represents a column in the XMLSS structure
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.ColumnElement.Hidden">
            <summary>
            True specifies that this column is hidden. False (or omitted) specifies that this column is shown. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.ColumnElement.Width">
            <summary>
            Specifies the width of a column. This value must be greater than or equal to 0. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.RowElement.Height">
            <summary>
            Specifies the height of a row. This value must be greater than or equal to 0. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.RowElement.InnerElements">
            <summary>
            This element cannot have inner elements.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.GridExcelBuilder.StyleElement.AppendAttributes(System.Text.StringBuilder)">
            <exception cref="T:System.Exception">Id must be set</exception>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.StylesElement.Attributes">
            <summary>
            This element cannot have attributes
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.GridExcelBuilder.WorksheetElement.WorksheetOptions">
            <summary>
            Provides the possibility to change various options for the current Worksheet.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AnimationType">
            <summary>Represents the effects that can be used in an animation.</summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuControlTarget">
            <summary>
            Represents a <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see>target, specified
            by the id of a server control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuTarget">
            <summary>
            An abstract class representing a target
               which <see cref="T:Telerik.Web.UI.RadContextMenu">RadContextMenu</see> will be attached to.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuControlTarget.ControlID">
            <summary>
            Gets or sets the ID of the server control <see cref="T:Telerik.Web.UI.RadContextMenu">RadContextMenu</see>
               will attach to.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuDocumentTarget">
            <summary>
            Specifies that the <see cref="T:Telerik.Web.UI.RadContextMenu">RadContextMenu</see> will be displayed
                when a right-click on the entire page occurs.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuElementTarget">
            <summary>
            Represents a <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see>target, specified
            by client-side element id.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuElementTarget.ElementID">
            <summary>
            Gets or sets the ID of the element <see cref="T:Telerik.Web.UI.RadContextMenu">RadContextMenu</see>
               will attach to on the client.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuTagNameTarget">
            <summary>
            Represents a <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see>target, specified
            by element tagName.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuTagNameTarget.TagName">
            <summary>
            Gets or sets the TagName of the elements <see cref="T:Telerik.Web.UI.RadContextMenu">RadContextMenu</see>
               will search and attach to on the client.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.ContextMenuTargetCollection">
            <summary>
            Represents a collection of <see cref="T:Telerik.Web.UI.ContextMenuTarget"/> objects.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.#ctor(Telerik.Web.UI.RadContextMenu)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see> class.
            </summary>
            <param name="owner">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.Add(Telerik.Web.UI.ContextMenuTarget)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object to the end of the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="target">
            The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> to append to the end of the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.Contains(Telerik.Web.UI.ContextMenuTarget)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="target">
            	The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.CopyTo(Telerik.Web.UI.ContextMenuTarget[],System.Int32)">
            <summary>
            Copies the contents of the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see> into the 
            specified array of <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> objects.
            </summary>
            <param name="array">The target array.</param>
            <param name="index">The index to start copying from.</param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.ContextMenuTarget})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="targets">
                The array of <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> o append to the end of the current 
            <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.IndexOf(Telerik.Web.UI.ContextMenuTarget)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object in the collection.
            </summary>
            <param name="target">
            	The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> to locate.
            </param>
            <returns>
            	The zero-based index of tab within the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.Insert(System.Int32,Telerik.Web.UI.ContextMenuTarget)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object in the current 
            <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see>.</param>
            <param name="target">The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.Remove(Telerik.Web.UI.ContextMenuTarget)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object from the current
            	<see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="target">
            	The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.ContextMenuTargetCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="index">The zero-based index of the tab to remove.</param>
        </member>
        <member name="P:Telerik.Web.UI.ContextMenuTargetCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.ContextMenuTarget">ContextMenuTarget</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.ContextMenuTargetCollection">ContextMenuTargetCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.MenuItemExpandMode">
            <summary>
            This enumeration controls the expand behaviour of the items.	
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MenuItemExpandMode.ClientSide">
            <summary>
            The default behaviour - all items are loaded in the intial request and expand is performed on the client, without server interaction
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.MenuItemExpandMode.WebService">
            <summary>
            The child items are loaded from the web service specified by the RadMenu.WebServicePath and RadMenu.WebServiceMethod properties.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.AnimationSettingsConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemGroupSettingsConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemBindingCollection">
            <summary>
            	Represents a collection of <see cref="T:Telerik.Web.UI.RadMenuItemBinding"/> objects.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBindingCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadMenuItemBinding"/> object at the specified index from the collection.
            </summary>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadMenuItemBinding"/>at the specified index in the collection.
            </returns>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadMenuItemBinding"/> to retrieve.
            </param>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemBinding">
            <summary>
            	Defines the relationship between a data item and the menu item it is binding to in a 
            	<see cref="T:Telerik.Web.UI.RadMenu"/>control. 
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadMenuItemBinding.ApplyTo(Telerik.Web.UI.NavigationItem,System.Object,Telerik.Web.UI.PropertyDescriptorCache)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ClickedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.ClickedCssClass">ClickedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ClickedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.ClickedCssClass">ClickedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.DisabledCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledCssClass">DisabledCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.DisabledCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledCssClass">DisabledCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.DisabledImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledImageUrl">DisabledImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.DisabledImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledImageUrl">DisabledImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedImageUrl">ExpandedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedImageUrl">ExpandedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedCssClass">ExpandedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedCssClass">ExpandedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandMode">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandMode">ExpandMode</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.ExpandModeField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandMode">ExpandMode</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.FocusedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.FocusedCssClass">FocusedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.FocusedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.FocusedCssClass">FocusedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.IsSeparator">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadMenuItem.IsSeparator">IsSeparator</see> property of the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemBinding.IsSeparatorField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadMenuItem.IsSeparator">IsSeparator</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadMenuClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadMenuItemData">
            <summary>
            	Data class used for transferring menu items from and to web services.
            </summary>
            <remarks>
            	For information about the role of each property see the
            	<see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem class</see>.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ExpandMode">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandMode">RadMenuItem.ExpandMode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.Selected">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandMode">RadMenuItem.Selected</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.NavigateUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.NavigateUrl">RadMenuItem.NavigateUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.PostBack">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.PostBack">RadMenuItem.PostBack</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.Target">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.Target">RadMenuItem.Target</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.IsSeparator">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.IsSeparator">RadMenuItem.IsSeparator</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.CssClass">
            <summary>
            See <see cref="P:System.Web.UI.WebControls.WebControl.CssClass">RadMenuItem.CssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.DisabledCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledCssClass">RadMenuItem.DisabledCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ExpandedCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedCssClass">RadMenuItem.ExpandedCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.FocusedCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.FocusedCssClass">RadMenuItem.FocusedCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ClickedCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ClickedCssClass">RadMenuItem.ClickedCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ImageUrl">RadMenuItem.ImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.HoveredImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.HoveredImageUrl">RadMenuItem.HoveredImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ClickedImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ClickedImageUrl">RadMenuItem.ClickedImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.DisabledImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.DisabledImageUrl">RadMenuItem.DisabledImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadMenuItemData.ExpandedImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadMenuItem.ExpandedImageUrl">RadMenuItem.ExpandedImageUrl</see>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.PanelBarExpandMode">
            <summary>
            Represents the different ways RadPanelbar behaves when an item is
            expanded.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.PanelBarExpandMode.MultipleExpandedItems">
            <summary>More than one item can be expanded at a time.</summary>
        </member>
        <member name="F:Telerik.Web.UI.PanelBarExpandMode.SingleExpandedItem">
            <summary>
            Only one item can be expanded at a time. Expanding another item collapses the
            previously expanded one.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.PanelBarExpandMode.FullExpandedItem">
            <summary>
            Only one item can be expanded at a time. The expanded area occupies the entire height of the RadPanelbar.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelItemImagePosition">
            <summary>The position of the image within a panel item.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadPanelItemImagePosition.Left">
            <summary>The image is rendered leftmost.</summary>
        </member>
        <member name="F:Telerik.Web.UI.RadPanelItemImagePosition.Right">
            <summary>The image is rendered rightmost.</summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelBarEventArgs.#ctor(Telerik.Web.UI.RadPanelItem)">
            <summary>
                Initializes a new instance of the
                <see cref="T:Telerik.Web.UI.RadMenuEventArgs">RadMenuEventArgs</see> class.
            </summary>
            <param name="item">
                A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which represents an item in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelBarEventArgs.Item">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control when the event is raised.
            </summary>
            <value>
                The referenced item in the <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> control when
                the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadMenu">RadMenu</see> when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelBarClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadPanelItem">
            <summary>Represents a item in the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control.</summary>
            <remarks>
            	<para>
            		The <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control is made up of items. Items which are immediate children
            		of the panelbar are root items. Items which are children of root items are child items.
            	</para>
            	<para>
            		A item usually stores data in two properties, the <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property and 
            		the <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property. The value of the <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is displayed 
            		in the <b>RadPanelBar</b> control, and the <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property is used to store additional data.
            	</para>
            	<para>To create panel items, use one of the following methods:</para>
            	<list type="bullet">
            		<item>
            			Use declarative syntax to define items inline in your page or user control.
            		</item>
            		<item>
            			Use one of the constructors to dynamically create new instances of the
            			<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class. These items can then be added to the
            			<b>Items</b> collection of another item or panelbar.
            		</item>
            		<item>
            			Data bind the <b>RadPanelBar</b> control to a data source.
            		</item>
            	</list>
            	<para>
                    When the user clicks a panel item, the <b>RadPanelBar</b> control can navigate
                    to a linked Web page, post back to the server or select that item. If the
                    <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see> property of a item is set, the
                    <b>RadPanelBar</b> control navigates to the linked page. By default, a linked page
                    is displayed in the same window or frame. To display the linked content in a different 
            		window or frame, use the <see cref="P:Telerik.Web.UI.RadPanelItem.Target">Target</see> property.
                </para>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItem.#ctor">
            <summary>Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class.</summary>
            <remarks>
                Use this constructor to create and initialize a new instance of the
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class using default values.
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadPanelItem item = new RadPanelItem();
            item.Text = "News";
            item.NavigateUrl = "~/News.aspx";
             
            RadPanelbar1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadPanelItem()
            item.Text = "News"
            item.NavigateUrl = "~/News.aspx"
             
            RadPanelbar1.Items.Add(item)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItem.#ctor(System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class with the
                specified text data.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class using the specified text.
                </para>
            </remarks>
            <example>
                The following example demonstrates how to add items to
                <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> controls. 
                <code lang="CS" title="[New Example]">
            RadPanelItem item = new RadPanelItem("News");
             
            RadPanelbar1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadPanelItem("News")
             
            RadPanelbar1.Items.Add(item)
                </code>
            </example>
            <param name="text">
                The text of the item. The <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItem.ExpandParentItems">
            <summary>
            Expands all parent items so the item is visible.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItem.#ctor(System.String,System.String)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class with the
                specified text and URL to navigate to.
            </summary>
            <remarks>
            	<para>
                    Use this constructor to create and initialize a new instance of the
                    <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class using the specified text and URL.
                </para>
            </remarks>
            <example>
                This example demonstrates how to add items to <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see>
                controls. 
                <code lang="CS" title="[New Example]">
            RadPanelItem item = new RadPanelItem("News", "~/News.aspx");
             
            RadPanelbar1.Items.Add(item);
                </code>
            	<code lang="VB" title="[New Example]">
            Dim item As New RadPanelItem("News", "~/News.aspx")
             
            RadPanelbar1.Items.Add(item)
                </code>
            </example>
            <param name="text">
                The text of the item. The <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is set to the value
                of this parameter.
            </param>
            <param name="navigateUrl">
                The url which the item will navigate to. The
                <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see> property is set to the value of this
                parameter.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItem.ApplyHeaderTemplate">
            <summary>
            Instantiates the HeaderTemplate inside the Header. 
            Clears all existing controls in the Header before that.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ImagePosition">
            <summary>Gets or sets a value indicating the position of the image within the item.</summary>
            <value>
                One of the <see cref="T:Telerik.Web.UI.RadPanelItemImagePosition">RadPanelItemImagePosition
                Enumeration</see> values. The default value is <strong>Left</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.PanelBar">
            <summary>Gets the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> instance which contains the item.</summary>
            <remarks>
                Use this property to obtain an instance to the
                <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> object containing the item.
            </remarks>		
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Owner">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.IRadPanelItemContainer">IRadPanelItemContainer</see> instance which contains the current item.
            </summary>
            <value>
                The object which contains the item. It might be an instance of the
                <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> class or the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see>
                class depending on the hierarchy level.
            </value>
            <remarks>
                The value is of the <see cref="T:Telerik.Web.UI.IRadPanelItemContainer">IRadPanelItemContainer</see> type which is
                implemented by the <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> class and the
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> class. Use the <b>Owner</b> property when
                recursively traversing items in the <b>RadPanelBar</b> control.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.IsSeparator">
            <summary>
            Sets or gets whether the item is separator. It also represents a logical state of
            the item. Might be used in some applications for keyboard navigation to omit processing
            items that are marked as separators.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Expanded">
            <summary>Gets or sets a value indicating whether the panel item is expanded.</summary>
            <value>
            	<strong>true</strong> if the panel item is expanded; otherwise,
            <strong>false</strong>. The default is <strong>false</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Level">
            <summary>
            Manages the item level of a particular Item instance. This property allows easy
            implementation/separation of the panel items in levels.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ChildGroupHeight">
            <summary>Gets or sets the height of the child item group.</summary>
            <value>
            A <strong>Unit</strong> that represents the height of the child item group. The
            default value is <strong>Empty.</strong>
            </value>
            <remarks>
            If the total child group height exceeds the value specified with the
            <strong>ChildGroupHeight</strong> property scrolling will be applied.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ChildGroupCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied to the element enclosing the child items.
            </summary>
            <value>
            The default value is empry string.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.DisabledCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the panel item is
            disabled.
            </summary>
            <value>
            The CSS class applied when the panel item is disabled. The default value is
            <strong>"disabled"</strong>.
            </value>
            <remarks>
            By default the visual appearance of disabled panel items is defined in the skin CSS
            file. You can use the <strong>DisabledCssClass</strong> property to specify unique
            appearance for the panel item when it is disabled.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.PostBack">
            <summary>
            Gets or sets a value indicating whether clicking on the item will
            postback.
            </summary>
            <value>
            	<strong>True</strong> if the panel item should postback; otherwise
                <strong>false</strong>. By default all the items will postback provided the user
                has subscribed to the <see cref="E:Telerik.Web.UI.RadPanelBar.ItemClick">ItemClick</see> event.
            </value>
            <remarks>
                If you subscribe to the <see cref="E:Telerik.Web.UI.RadPanelBar.ItemClick">ItemClick</see> all panel
                items will postback. To turn off that behavior you should set the
                <strong>PostBack</strong> property to <strong>false</strong>. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.PreventCollapse">
            <summary>
            Gets or sets a value indicating whether clicking on the item will
            collapse it.
            </summary>
            <value>
            	<strong>False</strong> if the panel item should collapse; otherwise
                <strong>True</strong>.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Selected">
            <summary>Gets or sets a value indicating whether the item is selected.</summary>
            <value>
            	<para><b>true</b> if the item is selected; otherwise, <b>false</b>. The default is
                <b>false</b>.</para>
            </value>
            <value>
            	<strong>true</strong> if the item is selected; otherwise <strong>false</strong>.
            The default value is <strong>false</strong>.
            </value>
            <remarks>
                Use the <b>Selected</b> property to determine whether the item is currently selected. 
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Text">
            <summary>Gets or sets the text caption for the panel item.</summary>
            <value>The text of the item. The default value is empty string.</value>
            <example>
                This example demonstrates how to set the text of the item using the
                <strong>Text</strong> property. 
                <para>
            		<para class="sourcecode">&lt;radP:RadPanelbar ID="RadPanelbar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;radP:RadPanelItem <strong>Text="News"</strong> /&gt;<br/>
                    &lt;radP:RadPanelItem <strong>Text="News"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/radP:RadPanelbar&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>Text</strong> property to specify the text to display for the
            item.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">
            <summary>Gets or sets the URL to link to when the item is clicked.</summary>
            <value>
            The URL to link to when the item is clicked. The default value is empty
            string.
            </value>
            <example>
                The following example demonstrates how to use the <strong>NavigateUrl</strong>
                property 
                <para>
            		<para class="sourcecode">&lt;telerik:RadPanelBar id="RadPanelBar1"
                    runat="server"&gt;<br/>
                    &lt;Items&gt;<br/>
                    &lt;telerik:RadPanelItem Text="News" <strong>NavigateUrl="~/News.aspx"</strong>
                    /&gt;<br/>
                    &lt;telerik:RadPanelItem Text="External URL"
                    <strong>NavigateUrl="http://www.example.com"</strong> /&gt;<br/>
                    &lt;/Items&gt;<br/>
                    &lt;/telerik:RadPanelBar&gt;</para>
            	</para>
            </example>
            <remarks>
            Use the <strong>NavigateUrl</strong> property to specify the URL to link to when
            the item is clicked. Use "~" (tilde) in front of an URL within the same ASP.NET
            application. When specifying external URL do not forget the protocol (e.g.
            "http://").
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Target">
            <summary>
            Gets or sets the target window or frame to display the Web page content linked to
            when the panel item is clicked.
            </summary>
            <value>
            	<para>The target window or frame to load the Web page linked to when the Item is
                selected. Values must begin with a letter in the range of a through z (case
                insensitive), except for the following special values, which begin with an
                underscore:</para>
            	<para>
            		<list type="Itemle">
            			<item>
            				<term>_blank</term>
            				<description>Renders the content in a new window without
                            frames.</description>
            			</item>
            			<item>
            				<term>_parent</term>
            				<description>Renders the content in the immediate frameset
                            parent.</description>
            			</item>
            			<item>
            				<term>_self</term>
            				<description>Renders the content in the frame with focus.</description>
            			</item>
            			<item>
            				<term>_top</term>
            				<description>Renders the content in the full window without
                            frames.</description>
            			</item>
            		</list>
            	</para>The default value is empty string.
            </value>
            <remarks>
            	<para>
                    Use the <b>Target</b> property to specify the frame or window that displays the
                    Web page linked to when the panel item is clicked. The Web page is specified by
                    setting the <see cref="P:Telerik.Web.UI.RadPanelItem.NavigateUrl">NavigateUrl</see> property.
                </para>
            	<para>If this property is not set, the Web page specified by the
                <strong>NavigateUrl</strong> property is loaded in the current window.</para>
            </remarks>
            <example>
            	<para>The following example demonstrates how to use the <strong>Target</strong>
                property</para>
            	<para>ASPX:</para>
            	<para>&lt;telerik:RadPanelBar runat="server" ID="RadPanelBar1"&gt;</para>
            	<para>&lt;Items&gt;</para>
            	<para>&lt;telerik:RadPanelItem <strong>Target="_blank"</strong>
                NavigateUrl="http://www.google.com" /&gt;</para>
            	<para>&lt;/Items&gt;</para>
            	<para>&lt;/telerik:RadPanelBar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Value">
            <summary>Gets or sets the value associated with the panel item.</summary>
            <value>The value associated with the item. The default value is empty string.</value>
            <remarks>
            	<para>Use the <b>Value</b> property to specify or determine the value associated
                with the item.</para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.DataItem">
            <summary>Gets or sets the data item represented by the item.</summary>
            <value>
                An object representing the data item to which the Item is bound to. The
                <strong>DataItem</strong> property will always return <strong>null</strong> when
                accessed outside of <see cref="E:Telerik.Web.UI.RadPanelBar.ItemDataBound">ItemDataBound</see>
                event handler.
            </value>
            <remarks>
                This property is applicable only during data binding. Use it along with the
                <see cref="E:Telerik.Web.UI.RadPanelBar.ItemDataBound">ItemDataBound</see> event to perform
                additional mapping of fields from the data item to
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> properties.
            </remarks>
            <example>
                The following example demonstrates how to map fields from the data item to
                %<strong>RadPanelItem</strong> properties. It assumes the user has subscribed to
                the ItemDataBound:RadPanelbar.ItemDataBound
                <see cref="E:Telerik.Web.UI.RadPanelBar.ItemDataBound">event.</see>:RadPanelItem% 
                <code lang="CS">
            private void RadPanelbar1_PanelItemDataBound(object sender, Telerik.WebControls.RadPanelbarEventArgs e)
            {
                RadPanelItem item = e.Item;
                DataRowView dataRow = (DataRowView) e.Item.DataItem;
             
                item.ImageUrl = "image" + dataRow["ID"].ToString() + ".gif";
                item.NavigateUrl = dataRow["URL"].ToString();
            }
                </code>
            	<code lang="VB">
            Sub RadPanel1_PanelItemDataBound(ByVal sender As Object, ByVal e As RadPanelbarEventArgs) Handles RadPanelbar1.ItemDataBound
                Dim item As RadPanelItem = e.Item
                Dim dataRow As DataRowView = CType(e.Item.DataItem, DataRowView)
             
                item.ImageUrl = "image" + dataRow("ID").ToString() + ".gif"
                item.NavigateUrl = dataRow("URL").ToString()
            End Sub
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ItemTemplate">
            <summary>Gets or sets the template for displaying the item.</summary>
            <value>
            	<para>A <strong>ITemplate</strong> implemented object that contains the template
                for displaying the item. The default value is a null reference (<b>Nothing</b> in
                Visual Basic), which indicates that this property is not set.</para>
            	<para>
                    To specify common display for all panel items use the
                    <see cref="P:Telerik.Web.UI.RadPanelBar.ItemTemplate">ItemTemplate</see> property of the
                    <strong>RadPanelbar</strong> class.
                </para>
            </value>
            <example>
            	<para>The following template demonstrates how to add a Calendar control in certain
                panel item.</para>
            	<para>ASPX:</para>
            	<para>&lt;radP:RadPanelbar runat="server" ID="RadPanelbar1"&gt;</para>
            	<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            		<para>&lt;Items&gt;</para>
            		<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            			<para>&lt;radP:RadPanelItem Text="Date"&gt;</para>
            			<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            				<para>&lt;Items&gt;</para>
            				<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            					<para>&lt;radP:RadPanelItem Text="SelectDate"&gt;</para>
            					<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            						<para>&lt;ItemTemplate&gt;</para>
            						<blockquote dir="ltr" style="MARGIN-RIGHT: 0px">
            							<para>&lt;asp:Calendar runat="server" ID="Calendar1"
                                        /&gt;</para>
            						</blockquote>
            						<para>&lt;/ItemTemplate&gt;</para>
            					</blockquote>
            					<para>&lt;/radP:RadPanelItem&gt;</para>
            				</blockquote>
            				<para>&lt;/Items&gt;</para>
            			</blockquote>
            			<para>&lt;/radP:RadPanelItem&gt;</para>
            		</blockquote>
            		<para>&lt;/Items&gt;</para>
            	</blockquote>
            	<para>&lt;/radP:RadPanelbar&gt;</para>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.HeaderTemplate">
            <summary> 
            Gets or sets the template for displaying footer in
            <strong>RadcomboBox</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.Header">
            <summary>
            Get the Header Template container of the <strong>RadPanelItem</strong>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ImageUrl">
            <summary>Gets or sets the path to an image to display for the item.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ImageUrl</strong> property to specify the image for the item. If
            the <strong>ImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.HoveredImageUrl">
            <summary>
            Gets or sets a value specifying the URL of the image rendered when the node is hovered with the mouse.
            </summary>
            <remarks>
            If the <c>HoveredImageUrl</c> property is not set the <see cref="P:Telerik.Web.UI.RadPanelItem.ImageUrl">ImageUrl</see> property will be 
            used when the node is hovered.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.DisabledImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is disabled.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>DisabledImageUrl</strong> property to specify the image for the item when it is disabled. If
            the <strong>DisabledImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.SelectedImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is selected.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>SelectedImageUrl</strong> property to specify the image for the item when it is disabled. If
            the <strong>SelectedImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ExpandedImageUrl">
            <summary>Gets or sets the path to an image to display for the item when it is expanded.</summary>
            <value>
            The path to the image to display for the item. The default value is empty
            string.
            </value>
            <remarks>
            Use the <strong>ExpandedImageUrl</strong> property to specify the image for the item when it is expanded. If
            the <strong>ExpandedImageUrl</strong> property is set to empty string no image will be
            rendered. Use "~" (tilde) when referring to images within the current ASP.NET
            application.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.CssClass">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ClickedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the panel item is
            clicked.
            </summary>
            <value>
            The CSS class applied when the panel item is clicked. The default value is
            <strong>"clicked"</strong>.
            </value>
            <example>
            By default the visual appearance of clicked panel items is defined in the skin CSS
            file. You can use the <strong>ClickedCssClass</strong> property to specify unique
            appearance for the panel item when it is clicked.
            </example>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.SelectedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the panel item is
            selected.
            </summary>
            <value>
            The CSS class applied when the panel item is selected. The default value is
            <strong>"selected"</strong>.
            </value>
            <remarks>
            By default the visual appearance of selected panel items is defined in the skin CSS
            file. You can use the <strong>SelectedCssClass</strong> property to specify unique
            appearance for the panel item when it is selected.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.ExpandedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the panel item is
            opened (its child items are visible).
            </summary>
            <value>
            The CSS class applied when the panel item is opened. The default value is
            <strong>"expanded"</strong>.
            </value>
            <remarks>
            By default the visual appearance of opened panel items is defined in the skin CSS
            file. You can use the <strong>ExpandedCssClass</strong> property to specify unique
            appearance for the panel item when it is opened.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItem.FocusedCssClass">
            <summary>
            Gets or sets the Cascading Style Sheet (CSS) class applied when the panel item is
            focused.
            </summary>
            <value>
            The CSS class applied when the panel item is focused. The default value is
            <strong>"focused"</strong>.
            </value>
            <remarks>
            By default the visual appearance of focused panel items is defined in the skin CSS
            file. You can use the <strong>FocusedCssClass</strong> property to specify unique
            appearance for the panel item when it is focused.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelItemBinding">
            <summary>
            	Represents the simple binding between the property value of an object and the property value of a
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see>.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemBinding.ApplyTo(Telerik.Web.UI.NavigationItem,System.Object,Telerik.Web.UI.PropertyDescriptorCache)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ChildGroupCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ChildGroupCssClass">ChildGroupCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ChildGroupCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ChildGroupCssClass">ChildGroupCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ChildGroupHeight">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ChildGroupHeight">ChildGroupHeight</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ChildGroupHeightField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ChildGroupHeight">ChildGroupHeight</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ClickedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ClickedCssClass">ClickedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ClickedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ClickedCssClass">ClickedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.DisabledCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.DisabledCssClass">DisabledCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.DisabledCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.DisabledCssClass">DisabledCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.DisabledImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.DisabledImageUrl">DisabledImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.DisabledImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.DisabledImageUrl">DisabledImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.Expanded">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.Expanded">Expanded</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ExpandedField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.Expanded">Expanded</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ExpandedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ExpandedImageUrl">ExpandedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ExpandedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ExpandedImageUrl">ExpandedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ExpandedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ExpandedCssClass">ExpandedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ExpandedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ExpandedCssClass">ExpandedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.FocusedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.FocusedCssClass">FocusedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.FocusedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.FocusedCssClass">FocusedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ImagePosition">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.ImagePosition">ImagePosition</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.ImagePositionField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.ImagePosition">ImagePosition</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.IsSeparator">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.IsSeparator">IsSeparator</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.IsSeparatorField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.IsSeparator">IsSeparator</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.PreventCollapse">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.PreventCollapse">PreventCollapse</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.PreventCollapseField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.PreventCollapse">PreventCollapse</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.SelectedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.SelectedCssClass">SelectedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.SelectedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.SelectedCssClass">SelectedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.SelectedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadPanelItem.SelectedImageUrl">SelectedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemBinding.SelectedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadPanelItem.SelectedImageUrl">SelectedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadPanelItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadPanelBar">RadPanelBar</see> control.
            </summary>
            <remarks>
            	The <strong>RadPanelItemCollection</strong> class represents a collection of
                <strong>RadPanelItem</strong> objects.
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadPanelItemCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadPanelItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of panel items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadPanelItemCollection.Add(Telerik.Web.UI.RadPanelItem)">Add</see> method to add items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadPanelItemCollection.Remove(Telerik.Web.UI.RadPanelItem)">Remove</see> method to remove items from the
                        collection.
                    </item>
            	</list>
            </remarks>
            <moduleiscollection/>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.Add(Telerik.Web.UI.RadPanelItem)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object to the end of the current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> to append to the end of the current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add items in a
                <strong>RadPanelBar</strong> control.
            	<code lang="CS">
            		RadPanelItem newsItem = new RadPanelItem("News");
            		RadPanelBar1.Items.Add(newsItem);
                </code>
            	<code lang="VB">
            		Dim newsItem As RadPanelItem = New RadPanelItem("News")
            		RadPanelBar1.Items.Add(newsItem)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.AddRange(Telerik.Web.UI.RadPanelItem[])">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple items in a single step. 
                <code lang="CS">
            		RadPanelItem[] items = new RadPanelItem[] { new RadPanelItem("First"), new RadPanelItem("Second"), new RadPanelItem("Third") };
            		RadPanelBar1.Items.AddRange(items);
                </code>
            	<code lang="VB">
                    Dim items() As RadPanelItem = {New RadPanelItem("First"), New RadPanelItem("Second"), New RadPanelItem("Third")}
                    RadPanelBar1.Items.AddRange(items)
                </code>
            </example>
            <param name="items">
                The array of <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> o append to the end of the current 
            <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.Remove(Telerik.Web.UI.RadPanelItem)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <param name="index">The zero-based index of the item to remove.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.IndexOf(Telerik.Web.UI.RadPanelItem)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object in the collection.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> to locate.
            </param>
            <returns>
            	The zero-based index of item within the current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.Contains(Telerik.Web.UI.RadPanelItem)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object; 
            	otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.Insert(System.Int32,Telerik.Web.UI.RadPanelItem)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see>.</param>
            <param name="item">The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItemByText(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</cee> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property
            equal to the specified text.
            </summary>
            <param name="text">The text to search for</param>
            <returns>A <c>RadPanelItem</c> whose <c>Text</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItemByValue(System.String)">
            <summary>
            Searches all nodes for a <cee cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</cee> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property
            equal to the specified value.
            </summary>
            <param name="value">The value to search for</param>
            <returns>A <c>RadPanelItem</c> whose <c>Value</c> property equals to the specified argument. Null (Nothing) is returned when no matching node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItemByAttribute(System.String,System.String)">
            <summary>
            Searches the nodes in the collection for a <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadPanelItem</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItem(System.Predicate{Telerik.Web.UI.RadPanelItem})">
            <summary>
            Returns  the first <strong>RadPanelItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadPanel1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadPanelItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadPanel1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadPanelItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param> 
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadPanelItemCollection.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>RadPanelbar</strong> control for the first
                <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> with a <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> whose <see cref="P:Telerik.Web.UI.RadPanelItem.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>  
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="P:Telerik.Web.UI.RadPanelItemCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadPanelItem">RadPanelItem</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadPanelItemCollection">RadPanelItemCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.SpellCheckValidator">
            <summary>
            SpellCheckValidator validates a form based on a RadSpell control.  It can be used to enforce spellchecking before form submission.
            The ControlToValidate must be set to the ID of a RadSpell control.  The RadSpell control should be separately set up with a control to check and other options.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarButtonCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> objects in
                <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> and
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>.
            </summary>
            <remarks>
            	<para>The <strong>RadToolBarButtonCollection</strong> class represents a collection of
                <strong>RadToolBarButton</strong> objects. The <strong>RadToolBarButton</strong> objects
            	in turn represent buttons within a <see cref="T:Telerik.Web.UI.RadToolBarDropDown">RadToolBarDropDown</see> or
            	a <see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>.</para>
            	<list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadToolBarButtonCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadToolBarButton from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of buttons in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadToolBarButtonCollection.Add(Telerik.Web.UI.RadToolBarButton)">Add</see> method to add buttons to the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadToolBarButtonCollection.Remove(Telerik.Web.UI.RadToolBarButton)">Remove</see> method to remove buttons from the
                        collection.
                    </item>
            	</list>
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarItemCollection">
            <summary>
                A collection of <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> objects in a
                <see cref="T:Telerik.Web.UI.RadToolBar">RadToolBar</see> control.
            </summary>
            <remarks>
            	<para>The <strong>RadToolBarItemCollection</strong> class represents a collection of
                <strong>RadToolBarItem</strong> objects. The <strong>RadToolBarItem</strong> objects
            	in turn represent items (buttons, dropdowns or split buttons) within a
            	<strong>RadToolBar</strong> control.</para> <list type="bullet">
            		<item>
                        Use the <see cref="P:Telerik.Web.UI.RadToolBarItemCollection.Item(System.Int32)">indexer</see> to programmatically retrieve a
                        single RadToolBarItem from the collection, using array notation.
                    </item>
            		<item>
                        Use the <strong>Count</strong> property to determine the total
                        number of toolbar items in the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadToolBarItemCollection.Add(Telerik.Web.UI.RadToolBarItem)">Add</see> method to add toolbar items to the collection.
                    </item>
            		<item>
                        Use the <see cref="M:Telerik.Web.UI.RadToolBarItemCollection.Remove(Telerik.Web.UI.RadToolBarItem)">Remove</see> method to remove toolbar items from the
                        collection.
                    </item>
            	</list>
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.Add(Telerik.Web.UI.RadToolBarItem)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object to the end of the
            current <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> to append to the end of the current
            <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add toolbar buttons in a
                <strong>RadToolBar</strong> control.
            	<code lang="CS">
            		RadToolBarButton createNewButton = new RadToolBarButton("CreateNew");
            		RadToolBar1.Items.Add(createNewButton);
                </code>
            	<code lang="VB">
            		Dim createNewButton As RadToolBarButton = New RadToolBarButton("CreateNew")
            		RadToolBar1.Items.Add(createNewButton)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItemByText(System.String)">
            <summary>
                Searches the <strong>ToolBarItemCollection</strong> for the first
                <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> with a <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> which <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItemByValue(System.String)">
            <summary>
                Searches the <strong>ToolBarItemCollection</strong> for the first button item
                (<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>) with a
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A button item which <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItemByText(System.String,System.Boolean)">
            <summary>
                Searches the <strong>ToolBarItemCollection</strong> for the first
                <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> with a <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> which <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItemByValue(System.String,System.Boolean)">
            <summary>
                Searches the <strong>ToolBarItemCollection</strong> for the first button item
                (<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> or
            	<see cref="T:Telerik.Web.UI.RadToolBarSplitButton">RadToolBarSplitButton</see>) with a
            	<see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A button item which <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
            <param name="ignoreCase">A Boolean indicating a case-sensitive or insensitive comparison (true indicates a case-insensitive comparison).</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItemByAttribute(System.String,System.String)">
            <summary>
            Searches the items in the collection for a <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadToolBarItem</c> that matches the specified arguments. Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.FindItem(System.Predicate{Telerik.Web.UI.RadToolBarItem})">
            <summary>
            Returns  the first <strong>RadToolBarItem</strong> 
            that matches the conditions defined by the specified predicate.
            The predicate should returns a boolean value.
            </summary>
            <example>
            The following example demonstrates how to use the <strong>FindItem</strong> method.
            <code lang="CS">	
            void Page_Load(object sender, EventArgs e)
            {
                RadToolBar1.FindItem(ItemWithEqualsTextAndValue);
            }
            private static bool ItemWithEqualsTextAndValue(RadToolBarItem item)
            {
                if (item.Text == item.Value)
                {
                    return true;
                }
                else
                {
                    return false;
                }
            }
            </code>
            <code lang="VB">
            Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs)
                RadToolBar1.FindItem(ItemWithEqualsTextAndValue)
            End Sub
            Private Shared Function ItemWithEqualsTextAndValue(ByVal item As RadToolBarItem) As Boolean
                If item.Text = item.Value Then
                    Return True
                Else
                    Return False
                End If
            End Function
            </code>
            </example>
            <param name="match">The Predicate &lt;&gt; that defines the conditions of the element to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.Contains(Telerik.Web.UI.RadToolBarItem)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object is in the current 
            	<see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified
            	<see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object; otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadToolBarItem})">
            <summary>
            Appends the specified array of <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> objects
            to the end of the current <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple items in a single step. 
                <code lang="CS">
            		RadToolBarItem[] items = new RadToolBarItem[] { new RadToolBarButton("Create New"),
            					new RadToolBarDropDown("Manage"),
            					new RadToolBarSplitButton("Register Purchase")};
            		RadToolBar1.Items.AddRange(items);
                </code>
            	<code lang="VB">
                    Dim items() As RadToolBarItem = {New RadToolBarButton("Create New"),
            					New RadToolBarDropDown("Manage"),
            					New RadToolBarSplitButton("Register Purchase")}
                    RadToolBar1.Items.AddRange(items)
                </code>
            </example>
            <param name="items">
                The array of <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> objects to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.IndexOf(Telerik.Web.UI.RadToolBarItem)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object in
            	the collection.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> to locate.
            </param>
            <returns>
            	The zero-based index of a toolbar item within the current
            	<see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.Insert(System.Int32,Telerik.Web.UI.RadToolBarItem)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the
            	<see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see>.</param>
            <param name="item">The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.Remove(Telerik.Web.UI.RadToolBarItem)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <param name="item">
            	The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarItemCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <param name="index">The zero-based index of the item to remove.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarItemCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadToolBarItem">RadToolBarItem</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadToolBarItemCollection">RadToolBarItemCollection</see>.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.#ctor(System.Web.UI.Control)">
            <summary>
            Initializes a new instance of the
            <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> class.
            </summary>
            <param name="parent">The owner of the collection.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.Add(Telerik.Web.UI.RadToolBarButton)">
            <summary>
            Appends the specified <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object to the end of the
            current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <param name="item">
            The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> to append to the end of the current
            <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </param>
            <example>
            	The following example demonstrates how to programmatically add toolbar buttons to a
                <strong>RadToolBarDropDown</strong>.
            	<code lang="CS">
            		RadToolBarDropDown manageDropDown = new RadToolBarDropDown("Manage");
            
            		RadToolBarButton manageUsersButton = new RadToolBarButton("Users");
            		manageDropDown.Buttons.Add(manageUsersButton);
            
            		RadToolBarButton manageOrdersButton = new RadToolBarButton("Orders");
            		manageDropDown.Buttons.Add(manageOrdersButton);
            
            		RadToolBar1.Items.Add(manageDropDown);
                </code>
            	<code lang="VB">
            		Dim manageDropDown As RadToolBarDropDown = New RadToolBarDropDown("Manage")
            
            		Dim manageUsersButton As RadToolBarButton = New RadToolBarButton("Users")
            		manageDropDown.Buttons.Add(manageUsersButton)
            
            		Dim manageOrdersButton As RadToolBarButton = New RadToolBarButton("Orders")
            		manageDropDown.Buttons.Add(manageOrdersButton)
            
            		RadToolBar1.Items.Add(manageDropDown)
                </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.FindButtonByText(System.String)">
            <summary>
                Searches the <strong>RadToolBarButtonCollection</strong> for the first
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> with a <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property equal to
                the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> which <see cref="P:Telerik.Web.UI.RadToolBarItem.Text">Text</see> property is equal
                to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="text">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.FindButtonByValue(System.String)">
            <summary>
                Searches the <strong>RadToolBarButtonCollection</strong> for the first
                <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> with a <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property equal
                to the specified value.
            </summary>
            <returns>
                A <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> whose <see cref="P:Telerik.Web.UI.RadToolBarButton.Value">Value</see> property is
                equal to the specified value.
            </returns>
            <remarks>
            The method returns the first item matching the search criteria. This method is not recursive. If no item is
            matching then <strong>null</strong> (<strong>Nothing</strong> in VB.NET) is
            returned.
            </remarks>
            <param name="value">The value to search for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.FindButtonByAttribute(System.String,System.String)">
            <summary>
            Searches the items in the collection for a <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>
            which contains the specified attribute and attribute value.
            </summary>
            <param name="attributeName">The name of the target attribute.</param>
            <param name="attributeValue">The value of the target attribute</param>
            <returns>The <c>RadToolBarButton</c> that matches the specified arguments.
            	Null (Nothing) is returned if no node is found.</returns>
            <remarks>This method is not recursive.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.Contains(Telerik.Web.UI.RadToolBarButton)">
            <summary>
            	Determines whether the specified <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object
            	is in the current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <param name="button">
            	The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object to find.
            </param>
            <returns>
            	<c>true</c> if the current collection contains the specified
            	<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object; otherwise, false.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadToolBarButton})">
            <summary>
            Appends the specified array of <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> objects
            to the end of the current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <example>
                The following example demonstrates how to use the <strong>AddRange</strong> method
                to add multiple buttons in a single step. 
            	<code lang="CS">
            		RadToolBarDropDown manageDropDown = new RadToolBarDropDown("Manage");
            		RadToolBarButton[] buttons = new RadToolBarButton[] { new RadToolBarButton("Users"),
            					new RadToolBarButton("Orders")};
            
            		manageDropDown.Buttons.AddRange(buttons);
            
            		RadToolBar1.Items.Add(manageDropDown);
                </code>
            	<code lang="VB">
            		Dim manageDropDown As RadToolBarDropDown = New RadToolBarDropDown("Manage")
                    Dim buttons() As RadToolBarButton = {New RadToolBarButton("Users"),
            					New RadToolBarButton("Orders")}
            
            		manageDropDown.Buttons.AddRange(buttons)
            
            		RadToolBar1.Items.Add(manageDropDown)
                </code>
            </example>
            <param name="buttons">
                The array of <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> objects to append to
            	the end of the current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.IndexOf(Telerik.Web.UI.RadToolBarButton)">
            <summary>
            Determines the index of the specified <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object in
            	the collection.
            </summary>
            <param name="button">
            	The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> to locate.
            </param>
            <returns>
            	The zero-based index of a toolbar button within the current
            	<see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>, 
            	if found; otherwise, -1.
            </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.Insert(System.Int32,Telerik.Web.UI.RadToolBarButton)">
            <summary>
            Inserts the specified <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object in the current 
            <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see> at the specified index location.
            </summary>
            <param name="index">The zero-based index location at which to insert the
            	<see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see>.</param>
            <param name="button">The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> to insert.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.Remove(Telerik.Web.UI.RadToolBarButton)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object from the current
            	<see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <param name="button">
            	The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object to remove.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadToolBarButtonCollection.RemoveAt(System.Int32)">
            <summary>
            Removes the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object at the specified index 
            from the current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <param name="index">The zero-based index of the button to remove.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadToolBarButtonCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadToolBarButton">RadToolBarButton</see> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadToolBarButtonCollection">RadToolBarButtonCollection</see>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarItemConverter">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="T:Telerik.Web.UI.ToolBarStyles">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadToolBarItemType">
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.ToolBarAnimationSettings">
            <summary>
            Represents the animation settings like type and duration for the <see cref="T:Telerik.Web.UI.RadToolBar"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.ToolBarAnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>
            	An integer representing the duration in milliseconds of the animation. 
            	The default value is 450 milliseconds.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.ToolBarClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewContextMenu">
            <summary>
            	A context menu control used with the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
            <remarks>
            	<para>
            		The RadTreeViewContextMenu object is used to assign context menus to <see cref="T:Telerik.Web.UI.RadTreeView"/> nodes. Use the
            		<see cref="P:Telerik.Web.UI.RadTreeView.ContextMenus"/> property to add context menus for a <see cref="T:Telerik.Web.UI.RadTreeView"/> 
            		object. 
            	</para>
            	<para>
            		Use the <see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID"/> property to assign specific context menu to a given <see cref="T:Telerik.Web.UI.RadTreeNode"/>.
            	</para>
            </remarks>
            <example>
            	The following example demonstrates how to add context menus declaratively
            <code lang="html">
            	&lt;telerik:RadTreeView ID="RadTreeView1" runat="server"&gt;
            		&lt;ContextMenus&gt;
            			&lt;telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            				&lt;Items&gt;
            					&lt;telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/telerik:RadMenuItem&gt;
            					&lt;telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/telerik:RadMenuItem&gt;
            				&lt;/Items&gt;
            			&lt;/telerik:RadTreeViewContextMenu&gt;
            			&lt;telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            				&lt;Items&gt;
            					&lt;telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/telerik:RadMenuItem&gt;
            					&lt;telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/telerik:RadMenuItem&gt;
            				&lt;/Items&gt;
            			&lt;/telerik:RadTreeViewContextMenu&gt;
            		&lt;/ContextMenus&gt;
            		&lt;Nodes&gt;
            			&lt;telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            					&lt;telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/telerik:RadTreeNode&gt;
            			&lt;telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            				&lt;Nodes&gt;
            					&lt;telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            					&lt;telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/telerik:RadTreeNode&gt;
            				&lt;/Nodes&gt;
            			&lt;/telerik:RadTreeNode&gt;
            		&lt;/Nodes&gt;
            	&lt;/telerik:RadTreeView&gt;
            </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenu.ResolveControlTargetIds">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenu.DescribeTargets(Telerik.Web.UI.IScriptDescriptor)">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenu.LoadTargetsViewState(System.Object[])">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenu.SaveTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenu.TrackTargetsViewState">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenu.Targets">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="E:Telerik.Web.UI.RadTreeViewContextMenu.ItemClick">
            <exclude/>
            <excludetoc/>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenu.OnClientItemClicking">
            <summary>
            OnClientItemClicking is not available for RadTreeViewContextMenu. Use the OnClientContextMenuItemClicking property of RadTreeView instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenu.OnClientItemClicked">
            <summary>
            OnClientItemClicked is not available for RadTreeViewContextMenu. Use the OnClientContextMenuItemClicked property of RadTreeView instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenu.OnClientShowing">
            <summary>
            OnClientShowing is not available for RadTreeViewContextMenu. Use the OnClientContextMenuShowing property of RadTreeView instead.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenu.OnClientShown">
            <summary>
            OnClientShown is not available for RadTreeViewContextMenu. Use the OnClientContextMenuShown property of RadTreeView instead.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">
            <summary>
            Provides a collection container that enables RadTreeView to maintain a list of its RadTreeViewContextMenus.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.#ctor(Telerik.Web.UI.RadTreeView)">
            <summary>
            Initializes a new instance of the RadTreeViewContextMenuCollection class for the specified RadTreeView. 
            </summary>
            <param name="treeView">The RadTreeView that the RadTreeViewContextMenuCollection is created for.</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.Add(Telerik.Web.UI.RadTreeViewContextMenu)">
            <summary>
            Adds the specified RadTreeViewContextMenu object to the collection
            </summary>
            <param name="target">The RadTreeViewContextMenu to add to the collection</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.Contains(Telerik.Web.UI.RadTreeViewContextMenu)">
            <summary>
            	Determines whether the specified RadTreeViewContextMenu is in the parent
            	RadTreeView's RadTreeViewContextMenuCollection object.
            </summary>
            <param name="target">The RadTreeViewContextMenu to search for in the collection</param>
            <returns><strong>true</strong> if the specified RadTreeViewContextMenu exists in
            	the collection; otherwise, <strong>false</strong>.</returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.CopyTo(Telerik.Web.UI.RadTreeViewContextMenu[],System.Int32)">
            <summary>
            	Copies the RadTreeViewContextMenu instances stored in the
            	<see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">RadTreeViewContextMenuCollection</see>
            	object to an System.Array object, beginning at the specified index location in the System.Array. 
            </summary>
            <param name="array">The System.Array to copy the RadTreeViewContextMenu instances to.</param>
            <param name="index">The zero-based relative index in array where copying begins</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.AddRange(System.Collections.Generic.IEnumerable{Telerik.Web.UI.RadTreeViewContextMenu})">
            <summary>Appends the specified array of <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu"/> objects to the end of the 
            current <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection"/>.
            </summary>
            <param name="contextMenus">
                The array of <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu"/> to append to the end of the current 
            	<see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection"/>.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.IndexOf(Telerik.Web.UI.RadTreeViewContextMenu)">
            <summary>
            	Retrieves the index of a specified RadTreeViewContextMenu object in the collection.
            </summary>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>
            	for which the index is returned.</param>
            <returns>The index of the specified <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>
            	instance. If the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> is not
            	currently a member of the collection, it returns -1. </returns>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.Insert(System.Int32,Telerik.Web.UI.RadTreeViewContextMenu)">
            <summary>
            	Inserts the specified <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> object
            	to the collection at the specified index location.
            </summary>
            <param name="index">The location in the array at which to add the <strong>RadTreeViewContextMenu</strong> instance.</param>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> to add to the collection</param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.Remove(Telerik.Web.UI.RadTreeViewContextMenu)">
            <summary>
            	Removes the specified <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>
            	from the parent <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see>'s <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">RadTreeViewContextMenuCollection</see>
            	object. 
            </summary>
            <param name="target">The <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> to be removed</param>
            <remarks>To remove a control from an index location, use the <see cref="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.RemoveAt(System.Int32)">RemoveAt</see> method.</remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuCollection.RemoveAt(System.Int32)">
            <summary>
            	Removes a child <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>, at the
            	specified index location, from the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">RadTreeViewContextMenuCollection</see>
            	object. 
            </summary>
            <param name="index">The ordinal index of the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see>
            	to be removed from the collection.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenuCollection.Item(System.Int32)">
            <summary>
            Gets a reference to the RadTreeViewContextMenu at the specified index location in the
            RadTreeViewContextMenuCollection object.
            </summary>
            <param name="index">The location of the RadTreeViewContextMenu in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuCollection">RadTreeViewContextMenuCollection</see></param>
            <returns>The reference to the RadTreeViewContextMenu.</returns>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewContextMenuEventHandler">
             <summary>
            		Represents the method that handles the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see>
            		event of a <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
             </summary>
             <param name="sender">The source of the event.</param>
             <param name="e">A <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuEventArgs">RadTreeViewContextMenuEventArgs</see>
            		that contains the event data.</param>
            	<remarks>
            		<para>
            		The <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event is raised
            		when an item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control is clicked.
            		</para>
            		<para>
            		A click on a <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> item of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> makes a postback only if an event handler is attached
            		to the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event.
            		</para>
             </remarks>
            <example>
            		The following example demonstrates how to display information about the clicked item in the
            		<see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> shown after a right-click
            		on a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
             <code lang="CS">
            		&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			void RadTreeView1_ContextMenuItemClick(object sender, RadTreeViewContextMenuEventArgs e)
            			{
            				lblInfo.Text = string.Format(@"You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")",
            					e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text);
            			}
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
             <code lang="VB">
            		&lt;%@ Page Language="VB" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			Sub RadTreeView1_ContextMenuItemClick(ByVal sender as Object, ByVal e as RadTreeViewContextMenuEventArgs)
            				lblInfo.Text = String.Format("You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")", _
            		   e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text)
            			End Sub
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewContextMenuEventArgs">
             <summary>
            		Provides data for the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see>
            		event of the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control. This class cannot be inherited. 
             </summary>
             <remarks>
            		<para>
            		The <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event is raised
            		when an item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control is clicked.
            		</para>
            		<para>
            		A click on a <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> item of the
            		<see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> makes a postback only if an event handler is attached
            		to the <see cref="E:Telerik.Web.UI.RadTreeView.ContextMenuItemClick">ContextMenuItemClick</see> event.
            		</para>
            </remarks>
            <example>
            		The following example demonstrates how to display information about the clicked item in the
            		<see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> shown after a right-click
            		on a <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
             <code lang="CS">
            		&lt;%@ Page Language="C#" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			void RadTreeView1_ContextMenuItemClick(object sender, RadTreeViewContextMenuEventArgs e)
            			{
            				lblInfo.Text = string.Format(@"You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")",
            					e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text);
            			}
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
             <code lang="VB">
            		&lt;%@ Page Language="VB" AutoEventWireup="true" %&gt;
            		&lt;%@ Register TagPrefix="Telerik" Namespace="Telerik.Web.UI" Assembly="Telerik.Web.UI" %&gt;
            		
            		&lt;script runat="server"&gt;
            			Sub RadTreeView1_ContextMenuItemClick(ByVal sender as Object, ByVal e as RadTreeViewContextMenuEventArgs)
            				lblInfo.Text = String.Format("You clicked on Menu Item {0}(""{1}"") of Node {2}(""{3}"")", _
            		   e.MenuItem.Index, e.MenuItem.Text, e.Node.Index, e.Node.Text)
            			End Sub
            		&lt;/script&gt;
            		
            		&lt;html&gt;
            		&lt;body&gt;
            		&lt;form id="form1" runat="server"&gt;
            		&lt;Telerik:RadScriptManager ID="RadScriptManager1" runat="server"&gt;&lt;/Telerik:RadScriptManager&gt;
            		&lt;br /&gt;
            		&lt;asp:Label ID="lblInfo" style="border:solid 1px black; background-color:InfoBackground;font:normal 12px Courier New;" runat="server"&gt;Click on a context menu item to see the information for it.&lt;/asp:Label&gt;
            		&lt;br /&gt;
            		&lt;Telerik:RadTreeView ID="RadTreeView1" runat="server" OnContextMenuItemClick="RadTreeView1_ContextMenuItemClick"&gt;
            			&lt;ContextMenus&gt;
            				&lt;Telerik:RadTreeViewContextMenu ID="ContextMenu1"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu1Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            				&lt;Telerik:RadTreeViewContextMenu Skin="Outlook" ID="ContextMenu2"&gt;
            					&lt;Items&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item1"&gt;&lt;/Telerik:RadMenuItem&gt;
            						&lt;Telerik:RadMenuItem Text="Menu2Item2"&gt;&lt;/Telerik:RadMenuItem&gt;
            					&lt;/Items&gt;
            				&lt;/Telerik:RadTreeViewContextMenu&gt;
            			&lt;/ContextMenus&gt;
            			&lt;Nodes&gt;
            				&lt;Telerik:RadTreeNode Text="Node1" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node11" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node12" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            				&lt;Telerik:RadTreeNode Text="Node2" ContextMenuID="ContextMenu2"&gt;
            					&lt;Nodes&gt;
            						&lt;Telerik:RadTreeNode Text="Node21" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            						&lt;Telerik:RadTreeNode Text="Node22" ContextMenuID="ContextMenu2"&gt;&lt;/Telerik:RadTreeNode&gt;
            					&lt;/Nodes&gt;
            				&lt;/Telerik:RadTreeNode&gt;
            			&lt;/Nodes&gt;
            		&lt;/Telerik:RadTreeView&gt;
            		
            		&lt;/form&gt;
            		&lt;/body&gt;
            		&lt;/html&gt;
             </code>
            </example>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeViewContextMenuEventArgs.#ctor(Telerik.Web.UI.RadTreeNode,Telerik.Web.UI.RadMenuItem)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenuEventArgs">RadTreeViewContextMenuEventArgs</see> class.
            </summary>
            <param name="node">A <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> which represents a
            	node in the <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control.
            </param>
            <param name="menuItem">A <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> which represents an
            	item in the <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenuEventArgs.MenuItem">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadMenuItem">RadMenuItem</see> in the
                <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> control
            	when the event is raised.
            </summary>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadTreeViewContextMenu">RadTreeViewContextMenu</see> when the event is raised.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeViewContextMenuEventArgs.Node">
            <summary>
                Gets the referenced <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> in the
                <see cref="T:Telerik.Web.UI.RadTreeView">RadTreeView</see> control when the event is raised.
            </summary>
            <remarks>
                Use this property to programmatically access the item referenced in the
                <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> when the event is raised.
            </remarks>
        </member>
        <member name="T:Telerik.Web.UI.TreeNodeCheckState">
            <summary>
            Specifies the checked state of <see cref="T:Telerik.Web.UI.RadTreeNode"/>.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeCheckState.Unchecked">
            <summary>
            The <see cref="T:Telerik.Web.UI.RadTreeNode"/> is not checked
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeCheckState.Checked">
            <summary>
            The <see cref="T:Telerik.Web.UI.RadTreeNode"/> is checked
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeCheckState.Indeterminate">
            <summary>
            The <see cref="T:Telerik.Web.UI.RadTreeNode"/> is in Indeterminate mode (some of its child nodes is not checked)
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeNodeExpandMode">
            <summary>
            This enumeration controls the expand behaviour of the nodes.	
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeExpandMode.ClientSide">
            <summary>
            The default behaviour - all nodes are loaded in the intial request and expand is performed on the client, without server interaction
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeExpandMode.ServerSide">
            <summary>
            Forces firing of the NodeExpand event - a postback occurs and developers can populate the node with its children in server side event handler
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeExpandMode.ServerSideCallBack">
            <summary>
            Forces firing of the NodeExpand event asyncronously from the client without postback - the NodeExpand event fires and child nodes added to the node collection are automatically transferred to the client without postback.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeNodeExpandMode.WebService">
            <summary>
            The child nodes are loaded from the web service specified by the RadTreeView.WebServicePath and RadTreeView.WebServiceMethod properties.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.TreeViewLoadingStatusPosition">
            <summary>
            Specifies where the loading message is shown when Client-side load on demand is used.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeViewLoadingStatusPosition.BeforeNodeText">
            <summary>
            If the node text is "Some Text", the text is changed to "(loading ...) Some Text" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeViewLoadingStatusPosition.AfterNodeText">
            <summary>
            If the node text is "Some Text", the text is changed to "Some Text (loading ...)" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeViewLoadingStatusPosition.BelowNodeText">
            <summary>
            The text is not changed and (loading ...)" when child nodes are being loaded (Assuming the LoadingMessage property has been set to "(loading...)";
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.TreeViewLoadingStatusPosition.None">
            <summary>
            No loading text is displayed at all.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewDropPosition">
            <summary>
            	Specifies the position at which the user has dragged and dropped the source node(s) with regards to the 
            	destination node.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadTreeViewDropPosition.Over">
            <summary>
            The source node(s) is dropped over (onto) the destination node.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadTreeViewDropPosition.Above">
            <summary>
            The source node(s) is dropped above (before) the destination node.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.RadTreeViewDropPosition.Below">
            <summary>
            The source node(s) is dropped below (after) the destination node.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeDragDropEventArgs">
            <summary>
            	Provides data for the <see cref="E:Telerik.Web.UI.RadTreeView.NodeDrop"/> event of the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.#ctor(System.Collections.Generic.IList{Telerik.Web.UI.RadTreeNode},Telerik.Web.UI.RadTreeNode,Telerik.Web.UI.RadTreeViewDropPosition)">
            <summary>
            	Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNodeDragDropEventArgs"/> class.
            </summary>
            <param name="sourceNodes">A list of <see cref="T:Telerik.Web.UI.RadTreeNode"/> objects representing the source (dragged) nodes.</param>
            <param name="destinationNode">A <see cref="T:Telerik.Web.UI.RadTreeNode"/> representing the destination node.</param>
            <param name="dropPosition">
            	A <see cref="T:Telerik.Web.UI.RadTreeViewDropPosition"/> value representing the drop position of the 
            	source node(s) with regards to the destination node.
            </param>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.#ctor(System.Collections.Generic.IList{Telerik.Web.UI.RadTreeNode},System.String)">
            <summary>
            	Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNodeDragDropEventArgs"/> class.
            </summary>
            <param name="sourceNodes">A list of <see cref="T:Telerik.Web.UI.RadTreeNode"/> objects representing the source (dragged) nodes.</param>
            <param name="htmlElementId">A string representing the id of the HTML element on which the source nodes are dropped.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.SourceDragNode">
            <summary>
            	Gets the source (dragged) node.
            </summary>
            <value>
            	A <see cref="T:Telerik.Web.UI.RadTreeNode"/> object representing the currently dragged node. The first dragged node is 
            	returned if there is more than one dragged node.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.DestDragNode">
            <summary>
            	Gets the destination node.
            </summary>
            <value>
            	A <see cref="T:Telerik.Web.UI.RadTreeNode"/> object representing the destination node. 
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.DraggedNodes">
            <summary>
            	Gets all source (dragged) nodes.
            </summary>
            <value>
            	A list of <see cref="T:Telerik.Web.UI.RadTreeNode"/> object representing the source nodes.
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.DropPosition">
            <summary>
            	Gets or sets the position at which the user drops the source node(s) with regards to the destination nodes.
            </summary>
            <value>
            	One of the <see cref="T:Telerik.Web.UI.RadTreeViewDropPosition"/> enumeration values. 
            </value>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeDragDropEventArgs.HtmlElementID">
            <summary>
            	Gets or sets the ID of the HTML element on which the source node(s) is dropped.
            </summary>
            <value>
            	A string representing the ID of the HTML element on which the source node(s) is dropped.
            </value>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeEditEventArgs">
            <summary>
            	Provides data for the <see cref="E:Telerik.Web.UI.RadTreeView.NodeEdit"/> event of the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeEventArgs">
            <summary>
            	Provides data for the <see cref="E:Telerik.Web.UI.RadTreeView.NodeClick"/>, <see cref="E:Telerik.Web.UI.RadTreeView.NodeExpand"/>,
            	<see cref="E:Telerik.Web.UI.RadTreeView.NodeCheck"/>, <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound"/>,
            	<see cref="E:Telerik.Web.UI.RadTreeView.NodeCollapse"/> and <see cref="E:Telerik.Web.UI.RadTreeView.NodeCreated"/>
            	events of the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeEventArgs.#ctor(Telerik.Web.UI.RadTreeNode)">
            <summary>
                Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNodeEventArgs"/> class.
            </summary>
            <param name="node">
                A <see cref="T:Telerik.Web.UI.RadTreeNode"/> which represents a node in the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeEventArgs.Node">
            <summary>
               Gets the referenced node in the <see cref="T:Telerik.Web.UI.RadTreeView"/> control when the event is raised.
            </summary>
            <value>
                The referenced node in the <see cref="T:Telerik.Web.UI.RadTreeView"/> control when the event is raised.
            </value>
            <remarks>
                Use this property to programmatically access the node referenced in the <see cref="T:Telerik.Web.UI.RadTreeView"/> control when the event is raised.
            </remarks>
        </member>
        <member name="M:Telerik.Web.UI.RadTreeNodeEditEventArgs.#ctor(Telerik.Web.UI.RadTreeNode,System.String)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.UI.RadTreeNodeEditEventArgs"/> class
            </summary>
            <param name="node">A <see cref="T:Telerik.Web.UI.RadTreeNode"/> object representing the node being edited.</param>
            <param name="text">A string representing the text entered by the user.</param>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeEditEventArgs.Text">
            <summary>
            	Gets the text which the user entered during node editing.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewDragDropEventHandler">
            <summary>
            	Represents the method that handles the <see cref="E:Telerik.Web.UI.RadTreeView.NodeDrop"/> event provided by the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewEditEventHandler">
            <summary>
            	Represents the method that handles the <see cref="E:Telerik.Web.UI.RadTreeView.NodeEdit"/> event provided by the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeViewEventHandler">
            <summary>
            	Represents the method that handles the <see cref="E:Telerik.Web.UI.RadTreeView.NodeClick"/>, <see cref="E:Telerik.Web.UI.RadTreeView.NodeExpand"/>,
            	<see cref="E:Telerik.Web.UI.RadTreeView.NodeCheck"/>, <see cref="E:Telerik.Web.UI.RadTreeView.NodeDataBound"/>,
            	<see cref="E:Telerik.Web.UI.RadTreeView.NodeCollapse"/> and <see cref="E:Telerik.Web.UI.RadTreeView.NodeCreated"/>
            	events provided by the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeData">
            <summary>
            	Data class used for transferring tree nodes from and to web services.
            </summary>
            <remarks>
            	For information about the role of each property see the
            	<see cref="T:Telerik.Web.UI.RadTreeNode"/> class.
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.ExpandMode">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode">RadTreeNode.ExpandMode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.NavigateUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.NavigateUrl">RadTreeNode.NavigateUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.PostBack">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.PostBack">RadTreeNode.PostBack</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.CssClass">
            <summary>
            The CssClass of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.DisabledCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledCssClass">RadTreeNode.DisabledCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.SelectedCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.SelectedCssClass">RadTreeNode.SelectedCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.ContentCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.ContentCssClass">RadTreeNode.ContentCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.HoveredCssClass">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.HoveredCssClass">RadTreeNode.HoveredCssClass</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.ImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.ImageUrl">RadTreeNode.ImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.HoveredImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.HoveredImageUrl">RadTreeNode.HoveredImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.DisabledImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledImageUrl">RadTreeNode.DisabledImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.ExpandedImageUrl">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandedImageUrl">RadTreeNode.ExpandedImageUrl</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeData.ContextMenuID">
            <summary>
            See <see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID">RadTreeNode.ContextMenuID</see>.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeBinding">
            <summary>
            	Represents the simple binding between the property value of an object and the property value of a
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see>.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ContextMenuID">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID">ContextMenuID</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ContextMenuIDField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.ContextMenuID">ContextMenuID</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowDrag">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowDrag">AllowDrag</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowDragField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowDrag">AllowDrag</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowDrop">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowDrop">AllowDrop</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowDropField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowDrop">AllowDrop</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowEdit">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowEdit">AllowEdit</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.AllowEditField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.AllowEdit">AllowEdit</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.Category">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Category">Category</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.CategoryField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.Category">Category</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.Checkable">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Checkable">Checkable</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.CheckableField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.Checkable">Checkable</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.Checked">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Checked">Checked</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.CheckedField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.Checked">Checked</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.DisabledCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledCssClass">DisabledCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.DisabledCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledCssClass">DisabledCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.DisabledImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledImageUrl">DisabledImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.DisabledImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.DisabledImageUrl">DisabledImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.EnableContextMenu">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.EnableContextMenu">EnableContextMenu</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.EnableContextMenuField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNodeBinding.EnableContextMenu">EnableContextMenu</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.Expanded">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.Expanded">Expanded</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ExpandedField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.Expanded">Expanded</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ExpandedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandedImageUrl">ExpandedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ExpandedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandedImageUrl">ExpandedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ExpandMode">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode">ExpandMode</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ExpandModeField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.ExpandMode">ExpandMode</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.HoveredCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.HoveredCssClass">HoveredCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.HoveredCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.HoveredCssClass">HoveredCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.SelectedCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.SelectedCssClass">SelectedCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.SelectedCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.SelectedCssClass">SelectedCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ContentCssClass">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.ContentCssClass">ContentCssClass</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.ContentCssClassField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.ContentCssClass">ContentCssClass</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.SelectedImageUrl">
            <summary>
            	Specifies the exact value of the <see cref="P:Telerik.Web.UI.RadTreeNode.SelectedImageUrl">SelectedImageUrl</see> property of the
            	<see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during the data binding.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBinding.SelectedImageUrlField">
            <summary>
            	Specifies the field, containing the <see cref="P:Telerik.Web.UI.RadTreeNode.SelectedImageUrl">SelectedImageUrl</see> property 
            	value of the <see cref="T:Telerik.Web.UI.RadTreeNode">RadTreeNode</see> that will be created during
            	the data binding.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadTreeNodeBindingCollection">
            <summary>
            	Defines the relationship between a data item and the menu item it is binding to in a 
            	<see cref="T:Telerik.Web.UI.RadMenu"/>control. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadTreeNodeBindingCollection.Item(System.Int32)">
            <summary>
            	Gets the <see cref="T:Telerik.Web.UI.RadTreeNodeBinding"/> object at the specified index in 
            	the current <see cref="T:Telerik.Web.UI.RadTreeNodeBindingCollection"/>.
            </summary>
            <param name="index">
            	The zero-based index of the <see cref="T:Telerik.Web.UI.RadTreeNodeBinding"/> to retrieve.
            </param>
            <returns>
            	The <see cref="T:Telerik.Web.UI.RadTreeNodeBinding"/> at the specified index in the 
            	current <see cref="T:Telerik.Web.UI.RadTreeNodeBindingCollection"/>.
            </returns>
        </member>
        <member name="T:Telerik.Web.UI.TreeViewAnimationSettings">
            <summary>
            Represents the animation settings like type and duration for the <see cref="T:Telerik.Web.UI.RadTreeView"/> control.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.TreeViewAnimationSettings.Duration">
            <summary>Gets or sets the duration in milliseconds of the animation.</summary>
            <value>
            	An integer representing the duration in milliseconds of the animation. 
            	The default value is 200 milliseconds
            </value>
        </member>
        <member name="T:Telerik.Web.UI.TreeViewClientState">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.TreeViewPostBackCommand">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.TreeViewPostBackArguments">
            <summary>
            For internal use only.
            </summary>
            <exclude />
            <excludetoc />
        </member>
        <member name="T:Telerik.Web.UI.Upload.ProgressWorkerRequest">
            <summary>
            Derives from HttpWorker request; Updates the current RadProgressContext
            with upload progress information;
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.Upload.UploadedFileEventHandler">
            <summary>
                Represents the method that will handle the event that has an
                <see cref="T:Telerik.Web.UI.Upload.UploadedFileEventArgs">UploadedFileEventArgs</see> event data.
            </summary>
            <param name="sender">The <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see> instance which fired the event.</param>
            <param name="e">An <see cref="T:Telerik.Web.UI.Upload.UploadedFileEventArgs">UploadedFileEventArgs</see> that contain the event data.</param>
        </member>
        <member name="T:Telerik.Web.UI.Upload.UploadedFileEventArgs">
            <summary>
            	UploadedFileEventArgs is the base class for the <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see> event data.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">
            <summary>Gets the currently processed <see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile</see>.</summary>
            <value>
            	<see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile</see> object that contains information about
                the currently processed file.
            </value>
            <example>
                The following example demonstrates how to use the
                <see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile</see> property to save a file in the
                FileExists event.
                <code lang="VB">
            Private Sub RadUpload1_FileExists(ByVal sender As Object, ByVal e As WebControls.UploadedFileEventArgs) Handles RadUpload1.FileExists
                Dim TheFile As Telerik.WebControls.UploadedFile = e.UploadedFile
             
                e.UploadedFile.SaveAs(Path.Combine(RadUpload1.TargetFolder, TheFile.GetName + "1" + TheFile.GetExtension))
            End Sub
                </code>
            	<code lang="CS">
            private void RadUpload1_FileExists(object sender, Telerik.WebControls.UploadedFileEventArgs e)
            {
                Telerik.WebControls.UploadedFile TheFile = e.UploadedFile;
             
                TheFile.SaveAs(Path.Combine(RadUpload1.TargetFolder, TheFile.GetName() + "1" + TheFile.GetExtension()));
            }
                </code>
            </example>
        </member>
        <member name="T:Telerik.Web.UI.Upload.ValidateFileEventHandler">
            <summary>
            	<para>Represents the method that will handle the custom validation event.</para>
            </summary>
            <param name="sender">The RadUpload instance which fired the event.</param>
            <param name="e">
                A <see cref="T:Telerik.Web.UI.Upload.ValidateFileEventArgs">ValidateFileEventArgs</see> that contain the
                event data.
            </param>
        </member>
        <member name="T:Telerik.Web.UI.Upload.ValidateFileEventArgs">
            <summary>
                Provides data for the <see cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile
                event</see> of the <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see> control.
            </summary>
            <remarks>
            	<para>
                    A ValidatingFileEventArgs is passed to the
                    <see cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile event</see> handler to
                    provide event data to the handler. The
                    <see cref="E:Telerik.Web.UI.RadUpload.ValidatingFile">ValidatingFile event</see> event is raised
                    when validation is performed on the server. This allows you to perform a custom
                    server-side validation routine on a file of a
                    <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see> control.
                </para>
            </remarks>
        </member>
        <member name="P:Telerik.Web.UI.Upload.ValidateFileEventArgs.IsValid">
            <summary>
                Gets or sets whether the value specified by
                <see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile property</see> passed
                validation.
            </summary>
            <value>
            	<strong>true</strong> to indicate that the value specified by the
                <see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile property</see> passed
                validation; otherwise, <b>false</b>
            </value>
            <remarks>
            	<para>
                    Once your validation routine finishes, use the <strong>IsValid</strong>
                    property to indicate whether the value specified by the
                    <see cref="P:Telerik.Web.UI.Upload.UploadedFileEventArgs.UploadedFile">UploadedFile property</see>
                    passed validation. This value determines whether the file from the
                    <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see> control passed validation.
                </para>
            </remarks>
            <example>
                This example demonstrates how to implement validation for filenames. 
                <code lang="VB">
            Private Sub RadUpload1_ValidatingFile(ByVal sender As Object, ByVal e As WebControls.ValidateFileEventArgs) Handles RadUpload1.ValidatingFile
                If e.UploadedFile.GetExtension.ToLower() = ".zip" Then
                    'The zip files are not allowed for upload
                    e.IsValid = False
                End If
            End Sub
                </code>
            	<code lang="CS">
            private void RadUpload1_ValidatingFile(object sender, ValidateFileEventArgs e)
            {
                if (e.UploadedFile.GetExtension().ToLower() == ".zip")
                {
                    //The zip files are not allowed for upload
                    e.IsValid = false;
                }
            }
                </code>
            </example>
        </member>
        <member name="P:Telerik.Web.UI.Upload.ValidateFileEventArgs.SkipInternalValidation">
            <summary>
            Gets or sets whether the internal validation should continue validating the file
            specified by the <see cref="T:Telerik.Web.UI.UploadedFile">UploadedFile</see> property.
            </summary>
            <value>
            	<strong>false</strong> to indicate that the internal validation should validate
            the file specified by the <see cref="T:Telerik.Web.UI.UploadedFile">UploadedFile</see> property; otherwise,
            <b>true</b>
            </value>
            <remarks>
            Once your validation routine finishes, use the <b>SkipInternalValidation</b>
            property to skip the internal validation provided by the <see cref="T:Telerik.Web.UI.RadUpload">RadUpload</see>
            control.
            </remarks>
            <example>
                This example demostrates how to implement custom validation for specific file type.
                
                <code lang="VB">
            Private Sub RadUpload1_ValidatingFile(ByVal sender As Object, ByVal e As WebControls.ValidateFileEventArgs) Handles RadUpload1.ValidatingFile
                If e.UploadedFile.GetExtension.ToLower = ".zip" Then
                    Dim maxZipFileSize As Integer = 10000000 '~10MB
                    If e.UploadedFile.ContentLength &gt; maxZipFileSize Then
                        e.IsValid = False
                    End If
                    'The zip files are not validated for file size, extension and mime type
                    e.SkipInternalValidation = True
                End If
            End Sub
                </code>
            	<code lang="CS">
            private void RadUpload1_ValidatingFile(object sender, ValidateFileEventArgs e)
            {
                if (e.UploadedFile.GetExtension().ToLower() == ".zip")
                {
                    int maxZipFileSize = 10000000; //~10MB
                    if (e.UploadedFile.ContentLength &gt; maxZipFileSize)
                    {
                        e.IsValid = false;
                    }
                    //The zip files are not validated for file size, extension and content type
                    e.SkipInternalValidation = true;
                }
            }
                </code>
            </example>
            <seealso cref="P:Telerik.Web.UI.RadUpload.MaxFileSize">MaxFileSize Property (Telerik.WebControls.RadUpload)</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedMimeTypes">AllowedMimeTypes Property (Telerik.WebControls.RadUpload)</seealso>
            <seealso cref="P:Telerik.Web.UI.RadUpload.AllowedFileExtensions">AllowedFileExtensions Property (Telerik.WebControls.RadUpload)</seealso>
        </member>
        <member name="T:Telerik.Web.UI.Upload.RequestField">
            <summary>
            Stores a single request field - header data and body info (does not hold the entire body).
            No boundary here.
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Upload.RequestField.AddData(System.Byte[],System.Boolean)">
            <summary>
            Continuously fills the current request field member (header or body);
            </summary>
            <param name="data">The byte data of the current request field</param>
            <param name="lastData">Indicates if this is the last chunk of information</param>
        </member>
        <member name="P:Telerik.Web.UI.Upload.RequestField.Header">
            <summary>
            Returns null if the header is not complete yet:
            </summary>
        </member>
        <member name="M:Telerik.Web.UI.Upload.RequestStateStore.Record(System.Byte[],System.Boolean)">
            <summary>
            Records field information
            </summary>
            <param name="fieldContent">the raw byte array for the field (if the entire field is in the byte array,
            this would include the header and the body)</param>
            <param name="isFinal">indicates if this is the final part of the field body data (e.g., in terms
            of the request parser - if the boundary is reached after this field)</param>
        </member>
        <member name="P:Telerik.Web.UI.Upload.RequestStateStore.Fields">
            <summary>
            Contains only fields with complete headers
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.Upload.RequestStateStore.LastHeaderCompleteField">
            <summary>
            The most current field, which header is complete
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.RadXmlHttpPanel">
            <summary>
            RadXmlHttpPanel class
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.LoadingPanelID">
            <summary>
            Gets or sets the ID of the RadAjaxLoadingPanel control that will be displayed over the control during the partial page update.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.RenderMode">
            <summary>
            Gets or sets a value that indicates how the content of an RadXmlHttpPanel control will be wrapped on a page.
            Inline means the content will be wrapped in a span tag (Default), while Block means that the content will be wrapped in a div.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.EnableClientScriptEvaluation">
            <summary>
            Gets or sets a boolean value indicating whether or not the client scripts loaded by the RadControls 
            hosted inside the RadXmlHttpPanel should be executed. 
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.WebMethodName">
            <summary>
            Gets or sets a string value that indicates the WebService method used by the RadXmlHttpPanel.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.WebMethodPath">
            <summary>
            Gets or sets a string value that indicates the virtual path of the WebService used by the RadXmlHttpPanel.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.WcfRequestMethod">
            <summary>
            Gets or sets the request method for WCF Service used to populate content GET, POST, PUT, DELETE
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.WcfServicePath">
            <summary>
            Gets or sets a string value that indicates the virtual path of the WCF Service used by the RadXmlHttpPanel.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.WcfServiceMethod">
            <summary>
            Gets or sets a string value that indicates the WCF Service method used by the RadXmlHttpPanel.
            </summary>
        </member>
        <member name="P:Telerik.Web.UI.RadXmlHttpPanel.Value">
            <summary>
            Gets or sets a string value depending on which a certain content is loaded in the RadXmlHttpPanel.
            </summary>
        </member>
        <member name="T:Telerik.Web.UI.XmlHttpPanelRenderMode">
            <summary>
            Represents the possible layout rendering options for the content of an RadXmlHttpPanel control on a page.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.XmlHttpPanelRenderMode.Block">
            <summary>
            Specifies that the content of the RadXmlHttpPanel control is rendered inside an HTML "div" element.
            </summary>
        </member>
        <member name="F:Telerik.Web.UI.XmlHttpPanelRenderMode.Inline">
            <summary>
            Specifies that the content of the System.Web.UI.UpdatePanel control is rendered inside an HTML "span" element.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.CollectionExtensions.AddRange``1(System.Collections.Generic.ICollection{``0},System.Collections.Generic.IEnumerable{``0})">
            <summary>
            Adds the elements from the specified collection - <paramref name="items"/> to the end of the target <paramref name="collection"/>.
            </summary>
            <param name="collection">The collection that will be extended.</param>
            <param name="items">The items that will be added.</param>
            <exception cref="T:System.ArgumentNullException"><paramref name="items"/> is null</exception>
        </member>
        <member name="M:Telerik.Web.Data.EnumerableExtensions.ElementAt(System.Collections.IEnumerable,System.Int32)">
            <exception cref="T:System.ArgumentOutOfRangeException"><c>index</c> is out of range.</exception>
        </member>
        <member name="M:Telerik.Web.Data.EnumerableExtensions.Zip``3(System.Collections.Generic.IEnumerable{``0},System.Collections.Generic.IEnumerable{``1},System.Func{``0,``1,``2})">
            <exception cref="T:System.ArgumentNullException"><c>first</c> is null.</exception>
            <exception cref="T:System.ArgumentNullException"><c>second</c> is null.</exception>
            <exception cref="T:System.ArgumentNullException"><c>resultSelector</c> is null.</exception>
        </member>
        <member name="T:Telerik.Web.Data.GenericEnumerable`1">
            <summary>
            This type is used internally by the data binding infrastructure and is not intended to be used directly from your code.
            </summary>
            <typeparam name="T"></typeparam>
        </member>
        <member name="M:Telerik.Web.Data.GenericEnumerable`1.#ctor(System.Collections.IEnumerable)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.GenericEnumerable`1"/> class.
            </summary>
            <param name="source">The source.</param>
        </member>
        <member name="T:Telerik.Web.Data.Extensions.QueryableExtensions">
            <summary>
            Holds extension methods for <see cref="T:System.Linq.IQueryable"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Sort(System.Linq.IQueryable,System.Collections.Generic.IEnumerable{Telerik.Web.Data.SortDescriptor})">
            <summary>
            Sorts the elements of a sequence using the specified sort descriptors.
            </summary>
            <param name="source">A sequence of values to sort.</param>
            <param name="sortDescriptors">The sort descriptors used for sorting.</param>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> whose elements are sorted according to a <paramref name="sortDescriptors"/>.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Select(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">
            <summary>
            Projects each element of a sequence into a new form.
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> whose elements are the result of invoking a 
            projection selector on each element of <paramref name="source"/>.
            </returns>
            <param name="source"> A sequence of values to project. </param>
            <param name="selector"> A projection function to apply to each element. </param>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.GroupBy(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">
            <summary>
            Groups the elements of a sequence according to a specified key selector function.
            </summary>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> whose elements to group.</param>
            <param name="keySelector"> A function to extract the key for each element.</param>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> with <see cref="T:System.Linq.IGrouping`2"/> items, 
            whose elements contains a sequence of objects and a key.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">
            <summary>
            Sorts the elements of a sequence in ascending order according to a key.
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> whose elements are sorted according to a key.
            </returns>
            <param name="source">
            A sequence of values to order.
            </param>
            <param name="keySelector">
            A function to extract a key from an element.
            </param>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.OrderByDescending(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)">
            <summary>
            Sorts the elements of a sequence in descending order according to a key.
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> whose elements are sorted in descending order according to a key.
            </returns>
            <param name="source">
            A sequence of values to order.
            </param>
            <param name="keySelector">
            A function to extract a key from an element.
            </param>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression,System.Nullable{System.ComponentModel.ListSortDirection})">
            <summary>
            Calls <see cref="M:Telerik.Web.Data.Extensions.QueryableExtensions.OrderBy(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)"/> 
            or <see cref="M:Telerik.Web.Data.Extensions.QueryableExtensions.OrderByDescending(System.Linq.IQueryable,System.Linq.Expressions.LambdaExpression)"/> depending on the <paramref name="sortDirection"/>.
            </summary>
            <param name="source">The source.</param>
            <param name="keySelector">The key selector.</param>
            <param name="sortDirection">The sort direction.</param>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> whose elements are sorted according to a key.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.GroupBy(System.Linq.IQueryable,System.Collections.Generic.IEnumerable{Telerik.Web.Data.IGroupDescriptor})">
            <summary>
            Groups the elements of a sequence according to a specified <paramref name="groupDescriptors"/>.
            </summary>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> whose elements to group. </param>
            <param name="groupDescriptors">The group descriptors used for grouping.</param>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> with <see cref="T:Telerik.Web.Data.IGroup"/> items, 
            whose elements contains a sequence of objects and a key.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Aggregate(System.Linq.IQueryable,System.Collections.Generic.IEnumerable{Telerik.Web.Data.AggregateFunction})">
            <summary>
            Calculates the results of given aggregates functions on a sequence of elements.
            </summary>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> whose elements will 
            be used for aggregate calculation.</param>
            <param name="aggregateFunctions">The aggregate functions.</param>
            <returns>Collection of <see cref="T:Telerik.Web.Data.AggregateResult"/>s calculated for each function.</returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Aggregate(System.Linq.IQueryable,Telerik.Web.Data.AggregateFunction)">
            <summary>
            Calculates the results of a given aggregate function on a sequence of elements.
            </summary>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> whose elements will 
            be used for aggregate calculation.</param>
            <param name="aggregateFunction">The aggregate function.</param>
            <returns>Collection of <see cref="T:Telerik.Web.Data.AggregateResult"/>s calculated for the function.</returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Where(System.Linq.IQueryable,System.Linq.Expressions.Expression)">
            <summary> 
            Filters a sequence of values based on a predicate. 
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> that contains elements from the input sequence 
            that satisfy the condition specified by <paramref name="predicate"/>.
            </returns>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> to filter.</param>
            <param name="predicate"> A function to test each element for a condition.</param>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Where(System.Linq.IQueryable,System.Collections.Generic.IEnumerable{Telerik.Web.Data.IFilterDescriptor})">
            <summary> 
            Filters a sequence of values based on a collection of <see cref="T:Telerik.Web.Data.IFilterDescriptor"/>. 
            </summary>
            <param name="source">The source.</param>
            <param name="filterDescriptors">The filter descriptors.</param>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> that contains elements from the input sequence 
            that satisfy the conditions specified by each filter descriptor in <paramref name="filterDescriptors"/>.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Take(System.Linq.IQueryable,System.Int32)">
            <summary>
            Returns a specified number of contiguous elements from the start of a sequence.
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> that contains the specified number 
            of elements from the start of <paramref name="source"/>.
            </returns>
            <param name="source"> The sequence to return elements from.</param>
            <param name="count"> The number of elements to return. </param>
            <exception cref="T:System.ArgumentNullException"><paramref name="source"/> is null. </exception>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Skip(System.Linq.IQueryable,System.Int32)">
            <summary>
            Bypasses a specified number of elements in a sequence 
            and then returns the remaining elements.
            </summary>
            <returns>
            An <see cref="T:System.Linq.IQueryable"/> that contains elements that occur 
            after the specified index in the input sequence.
            </returns>
            <param name="source">
            An <see cref="T:System.Linq.IQueryable"/> to return elements from.
            </param>
            <param name="count">
            The number of elements to skip before returning the remaining elements.
            </param>
            <exception cref="T:System.ArgumentNullException"> <paramref name="source"/> is null.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.Count(System.Linq.IQueryable)">
            <summary> Returns the number of elements in a sequence.</summary>
            <returns> The number of elements in the input sequence.</returns>
            <param name="source">
            The <see cref="T:System.Linq.IQueryable"/> that contains the elements to be counted.
            </param>
            <exception cref="T:System.ArgumentNullException"> <paramref name="source"/> is null.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.ElementAt(System.Linq.IQueryable,System.Int32)">
            <summary> Returns the element at a specified index in a sequence.</summary>
            <returns> The element at the specified position in <paramref name="source"/>.</returns>
            <param name="source"> An <see cref="T:System.Linq.IQueryable"/> to return an element from.</param>
            <param name="index"> The zero-based index of the element to retrieve.</param>
            <exception cref="T:System.ArgumentNullException"> <paramref name="source"/> is null.</exception>
            <exception cref="T:System.ArgumentOutOfRangeException"> <paramref name="index"/> is less than zero.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Extensions.QueryableExtensions.ToIList(System.Linq.IQueryable)">
            <summary>
            Creates a <see cref="T:System.Collections.Generic.IList`1"/> from an <see cref="T:System.Linq.IQueryable"/> where T is <see cref="P:System.Linq.IQueryable.ElementType"/>.
            </summary>
            <returns>
            A <see cref="T:System.Collections.Generic.List`1"/> that contains elements from the input sequence.
            </returns>
            <param name="source">
            The <see cref="T:System.Linq.IQueryable"/> to create a <see cref="T:System.Collections.Generic.List`1"/> from.
            </param>
            <exception cref="T:System.ArgumentNullException"> 
            <paramref name="source"/> is null.
            </exception>
        </member>
        <member name="T:Telerik.Web.Data.DescriptorBase">
            <summary>
            Base class for all descriptors used for 
            handling the logic for property changed notifications.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.DescriptorBase.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)">
            <summary>
            Raises the <see cref="E:Telerik.Web.Data.DescriptorBase.PropertyChanged"/> event.
            </summary>
            <param name="args">The <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> instance containing the event data.</param>
        </member>
        <member name="M:Telerik.Web.Data.DescriptorBase.OnPropertyChanged(System.String)">
            <summary>
            Calls <see cref="M:Telerik.Web.Data.DescriptorBase.OnPropertyChanged(System.ComponentModel.PropertyChangedEventArgs)"/>
            creating a new instance of <see cref="T:System.ComponentModel.PropertyChangedEventArgs"/> with given <paramref name="propertyName"/>.
            </summary>
            <param name="propertyName">Name of the property that is changed.</param>
        </member>
        <member name="E:Telerik.Web.Data.DescriptorBase.PropertyChanged">
            <summary>
            Occurs when a property changes.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.DynamicClass">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="M:Telerik.Web.Data.DynamicClass.ToString">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="T:Telerik.Web.Data.DynamicProperty">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="M:Telerik.Web.Data.DynamicProperty.#ctor(System.String,System.Type)">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="P:Telerik.Web.Data.DynamicProperty.Name">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="P:Telerik.Web.Data.DynamicProperty.Type">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="T:Telerik.Web.Data.CompositeFilterDescriptor">
            <summary>
            Represents a filtering descriptor which serves as a container for one or more child filtering descriptors.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.FilterDescriptorBase">
            <summary>
            Base class for all <see cref="T:Telerik.Web.Data.IFilterDescriptor"/> used for 
            handling the logic for property changed notifications.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.IFilterDescriptor">
            <summary>
            Represents a filtering abstraction that knows how to create predicate filtering expression.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.IFilterDescriptor.CreateFilterExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates a predicate filter expression used for collection filtering.
            </summary>
            <param name="instance">The instance expression, which will be used for filtering.</param>
            <returns>A predicate filter expression.</returns>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptorBase.CreateFilterExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates a filter expression by delegating its creation to 
            <see cref="M:Telerik.Web.Data.FilterDescriptorBase.CreateFilterExpression(System.Linq.Expressions.ParameterExpression)"/>, if 
            <paramref name="instance"/> is <see cref="T:System.Linq.Expressions.ParameterExpression"/>, otherwise throws <see cref="T:System.ArgumentException"/>
            </summary>
            <param name="instance">The instance expression, which will be used for filtering.</param>
            <returns>A predicate filter expression.</returns>
            <exception cref="T:System.ArgumentException">Parameter should be of type <see cref="T:System.Linq.Expressions.ParameterExpression"/></exception>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptorBase.CreateFilterExpression(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Creates a predicate filter expression used for collection filtering.
            </summary>
            <param name="parameterExpression">The parameter expression, which will be used for filtering.</param>
            <returns>A predicate filter expression.</returns>
        </member>
        <member name="M:Telerik.Web.Data.CompositeFilterDescriptor.CreateFilterExpression(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Creates a predicate filter expression combining <see cref="P:Telerik.Web.Data.CompositeFilterDescriptor.FilterDescriptors"/> 
            expressions with <see cref="P:Telerik.Web.Data.CompositeFilterDescriptor.LogicalOperator"/>.
            </summary>
            <param name="parameterExpression">The parameter expression, which will be used for filtering.</param>
            <returns>A predicate filter expression.</returns>
        </member>
        <member name="P:Telerik.Web.Data.CompositeFilterDescriptor.LogicalOperator">
            <summary>
            Gets or sets the logical operator used for composing of <see cref="P:Telerik.Web.Data.CompositeFilterDescriptor.FilterDescriptors"/>.
            </summary>
            <value>The logical operator used for composition.</value>
        </member>
        <member name="P:Telerik.Web.Data.CompositeFilterDescriptor.FilterDescriptors">
            <summary>
            Gets or sets the filter descriptors that will be used for composition.
            </summary>
            <value>The filter descriptors used for composition.</value>
        </member>
        <member name="T:Telerik.Web.Data.FilterCompositionLogicalOperator">
            <summary>
            Logical operator used for filter descriptor composition.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterCompositionLogicalOperator.And">
            <summary>
            Combines filters with logical AND.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterCompositionLogicalOperator.Or">
            <summary>
            Combines filters with logical OR.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.FilterDescription">
            <summary>
            The class enables implementation of custom filtering logic.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescription.SatisfiesFilter(System.Object)">
            <summary>
            The method checks whether the passed parameter satisfies filter criteria. 
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescription.CreateFilterExpression(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Creates a predicate filter expression that calls <see cref="M:Telerik.Web.Data.FilterDescription.SatisfiesFilter(System.Object)"/>.
            </summary>
            <param name="parameterExpression">The parameter expression, which parameter 
            will be passed to <see cref="M:Telerik.Web.Data.FilterDescription.SatisfiesFilter(System.Object)"/> method.</param>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescription.IsActive">
            <summary>
            If false <see cref="M:Telerik.Web.Data.FilterDescription.SatisfiesFilter(System.Object)"/> will not execute.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.FilterDescriptor">
            <summary>
            Represents declarative filtering.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.#ctor">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.FilterDescriptor"/> class.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.#ctor(System.String,Telerik.Web.Data.FilterOperator,System.Object)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.FilterDescriptor"/> class.
            </summary>
            <param name="member">The member.</param>
            <param name="filterOperator">The filter operator.</param>
            <param name="filterValue">The filter value.</param>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.#ctor(System.String,Telerik.Web.Data.FilterOperator,System.Object,System.Boolean)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.FilterDescriptor"/> class.
            </summary>
            <param name="member">The member.</param>
            <param name="filterOperator">The filter operator.</param>
            <param name="filterValue">The filter value.</param>
            <param name="caseSensitive">If set to <c>true</c> indicates that this filter descriptor will be case sensitive.</param>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.CreateFilterExpression(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Creates a predicate filter expression.
            </summary>
            <param name="parameterExpression">The parameter expression, which will be used for filtering.</param>
            <returns>A predicate filter expression.</returns>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.Equals(Telerik.Web.Data.FilterDescriptor)">
            <summary>
            Determines whether the specified <paramref name="other"/> descriptor 
            is equal to the current one.
            </summary>
            <param name="other">The other filter descriptor.</param>
            <returns>
            True if all members of the current descriptor are 
            equal to the ones of <paramref name="other"/>, otherwise false.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.Equals(System.Object)">
            <summary>
            Determines whether the specified <paramref name="obj"/>
            is equal to the current descriptor.
            </summary>
            <returns>
            Calls <see cref="M:Telerik.Web.Data.FilterDescriptor.Equals(Telerik.Web.Data.FilterDescriptor)"/> 
            if <paramref name="obj"/> is <see cref="T:Telerik.Web.Data.FilterDescriptor"/>, otherwise
            returns false.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.GetHashCode">
            <summary>
            Serves as a hash function for a particular type.
            </summary>
            <returns>
            A hash code for the current filter descriptor.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.FilterDescriptor.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:Telerik.Web.Data.FilterDescriptor"/>.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents the current <see cref="T:Telerik.Web.Data.FilterDescriptor"/>.
            </returns>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescriptor.Member">
            <summary>
            Gets or sets the member name which will be used for filtering.
            </summary>
            <value>The member that will be used for filtering.</value>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescriptor.MemberType">
            <summary>
            Gets or sets the type of the member that is used for filtering.
            Set this property if the member type cannot be resolved automatically.
            Such cases are: items with ICustomTypeDescriptor, XmlNode or DataRow.
            Changing this property does not raise 
            <see cref="E:System.ComponentModel.INotifyPropertyChanged.PropertyChanged"/> event.
            </summary>
            <value>The type of the member used for filtering.</value>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescriptor.Operator">
            <summary>
            Gets or sets the filter operator.
            </summary>
            <value>The filter operator.</value>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescriptor.Value">
            <summary>
            Gets or sets the target filter value.
            </summary>
            <value>The filter value.</value>
        </member>
        <member name="P:Telerik.Web.Data.FilterDescriptor.IsCaseSensitive">
            <summary>
            Gets or sets a value indicating whether this filter descriptor is case sensitvive.
            </summary>
            <value><strong>true</strong> if the filter descriptor is case sensitive; otherwise, 
            <strong>false</strong>. The default value is <strong>true</strong>.</value>
        </member>
        <member name="T:Telerik.Web.Data.FilterDescriptorCollection">
            <summary>
            Represents collection of <see cref="T:Telerik.Web.Data.IFilterDescriptor"/>.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.FilterOperator">
            <summary>
            Operator used in <see cref="T:Telerik.Web.Data.FilterDescription"/>
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsLessThan">
            <summary>
            Left operand must be smaller than the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsLessThanOrEqualTo">
            <summary>
            Left operand must be smaller than or equal to the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsEqualTo">
            <summary>
            Left operand must be equal to the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsNotEqualTo">
            <summary>
            Left operand must be different from the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsGreaterThanOrEqualTo">
            <summary>
            Left operand must be larger than the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsGreaterThan">
            <summary>
            Left operand must be larger than or equal to the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.StartsWith">
            <summary>
            Left operand must start with the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.EndsWith">
            <summary>
            Left operand must end with the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.Contains">
            <summary>
            Left operand must contain the right one.
            </summary>
        </member>
        <member name="F:Telerik.Web.Data.FilterOperator.IsContainedIn">
            <summary>
            Left operand must be contained in the right one.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.FilterOperatorExtensions.CreateExpression(Telerik.Web.Data.FilterOperator,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.FilterOperatorExtensions.CreateExpression(Telerik.Web.Data.FilterOperator,System.Linq.Expressions.Expression,System.Linq.Expressions.Expression,System.Boolean)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="T:Telerik.Web.Data.AggregateFunctionsGroup">
            <summary>
            Represents group with aggregate functions.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.Group">
            <summary>
            Represents an item that is created after grouping.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.IGroup">
            <summary>
            Represents an item that is created after grouping.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.IGroup.Key">
            <summary>
            Gets the key for this group.
            </summary>
            <value>The key for this group.</value>
        </member>
        <member name="P:Telerik.Web.Data.IGroup.Items">
            <summary>
            Gets the items in this groups.
            </summary>
            <value>The items in this group.</value>
        </member>
        <member name="P:Telerik.Web.Data.IGroup.HasSubgroups">
            <summary>
            Gets a value indicating whether this instance has sub groups.
            </summary>
            <value>
            	<c>true</c> if this instance has sub groups; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.Data.IGroup.ItemCount">
            <summary>
            Gets the <see cref="P:Telerik.Web.Data.IGroup.Items"/> count.
            </summary>
            <value>The <see cref="P:Telerik.Web.Data.IGroup.Items"/> count.</value>
        </member>
        <member name="P:Telerik.Web.Data.IGroup.Subgroups">
            <summary>
            Gets the subgroups, if <see cref="P:Telerik.Web.Data.IGroup.HasSubgroups"/> is true, otherwise empty collection.
            </summary>
            <value>The subgroups.</value>
        </member>
        <member name="M:Telerik.Web.Data.Group.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents this instance.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents this instance.
            </returns>
        </member>
        <member name="P:Telerik.Web.Data.Group.HasSubgroups">
            <summary>
            Gets a value indicating whether this instance has any sub groups.
            </summary>
            <value>
            	<c>true</c> if this instance has sub groups; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="P:Telerik.Web.Data.Group.ItemCount">
            <summary>
            Gets the number of items in this group.
            </summary>
            <value>The items count.</value>
        </member>
        <member name="P:Telerik.Web.Data.Group.Subgroups">
            <summary>
            Gets the subgroups, if <see cref="P:Telerik.Web.Data.Group.HasSubgroups"/> is true, otherwise empty collection.
            </summary>
            <value>The subgroups.</value>
        </member>
        <member name="P:Telerik.Web.Data.Group.Items">
            <summary>
            Gets the items in this groups.
            </summary>
            <value>The items in this group.</value>
        </member>
        <member name="P:Telerik.Web.Data.Group.Key">
            <summary>
            Gets the key for this group.
            </summary>
            <value>The key for this group.</value>
        </member>
        <member name="M:Telerik.Web.Data.AggregateFunctionsGroup.GetAggregateResults(System.Collections.Generic.IEnumerable{Telerik.Web.Data.AggregateFunction})">
            <summary>
            Gets the aggregate results generated for the given aggregate functions.
            </summary>
            <value>The aggregate results for the provided aggregate functions.</value>
            <exception cref="T:System.ArgumentNullException"><c>functions</c> is null.</exception>
        </member>
        <member name="P:Telerik.Web.Data.AggregateFunctionsGroup.AggregateFunctionsProjection">
            <summary>
            Gets or sets the aggregate functions projection for this group. 
            This projection is used to generate aggregate functions results for this group.
            </summary>
            <value>The aggregate functions projection.</value>
        </member>
        <member name="T:Telerik.Web.Data.AggregateFunction">
            <summary>
            Represents the basic class that supports creating functions that provide statistical information about a set of items.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.AggregateFunction.CreateAggregateExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates the aggregate expression that is used for constructing expression 
            tree that will calculate the aggregate result.
            </summary>
            <param name="enumerableExpression">The grouping expression.</param>
            <returns></returns>
        </member>
        <member name="M:Telerik.Web.Data.AggregateFunction.GenerateFunctionName">
            <summary>
            Generates default name for this function using this type's name.
            </summary>
            <returns>
            Function name generated with the following pattern: 
            {<see cref="M:System.Object.GetType"/>.<see cref="P:System.Reflection.MemberInfo.Name"/>}_{<see cref="M:System.Object.GetHashCode"/>}
            </returns>
        </member>
        <member name="P:Telerik.Web.Data.AggregateFunction.Caption">
            <summary>
            Gets or sets the informative message to display as an illustration of the aggregate function.
            </summary>
            <value>The caption to display as an illustration of the aggregate function.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateFunction.FunctionName">
            <summary>
            Gets or sets the name of the aggregate function, which appears as a property of the group record on which records the function works.
            </summary>
            <value>The name of the function as visible from the group record.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateFunction.ResultFormatString">
            <summary>
            Gets or sets a string that is used to format the result value.
            </summary>
            <value>The format string.</value>
        </member>
        <member name="T:Telerik.Web.Data.AggregateResult">
            <summary>
            Represents a result returned by an aggregate function.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.AggregateResult.#ctor(System.Object,System.Int32,Telerik.Web.Data.AggregateFunction)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.AggregateResult"/> class.
            </summary>
            <param name="value">The value of the result.</param>
            <param name="count">The number of arguments used for the calculation of the result.</param>
            <param name="function">Function that generated the result.</param>
            <exception cref="T:System.ArgumentNullException"><c>function</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.Data.AggregateResult.#ctor(Telerik.Web.Data.AggregateFunction)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.AggregateResult"/> class.
            </summary>
            <param name="function"><see cref="T:Telerik.Web.Data.AggregateFunction"/> that generated the result.</param>
            <exception cref="T:System.ArgumentNullException"><c>function</c> is null.</exception>
        </member>
        <member name="M:Telerik.Web.Data.AggregateResult.#ctor(System.Object,Telerik.Web.Data.AggregateFunction)">
            <summary>
            Initializes a new instance of the <see cref="T:Telerik.Web.Data.AggregateResult"/> class.
            </summary>
            <param name="value">The value of the result.</param>
            <param name="function"><see cref="T:Telerik.Web.Data.AggregateFunction"/> that generated the result.</param>
        </member>
        <member name="M:Telerik.Web.Data.AggregateResult.ToString">
            <summary>
            Returns a <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
            </summary>
            <returns>
            A <see cref="T:System.String"/> that represents the current <see cref="T:System.Object"/>.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.AggregateResult.OnPropertyChanged(System.String)">
            <summary>
            Called when a property has changed.
            </summary>
            <param name="propertyName">Name of the property.</param>
        </member>
        <member name="E:Telerik.Web.Data.AggregateResult.PropertyChanged">
            <summary>
            Occurs when a property value changes.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResult.Value">
            <summary>
            Gets or sets the value of the result.
            </summary>
            <value>The value of the result.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResult.FormattedValue">
            <summary>
            Gets the formatted value of the result.
            </summary>
            <value>The formatted value of the result.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResult.ItemCount">
            <summary>
            Gets or sets the number of arguments used for the calulation of the result.
            </summary>
            <value>The number of arguments used for the calulation of the result.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResult.Caption">
            <summary>
            Gets or sets the text which serves as a caption for the result in a user interface..
            </summary>
            <value>The text which serves as a caption for the result in a user interface.</value>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResult.FunctionName">
            <summary>
            Gets the name of the function.
            </summary>
            <value>The name of the function.</value>
        </member>
        <member name="T:Telerik.Web.Data.AggregateResultCollection">
            <summary>
            Represents a collection of <see cref="T:Telerik.Web.Data.AggregateResult"/> items.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.AggregateResultCollection.Item(System.String)">
            <summary>
            Gets the first <see cref="T:Telerik.Web.Data.AggregateResult"/> which
            <see cref="P:Telerik.Web.Data.AggregateResult.FunctionName"/> is equal to <paramref name="functionName"/>.
            </summary>
            <value>
            The <see cref="T:Telerik.Web.Data.AggregateResult"/> for the specified function if any, otherwise null.
            </value>
        </member>
        <member name="T:Telerik.Web.Data.GroupDescriptorBase">
            <summary>
            Servers as a base class for group descriptors. Holds <see cref="P:Telerik.Web.Data.GroupDescriptorBase.SortDirection"/> 
            that will be used to sort the groups created from the descriptor.
            </summary>
        </member>
        <member name="T:Telerik.Web.Data.IGroupDescriptor">
            <summary>
            Represents a grouping abstraction that knows how to 
            create group key and group sort expressions.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.IGroupDescriptor.CreateGroupKeyExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates a group expression that returns 
            the grouping key for each item in a collection.
            </summary>
            <param name="itemExpression">
            Expression representing an item in a collection.
            </param>
            <returns>
            Expression that creates group key for the given item.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.IGroupDescriptor.CreateGroupSortExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates the group order by expression that sorts 
            the groups created from this descriptor.
            </summary>
            <param name="groupingExpression">
            The grouping expression, which represents the grouped items 
            created from the <see cref="M:Telerik.Web.Data.IGroupDescriptor.CreateGroupKeyExpression(System.Linq.Expressions.Expression)"/>.
            </param>
            <returns>
            Expression that represents the sort criteria for each group.
            </returns>
        </member>
        <member name="P:Telerik.Web.Data.IGroupDescriptor.SortDirection">
            <summary>
            Gets the sort direction for this descriptor. If the value is <see langword="null"/>
            no sorting will be applied.
            </summary>
            <value>The sort direction. The default value is <see langword="null"/>.</value>
        </member>
        <member name="M:Telerik.Web.Data.GroupDescriptorBase.CreateGroupKeyExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates a group expression by delegating its creation to 
            <see cref="M:Telerik.Web.Data.GroupDescriptorBase.CreateGroupKeyExpression(System.Linq.Expressions.ParameterExpression)"/>, if 
            <paramref name="itemExpression"/> is <see cref="T:System.Linq.Expressions.ParameterExpression"/>, 
            otherwise throws <see cref="T:System.ArgumentException"/>
            </summary>
            <param name="itemExpression">
            The instance expression, which will be used for grouping.
            </param>
            <returns>
            Expression that creates group key for the given item.
            </returns>
            <exception cref="T:System.ArgumentException">Parameter should be of type <see cref="T:System.Linq.Expressions.ParameterExpression"/></exception>
        </member>
        <member name="M:Telerik.Web.Data.GroupDescriptorBase.CreateGroupKeyExpression(System.Linq.Expressions.ParameterExpression)">
            <summary>
            Creates a group expression that returns 
            the grouping key for each item in a collection.
            </summary>
            <param name="parameterExpression">
            The parameter expression, which will be used for grouping.
            </param>
            <returns>
            Expression that creates group key for the given item.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.GroupDescriptorBase.CreateGroupSortExpression(System.Linq.Expressions.Expression)">
            <summary>
            Creates sorting key expression that sorts the groups 
            created from this descriptor using the group's key.
            </summary>
            <param name="groupingExpression">The grouping expression, which represents the grouped items
            created from the <see cref="M:Telerik.Web.Data.GroupDescriptorBase.CreateGroupKeyExpression(System.Linq.Expressions.Expression)"/>.</param>
            <returns>
            Expression that represents the sort criteria for each group.
            </returns>
        </member>
        <member name="M:Telerik.Web.Data.GroupDescriptorBase.CycleSortDirection">
            <summary>
            Changes the <see cref="T:Telerik.Web.Data.SortDescriptor"/> to the next logical value.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.GroupDescriptorBase.SortDirection">
            <summary>
            Gets or sets the sort direction for this descriptor. If the value is null
            no sorting will be applied.
            </summary>
            <value>The sort direction. The default value is null.</value>
        </member>
        <member name="T:Telerik.Web.Data.IAggregateFunctionsProvider">
            <summary>
            Defines property for collection of <see cref="T:Telerik.Web.Data.AggregateFunction"/>.
            Used by the expression data engine to create aggregates for a given group.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.IAggregateFunctionsProvider.AggregateFunctions">
            <summary>
            Gets the aggregate functions used when grouping is executed.
            </summary>
            <value>The aggregate functions that will be used in grouping.</value>
        </member>
        <member name="T:Telerik.Web.Data.SortDescriptor">
            <summary>
            Represents declarative sorting.
            </summary>
        </member>
        <member name="P:Telerik.Web.Data.SortDescriptor.Member">
            <summary>
            Gets or sets the member name which will be used for sorting.
            </summary>
            <filterValue>The member that will be used for sorting.</filterValue>
        </member>
        <member name="P:Telerik.Web.Data.SortDescriptor.SortDirection">
            <summary>
            Gets or sets the sort direction for this sort descriptor. If the value is null
            no sorting will be applied.
            </summary>
            <value>The sort direction. The default value is null.</value>
        </member>
        <member name="P:Telerik.Web.Data.Expressions.ExpressionBuilderOptions.LiftMemberAccessToNull">
            <summary>
            Gets or sets a value indicating whether member access expression used
            by this builder should be lifted to null. The default value is true;
            </summary>
            <value>
            	<c>true</c> if member access should be lifted to null; otherwise, <c>false</c>.
            </value>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.ExpressionFactory.LiftStringExpressionToEmpty(System.Linq.Expressions.Expression)">
            <exception cref="T:System.ArgumentException">Provided expression should have string type</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.FilterExpressionBuilder.CreateFilterExpression">
            <exception cref="T:System.ArgumentException"><c>ArgumentException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.FilterDescriptorExpressionBuilder.CreateBodyExpression">
            <exception cref="T:System.ArgumentException"><c>ArgumentException</c>.</exception>
        </member>
        <member name="T:Telerik.Web.Data.Expressions.CustomTypeDescriptorExtensions">
            <exclude/>
            <excludeToc/>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.CustomTypeDescriptorExtensions.Property``1(System.ComponentModel.ICustomTypeDescriptor,System.String)">
            <exception cref="T:System.ArgumentException"><c>ArgumentException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.CustomTypeDescriptorPropertyAccessExpressionBuilder.#ctor(System.Type,System.Type,System.String)">
            <exception cref="T:System.ArgumentException"><paramref name="elementType"/> did not implement <see cref="T:System.ComponentModel.ICustomTypeDescriptor"/>.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.MemberAccessTokenExtensions.CreateMemberAccessExpression(Telerik.Web.Data.Expressions.IMemberAccessToken,System.Linq.Expressions.Expression)">
            <exception cref="T:System.ArgumentException">
            Invalid name for property or field; or indexer with the specified arguments.
            </exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.MemberAccessTokenExtensions.GetMemberInfoForType(Telerik.Web.Data.Expressions.IMemberAccessToken,System.Type)">
            <exception cref="T:System.InvalidOperationException"><c>InvalidOperationException</c>.</exception>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.UnboxT`1.ValueField(System.Object)">
            <exception cref="T:System.InvalidCastException"><c>InvalidCastException</c>.</exception>
        </member>
        <member name="T:Telerik.Web.Data.Expressions.XmlNodeExtensions">
            <summary>
            Holds extension methods for <see cref="T:System.Xml.XmlNode"/>.
            </summary>
        </member>
        <member name="M:Telerik.Web.Data.Expressions.XmlNodeExtensions.ChildElementInnerText(System.Xml.XmlNode,System.String)">
            <exception cref="T:System.ArgumentException">
            Child element with name specified by <paramref name="childName"/> does not exists.
            </exception>
        </member>
    </members>
</doc>
