You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20782 lines
969 KiB
20782 lines
969 KiB
<?xml version="1.0"?>
|
|
<doc>
|
|
<assembly>
|
|
<name>Syncfusion.HTMLUI.Windows</name>
|
|
</assembly>
|
|
<members>
|
|
<member name="T:Syncfusion.HTMLUIWindowsAssembly">
|
|
<summary>
|
|
This class holds the name of the Syncfusion.HTMLUI.Windows assembly and provides a helper
|
|
routine that helps with resolving types when loading a serialization stream and when
|
|
the framework probes for assemblies by reflection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.HTMLUIWindowsAssembly.Name">
|
|
<summary>
|
|
The full name of this assembly without version information: "Syncfusion.HTMLUI.Windows "
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.HTMLUIWindowsAssembly.Assembly">
|
|
<summary>
|
|
A reference to the <see cref="T:System.Reflection.Assembly"/> for the grid assembly.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.HTMLUIWindowsAssembly.RootNamespace">
|
|
<summary>
|
|
The root namespace of this assembly. Used internally for locating resources within the assembly.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.HTMLUIWindowsAssembly.AssemblyResolver(System.Object,System.ResolveEventArgs)">
|
|
<summary>
|
|
This delegate helps with resolving types and can be used as a eventhandler
|
|
for a <see cref="E:System.AppDomain.AssemblyResolve"/> event.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">The event data with information about the type.</param>
|
|
<returns>A reference to the assembly where the type is located.</returns>
|
|
<remarks>
|
|
Use this handler when reading back types from a serialization stread
|
|
saved with an earlier version of this assembly.
|
|
</remarks>
|
|
<example>
|
|
<code lang="C#">
|
|
<![CDATA[
|
|
public static GridModel LoadSoap(Stream s)
|
|
{
|
|
try
|
|
{
|
|
AppDomain.CurrentDomain.AssemblyResolve += new ResolveEventHandler(GridAssembly.AssemblyResolver);
|
|
SoapFormatter b = new SoapFormatter();
|
|
b.AssemblyFormat = FormatterAssemblyStyle.Simple;
|
|
GridModel t = b.Deserialize(s) as GridModel;
|
|
t.Modified = false;
|
|
return t;
|
|
}
|
|
finally
|
|
{
|
|
AppDomain.CurrentDomain.AssemblyResolve -= new ResolveEventHandler(GridAssembly.AssemblyResolver);
|
|
}
|
|
}
|
|
]]>
|
|
</code>
|
|
</example>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl">
|
|
<summary>
|
|
HTMLUIControl renders an HTML document.
|
|
</summary>
|
|
<remarks>
|
|
The HTMLUIControl loads and renders an HTML document with the appropriate styles. The control also
|
|
exposes the HTML elements as objects for programmatic manipulation.
|
|
</remarks>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DEF_TITLE">
|
|
<summary>
|
|
Default title of newly created control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DEF_THREAD_NAME">
|
|
<summary>
|
|
Name of the thread which loads the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.TITLE">
|
|
<summary>
|
|
Name of the Title tag element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.borderSides">
|
|
<summary>
|
|
To sets the border sides of the control that will be drawn
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.border3DStyle">
|
|
<summary>
|
|
To sets the style of the 3D border.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.borderStyle">
|
|
<summary>
|
|
To sets the border style of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.borderSingle">
|
|
<summary>
|
|
To sets the 2D border style
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.borderColor">
|
|
<summary>
|
|
To set the border color
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DEF_UNIQUE_ID_PREFFIX">
|
|
<summary>
|
|
Prefix for setting unique id to an element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl._htmlParser">
|
|
<summary>
|
|
Parser that parses and converts HTML document to XML document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl._cssParser">
|
|
<summary>
|
|
Parser for parsing CSS data into XML.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.dEF_TITLE_HEIGHT">
|
|
<summary>
|
|
This is not a real constant and it's value must be changed on changing
|
|
Desktop settings. It is used for drawing title rectangle
|
|
of document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_gdi">
|
|
<summary>
|
|
Helper class which helps to draw some GDI premitives.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_titleFormat">
|
|
<summary>
|
|
Default Title string format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_formats">
|
|
<summary>
|
|
Builds Formats collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_htmlDocument">
|
|
<summary>
|
|
Holds all hashes of elements and formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_uniqueID">
|
|
<summary>
|
|
Unique ID for HTML Elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_strTitle">
|
|
<summary>
|
|
Default title of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bNeedDefaultMargin">
|
|
<summary>
|
|
True shows default margin of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bShowTitle">
|
|
<summary>
|
|
True shows title of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_iCanInvalidate">
|
|
<summary>
|
|
Variable which helps to control redrawing of control. If the value is not
|
|
equal to zero, then control does not redraw itself till user
|
|
forces action or EndUpdate method call.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_startPoint">
|
|
<summary>
|
|
Start point to draw element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bRecalculate">
|
|
<summary>
|
|
Indicates if we must recalculate size and position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_loadThread">
|
|
<summary>
|
|
Thread for loading new document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_threadData">
|
|
<summary>
|
|
New Input element which works inside new thread.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_tooltip">
|
|
<summary>
|
|
ToolTip control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bLoading">
|
|
<summary>
|
|
True if document is loading at the current moment.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_history">
|
|
<summary>
|
|
History of loaded document's paths.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_loadDelegate">
|
|
<summary>
|
|
Delegate for invoking Event OnLoadFinished.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_loadStarted">
|
|
<summary>
|
|
Delegate for invoking Event OnLoadStarted.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_loadError">
|
|
<summary>
|
|
Delegate for invoking Event LoadError.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_prerenderEvent">
|
|
<summary>
|
|
Raises PreRenderDocument event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_startupFolder">
|
|
<summary>
|
|
Path to startup folder for current document in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_startupDocument">
|
|
<summary>
|
|
Path to current document, loaded in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_clickedButton">
|
|
<summary>
|
|
Clicked mouse button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_clickedLocation">
|
|
<summary>
|
|
Indicates where mouse up event occurs.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_scripts">
|
|
<summary>
|
|
Collection of script collections.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_binitDone">
|
|
<summary>
|
|
Indicates whether initialization of control has been done.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bAutoRunScripts">
|
|
<summary>
|
|
Indicates whether to run script just after loading document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bEnableMultithreading">
|
|
<summary>
|
|
Indicates whether a separate thread is used by the control for document loading.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_selectionManager">
|
|
<summary>
|
|
Controls all selection in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bEnableTextCache">
|
|
<summary>
|
|
Indicates whether the original text of the document will be saved.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_bSizetoFit">
|
|
<summary>
|
|
Indicates whether the HTMLUI image size should be set according to the width of the image
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.HTMLParser">
|
|
<summary>
|
|
Gets an instance of the HTMLUIParser.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.CSSParser">
|
|
<summary>
|
|
Gets an instance of the LiteCSSParser.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.FormatManager">
|
|
<summary>
|
|
Gets an instance of the Format manager.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DefaultFormat">
|
|
<summary>
|
|
Gets an access to default format used as base for document rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Document">
|
|
<summary>
|
|
Gets the parsed and displayed document.
|
|
</summary>
|
|
<remarks>
|
|
The <see cref="T:Syncfusion.Windows.Forms.HTMLUI.IInputHTML"/> document defines the various elements of the HTML document
|
|
loaded into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/>. The document provides access to all the elements in the
|
|
HTML document.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Font">
|
|
<summary>
|
|
Overrides the font property.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Text">
|
|
<summary>
|
|
Gets or sets the HTML rendered by the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/>.
|
|
</summary>
|
|
<remarks>
|
|
Any text set to this property will be parsed by the control and rendered.
|
|
If <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.IsOriginalTextCached"/> property is set to true and document
|
|
is loaded from this property or from local file using
|
|
method, this property will return original data /// entered for loading; Otherwise, this property will
|
|
return <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DisplayText"/> property content.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DisplayText">
|
|
<summary>
|
|
Gets the internal appearance of the document's HTML data.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderSides">
|
|
<summary>
|
|
Gets or sets the border sides of the control that will be drawn.
|
|
</summary>
|
|
<value>One of the <see cref="T:System.Windows.Forms.Border3DSide"/> values. Default is Border3DSide.All.</value>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorderSides">
|
|
<summary>
|
|
To reset BorderSides
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorderSides">
|
|
<summary>
|
|
To Specify BorderSides to be serialized or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderColor">
|
|
<summary>
|
|
Gets or sets the color of the 2D border.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorderColor">
|
|
<summary>
|
|
To reset Border color
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorderColor">
|
|
<summary>
|
|
To Specify BorderColor to be serialized or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderSingle">
|
|
<summary>
|
|
Gets or sets the 2D border style.
|
|
</summary>
|
|
<value>One of the <see cref="T:System.Windows.Forms.ButtonBorderStyle"/> values. Default is ButtonBorderStyle.Solid.</value>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorderSingle">
|
|
<summary>
|
|
To reset BorderSingle
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorderSingle">
|
|
<summary>
|
|
To Specify BorderSingle to be serialized or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderStyle">
|
|
<summary>
|
|
Gets or sets the border style of the control.
|
|
</summary>
|
|
<value>One of the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderStyle"/> values. Default is BorderStyle.Fixed3D.</value>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorderStyle">
|
|
<summary>
|
|
To reset BorderStyle
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorderStyle">
|
|
<summary>
|
|
To Specify BorderStyle to be serialized or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Border3DStyle">
|
|
<summary>
|
|
Gets or sets the style of the 3D border.
|
|
</summary>
|
|
<value>One of the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Border3DStyle"/> values. Default is Border3DStyle.Sunken.</value>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorder3DStyle">
|
|
<summary>
|
|
To reset Border3DStyle
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorder3DStyle">
|
|
<summary>
|
|
To Specify BorderSides to be serialized or not
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.m_BorderWidth">
|
|
<summary>
|
|
Initialize the border width.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderWidth">
|
|
<summary>
|
|
Gets or sets the value for BorderThickness.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ResetBorderWidth">
|
|
<summary>
|
|
Resets the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderWidth"/> property to it's default value.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeBorderWidth">
|
|
<summary>
|
|
Indicates whether the current value of the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderWidth"/> property is to be serialized.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ThemedDrawing">
|
|
<summary>
|
|
Gets or sets the border
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Syncfusion#Drawing#INonClientPaintingSupport#NonClientPaint(System.Windows.Forms.PaintEventArgs,System.Drawing.Rectangle,System.Drawing.Rectangle)">
|
|
<summary>
|
|
To draw the border at non client area
|
|
</summary>
|
|
<param name="e"></param>
|
|
<param name="displayRect"></param>
|
|
<param name="windowRectInScreen"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.WndProc(System.Windows.Forms.Message@)">
|
|
<summary>
|
|
Override WndProc
|
|
</summary>
|
|
<param name="m"></param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Title">
|
|
<summary>
|
|
Gets or sets the Title of the HTMLUIControl / the document loaded into the control.
|
|
</summary>
|
|
<remarks>
|
|
The Title value can be set explicitly or this is auto extracted from the Title tag of the HTML document.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.NeedDefaultMargin">
|
|
<summary>
|
|
Gets or sets a value indicating whether the default margin is needed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShowTitle">
|
|
<summary>
|
|
Gets or sets a value indicating whether the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Text"/> will be displayed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.History">
|
|
<summary>
|
|
Gets the history of the documents loaded by the control in this session.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.StartupDocument">
|
|
<summary>
|
|
Gets or sets the path to the start up document for the control.
|
|
</summary>
|
|
<remarks>The startup document is the document that will be loaded by the HTMLUIControl initially.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.StartupFolder">
|
|
<summary>
|
|
Gets or sets the startup folder for the start up document of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ClickedPoint">
|
|
<summary>
|
|
Gets the point where the mouse was clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Scripts">
|
|
<summary>
|
|
Gets the collection of scripts in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.AutoRunScripts">
|
|
<summary>
|
|
Gets or sets a value indicating whether the scripts in the body of the loaded HTML document must be executed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SizeToFit">
|
|
<summary>
|
|
Specifies that the size of the image on a HTMLUI that automatically gets adjust to fit on a HTMLUI.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.EnableMultithreading">
|
|
<summary>
|
|
Gets or sets a value indicating whether a separate thread is used for document loading.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.IsOriginalTextCached">
|
|
<summary>
|
|
Gets or sets a value indicating whether the original text of the document will be stored.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SelectedText">
|
|
<summary>
|
|
Gets the selected text displayed in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SelectedElements">
|
|
<summary>
|
|
Gets an array of selected elements in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ThreadDocument">
|
|
<summary>
|
|
Gets of data while data is loading.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ToolTip">
|
|
<summary>
|
|
Gets the ToolTip control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.IsLoading">
|
|
<summary>
|
|
Gets a value indicating whether the document is loading.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Recalculate">
|
|
<summary>
|
|
Gets or sets a value indicating whether the size and position must be recalculated.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Increase">
|
|
<summary>
|
|
Gets the increase in height needed to accommodate the title.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ClickedButton">
|
|
<summary>
|
|
Gets the clicked mouse button.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InDesignMode">
|
|
<summary>
|
|
Gets a value indicating whether the control is in design mode.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DocumentEx">
|
|
<summary>
|
|
Gets the document property typed to InputHTML type.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SelectionManager">
|
|
<summary>
|
|
Gets the Selection manager that controls selection in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.TitleChanged">
|
|
<summary>
|
|
Event that is to be raised after the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Title"/> property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShowTitleChanged">
|
|
<summary>
|
|
Event that is to be raised after the <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShowTitle"/> property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadFinished">
|
|
<summary>
|
|
Event that is to be raised after the HTML document is loaded.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadStarted">
|
|
<summary>
|
|
Event that is to be raised when loading of a new HTML document has started.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadError">
|
|
<summary>
|
|
Event that is to be raised when an error occurs during HTML document loading / rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.PreRenderDocument">
|
|
<summary>
|
|
Event that is to be raised when a tree of elements has been created, but their size
|
|
and location have not been calculated yet.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LinkClicked">
|
|
<summary>
|
|
Event that is to be raised after the hyperlink was clicked and before the hyperlink tries
|
|
to load a new resource.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderSidesChanged">
|
|
<summary>
|
|
Occurs when the HTMLUI Control BorderSides is changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderStyleChanged">
|
|
<summary>
|
|
Occurs when the HTMLUI Control BorderStyle is changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Border3DStyleChanged">
|
|
<summary>
|
|
Occurs when the HTMLUI Control Border3DStyle is changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderSingleChanged">
|
|
<summary>
|
|
Occurs when the HTMLUI Control Border2DStyle is changed
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BorderColorChanged">
|
|
<summary>
|
|
Occurs when the HTMLUI Control BorderColor is changed
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.#ctor">
|
|
<overload>
|
|
Overloaded. Initializes a new <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/>.
|
|
</overload>
|
|
<summary>
|
|
Initializes a new instance of the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> class.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Dispose(System.Boolean)">
|
|
<summary>
|
|
Override Dispose
|
|
</summary>
|
|
<param name="disposing">bool variable</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Dispose(Syncfusion.Windows.Forms.HTMLUI.InputHTML@)">
|
|
<summary>
|
|
Disposes all previous <see cref="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Document"/> after a new document has been loaded.
|
|
</summary>
|
|
<param name="document">Document being disposed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetBublingEventArgs(System.EventArgs)">
|
|
<summary>
|
|
Converts the EventArgs object to BubblingEventArgs type if possible.
|
|
</summary>
|
|
<param name="args">EventArgs object.</param>
|
|
<returns>BubblingEventArgs object if converting was successful,
|
|
Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetBubblingEventArgs(System.EventArgs)">
|
|
<summary>
|
|
Converts the EventArgs object to BubblingEventArgs type if possible.
|
|
</summary>
|
|
<param name="args">EventArgs object.</param>
|
|
<returns>BubblingEventArgs object if converting was successful,
|
|
Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadHTML(System.String)">
|
|
<overload>
|
|
Overloaded. Loads the specified HTML file into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> and renders it.
|
|
</overload>
|
|
<summary>
|
|
Loads the specified HTML file into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> and renders it.
|
|
</summary>
|
|
<param name="fileName">Source file name.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadHTML(System.IO.Stream)">
|
|
<overload>
|
|
Loads the specified HTML document from a <see cref="T:System.IO.Stream"/> into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> and renders it.
|
|
</overload>
|
|
<summary>
|
|
Loads the specified HTML document from a and renders it.
|
|
</summary>
|
|
<param name="stream">Input stream reference.</param>
|
|
<remarks>A stream passing to this method must support Seek operation.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadHTML(System.Uri)">
|
|
<overload>
|
|
Loads the specified HTML document from a <see cref="T:System.Uri"/> into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> and renders it.
|
|
</overload>
|
|
<summary>
|
|
Loads the specified HTML document from a <see cref="T:System.Uri"/> into the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl"/> and renders it.
|
|
</summary>
|
|
<param name="uri">Source file name by URI.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadCSS(System.String)">
|
|
<overload>
|
|
Overloaded. Loads the styles from the specified CSS file and refreshes current document using the styles.
|
|
</overload>
|
|
<summary>
|
|
Loads styles from the specified CSS file and refreshes current document using the styles.
|
|
</summary>
|
|
<param name="fileName">Input file with CSS styles.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadCSSFromString(System.String)">
|
|
<summary>
|
|
Updates the specified CSS style in the form of string to the HTML document.
|
|
</summary>
|
|
<param name="style">The CSS style as string.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadCSS(System.IO.Stream)">
|
|
<overload>
|
|
Loads styles from the specified CSS document from a <see cref="T:System.IO.Stream"/> and refreshes current document using the styles.
|
|
</overload>
|
|
<summary>
|
|
Loads styles from the specified CSS document from a <see cref="T:System.IO.Stream"/> and refreshes current document using the styles.
|
|
</summary>
|
|
<param name="stream">Input stream with CSS styles.</param>
|
|
<remarks>A stream passing to this method must support Seek operation.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadFromString(System.String)">
|
|
<summary>
|
|
Loads HTML code from string.
|
|
</summary>
|
|
<param name="html">Html file</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SelectAll">
|
|
<summary>
|
|
Select all the text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BeginUpdate">
|
|
<summary>
|
|
Stops redrawing the control until the call of EndUpdate method.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.EndUpdate">
|
|
<summary>
|
|
Continues redrawing the control after the previous BeginUpdate method call.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetElementAtClientPoint(System.Drawing.Point)">
|
|
<summary>
|
|
Overloaded. Returns the tag element which contains the specified point.
|
|
</summary>
|
|
<param name="point">Coordinates are expressed relative to the upper-left corner
|
|
of the control's client area. </param>
|
|
<returns>Element which contains the point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetElementAtClientPoint(System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the tag element which contains the specified point.
|
|
</summary>
|
|
<param name="x">X coordinate of the point expressed relative to left corner of the control client area.</param>
|
|
<param name="y">Y coordinate of the point expressed relative to left corner of the control client area.</param>
|
|
<returns>Element which contains the point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetElementAtVirtualPoint(System.Drawing.Point)">
|
|
<summary>
|
|
Returns the tag element which contains the specified point.
|
|
</summary>
|
|
<param name="point">Coordinates are expressed relative to the upper-left corner
|
|
of the control's virtual rectangle. </param>
|
|
<returns>Element which contains the point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetElementAtVirtualPoint(System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the tag element which contains the point with defined coordinates.
|
|
</summary>
|
|
<param name="x">X coordinate of the point expressed relative to the left corner of the control virtual rectangle.</param>
|
|
<param name="y">Y coordinate of the point expressed relative to the left corner of the control virtual rectangle.</param>
|
|
<returns>Element by coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ClientToVirtual(System.Drawing.Point)">
|
|
<summary>
|
|
Converts client coordinates to virtual coordinates of control.
|
|
</summary>
|
|
<param name="point">Point coordinates in client coordinates.</param>
|
|
<returns>Coordinates in global coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.VirtualToClient(System.Drawing.Point)">
|
|
<summary>
|
|
Converts virtual coordinates to client coordinates of control.
|
|
</summary>
|
|
<param name="point">Coordinates in global coordinates.</param>
|
|
<returns>Coordinates in client coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Back">
|
|
<overloads>
|
|
Overloaded. Loads the previous document from history.
|
|
</overloads>
|
|
<summary>
|
|
Loads the previous document from history.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Back(System.Int32)">
|
|
<overloads>
|
|
Loads the document from history according to the index.
|
|
</overloads>
|
|
<summary>
|
|
Loads the document from history according to the index.
|
|
</summary>
|
|
<param name="index">Index of moving in the history. Must be less then zero.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Forward">
|
|
<overloads>
|
|
Overloaded. Loads next document from history.
|
|
</overloads>
|
|
<summary>
|
|
Loads next document from history.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.Forward(System.Int32)">
|
|
<overloads>
|
|
Loads the document from history according to the index.
|
|
</overloads>
|
|
<summary>
|
|
Loads the document from history according to the index.
|
|
</summary>
|
|
<param name="index">Index of moving in the history. Must be greater then zero.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.PrepareDocument(Syncfusion.Windows.Forms.HTMLUI.IInputHTML)">
|
|
<summary>
|
|
Prepares document object. Parses and renders it.
|
|
It may be used for non-visual rendering. It does not assign controls to any
|
|
properties such as a document.
|
|
</summary>
|
|
<param name="document">Object containing HTML data.</param>
|
|
<remarks>This method is suitable for rendering documents if
|
|
HTMLUI control is used without graphic interface.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.PrepareDocument(Syncfusion.Windows.Forms.HTMLUI.IInputHTML,System.Boolean)">
|
|
<summary>
|
|
Prepares document object.
|
|
It may be used for non-visual rendering. It does not assign controls to any
|
|
properties such as a document.
|
|
</summary>
|
|
<param name="document">Object containing HTML data.</param>
|
|
<param name="layout">If true - layouts elements, otherwise - just parses and creates elements.</param>
|
|
<remarks>This method is suitable for rendering documents if
|
|
HTMLUI control is used without graphic interface.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DisplayFindForm">
|
|
<summary>
|
|
Displays the find form for searching the text content of the HTMLUI control's current document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ScrollToElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Scrolls control in such way that the specified element is visible.
|
|
</summary>
|
|
<param name="element">Tag Element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ScrollToRectangle(System.Drawing.Rectangle,Syncfusion.Windows.Forms.HTMLUI.IInputHTML)">
|
|
<summary>
|
|
Scrolls control to the specified rectangle. Tries to show the whole rectangle in the
|
|
client area.
|
|
</summary>
|
|
<param name="rect">Rectangle structure.</param>
|
|
<param name="document">Document in which this rectangle exists.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ParseDocument(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Parses input HTML document and converts it to an XML document
|
|
with additional HTML elements objects tree.
|
|
</summary>
|
|
<param name="document">Document to parse.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnTitleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.TitleChanged"/> event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnShowTitleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShowTitleChanged"/> event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnSystemColorsChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Triggers when System colors are changed
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">EventArgs instance</param>
|
|
<copyfrom cref="M:System.Windows.Forms.Control.OnSystemColorsChanged(System.EventArgs)"/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLoadFinished(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Called after a document has been loaded.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">An <see cref="T:System.EventArgs"/> with event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLoadStarted(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Called after a document loading has started.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="e">An <see cref="T:System.EventArgs"/> with event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnPreRenderDocument(System.Object,Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.PreRenderDocument"/> event.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLoadError(System.Object,Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadError"/> event.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLinkClicked(System.Object,Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LinkClicked"/> event.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="args">An <see cref="T:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs"/> with event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.AbortLoadThread">
|
|
<summary>
|
|
Aborts thread which loads a new document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadThread">
|
|
<summary>
|
|
Loads document in a new thread.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnPaint(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overrides paint event
|
|
</summary>
|
|
<param name="e">PaintEventArgs instance</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DrawControlBorder(System.Drawing.Graphics,System.Drawing.Rectangle,System.Windows.Forms.ButtonBorderStyle,System.Drawing.Color,System.Windows.Forms.Border3DSide,System.Int32)">
|
|
<summary>
|
|
Draw the Border of the control.
|
|
</summary>
|
|
<param name="g">The Graphics object to draw the border.</param>
|
|
<param name="rc">The Rectangle to draw the border.</param>
|
|
<param name="borderSingle">Indicates the 2D border style</param>
|
|
<param name="borderColor">Inidicates the border color.</param>
|
|
<param name="sides">Indicates the border side.</param>
|
|
<param name="borderWidth">Inidicates border width.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnBorderColorChanged">
|
|
<summary>
|
|
Raises the BorderColorChanged event.
|
|
</summary>
|
|
<remarks>Raising an event invokes the event handler
|
|
through a delegate. For more information, see Raising
|
|
an Event. <para>The OnBorderColorChanged method also
|
|
allows derived classes to handle the event without
|
|
attaching a delegate. This is the preferred technique
|
|
for handling the event in a derived class.</para>
|
|
<para>Notes to Inheritors: When overriding OnBorderColorChanged
|
|
in a derived class, be sure to call the base class's
|
|
OnBorderColorChanged method so that registered
|
|
delegates receive the event.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnBorderStyleChanged">
|
|
<summary>
|
|
Raises the BorderStyleChanged event.
|
|
</summary>
|
|
<remarks>
|
|
<para>The OnBorderStyleChanged method also allows derived classes to handle the event
|
|
without attaching a delegate. This is the preferred technique for
|
|
handling the event in a derived class.</para>
|
|
<para>Notes to Inheritors: When overriding OnBorderStyleChanged in a derived
|
|
class, be sure to call the base class's OnBorderStyleChanged method so that
|
|
registered delegates receive the event.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnBorder3DStyleChanged">
|
|
<summary>
|
|
Raises the Border3DStyleChanged event.
|
|
</summary>
|
|
<remarks>Raising an event invokes the event handler
|
|
through a delegate. For more information, see Raising
|
|
an Event. <para>The OnBorder3DStyleChanged method also
|
|
allows derived classes to handle the event without
|
|
attaching a delegate. This is the preferred technique
|
|
for handling the event in a derived class.</para>
|
|
<para>Notes to Inheritors: When overriding OnBorder3DStyleChanged
|
|
in a derived class, be sure to call the base class's
|
|
OnBorder3DStyleChanged method so that registered
|
|
delegates receive the event.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnBorderSingleChanged">
|
|
<summary>
|
|
Raises the BorderSingleChanged event.
|
|
</summary>
|
|
<remarks>Raising an event invokes the event handler
|
|
through a delegate. For more information, see Raising
|
|
an Event. <para>The OnBorderSingleChanged method also
|
|
allows derived classes to handle the event without
|
|
attaching a delegate. This is the preferred technique
|
|
for handling the event in a derived class.</para>
|
|
<para>Notes to Inheritors: When overriding OnBorderSingleChanged
|
|
in a derived class, be sure to call the base class's
|
|
OnBorderSingleChanged method so that registered
|
|
delegates receive the event.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnBorderSidesChanged">
|
|
<summary>
|
|
Raises the BorderSidesChanged event.
|
|
</summary>
|
|
<remarks>Raising an event invokes the event handler
|
|
through a delegate. For more information, see Raising
|
|
an Event. <para>The OnBorderSidesChanged method also
|
|
allows derived classes to handle the event without
|
|
attaching a delegate. This is the preferred technique
|
|
for handling the event in a derived class.</para>
|
|
<para>Notes to Inheritors: When overriding OmBorderSidesChanged
|
|
in a derived class, be sure to call the base class's
|
|
OnBorderSidesChanged method so that registered
|
|
delegates receive the event.</para>
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.CreateParams">
|
|
<summary>
|
|
Overrides the CreateParams
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnPaintBackground(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overrides PaintBackGround event
|
|
</summary>
|
|
<param name="pevent">PaintEventArgs instance</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnResize(System.EventArgs)">
|
|
<summary>
|
|
Overrides Resize event
|
|
</summary>
|
|
<param name="e">Event data</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InternalBeginUpdate">
|
|
<summary>
|
|
Suspends the layout of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InternalEndUpdate">
|
|
<summary>
|
|
Resumes the layout of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InvalidateWindow">
|
|
<summary>
|
|
Invalidate the control
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnMouseDown(System.Windows.Forms.MouseEventArgs)">
|
|
<summary>
|
|
Overrides MouseDown event
|
|
</summary>
|
|
<param name="e">Event Data</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnMouseUp(System.Windows.Forms.MouseEventArgs)">
|
|
<summary>
|
|
Overrides MouseUp event
|
|
</summary>
|
|
<param name="e">MouseEventArgs instance</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnClick(System.EventArgs)">
|
|
<summary>
|
|
Overrides Click event
|
|
</summary>
|
|
<param name="e">Event Data</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnDoubleClick(System.EventArgs)">
|
|
<summary>
|
|
Overrides DoubleClick event
|
|
</summary>
|
|
<param name="e">Event Data</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnMouseMove(System.Windows.Forms.MouseEventArgs)">
|
|
<summary>
|
|
Overrides MouseMove event
|
|
</summary>
|
|
<param name="e">Event Data</param>
|
|
<override/>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnGotFocus(System.EventArgs)">
|
|
<summary>
|
|
Overloaded. Raised when control has got focus.
|
|
</summary>
|
|
<param name="e">An EventArgs which contains event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLeave(System.EventArgs)">
|
|
<summary>
|
|
Overloaded. Raised when control has lost focus.
|
|
</summary>
|
|
<param name="e">An EventArgs which contains event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ProcessDialogKey(System.Windows.Forms.Keys)">
|
|
<summary>
|
|
Overloaded. Processes a dialog key for handling Tab command key.
|
|
</summary>
|
|
<param name="keyData">One of the Key values that represents the key to process.</param>
|
|
<returns>True if the key was processed by the control; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLostFocus(System.EventArgs)">
|
|
<summary>
|
|
Overloaded. Raised when control has lost focus.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnKeyDown(System.Windows.Forms.KeyEventArgs)">
|
|
<summary>
|
|
Overloaded. Used for shortcuts invoked within the control.
|
|
</summary>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.OnLayout(System.Windows.Forms.LayoutEventArgs)">
|
|
<summary>
|
|
Overloaded. Raises the Layout event. Also it prevents invoking of the base method
|
|
while code running is between BeginUpdate / EndUpdate method calls.
|
|
</summary>
|
|
<param name="levent">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseTitleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the TitleChanged event.
|
|
</summary>
|
|
<param name="args">Event data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseShowTitleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the ShowTitleChanged event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseLoadFinished(System.EventArgs)">
|
|
<summary>
|
|
Raises the LoadFinished event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseLoadStarted(System.EventArgs)">
|
|
<summary>
|
|
Raises the LoadStarted event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaisePreRenderDocument(Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs)">
|
|
<summary>
|
|
Raises the PreRenderDocument event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseLoadError(Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs)">
|
|
<summary>
|
|
Raises the LoadError event.
|
|
</summary>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseLinkClicked(System.Object,Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs)">
|
|
<summary>
|
|
Raises the LinkClicked event.
|
|
</summary>
|
|
<param name="sender">The source of the event.</param>
|
|
<param name="args">Event Data</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.CalculateFormats(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates all formats for the specified element.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ConvertDocument(System.Xml.XmlElement,Syncfusion.Windows.Forms.HTMLUI.BaseElement,Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Converts XML document to HTML Elements tree.
|
|
</summary>
|
|
<param name="xmlCurrent">Current data of HTML tag.</param>
|
|
<param name="elementParent">Parent element of this tag.</param>
|
|
<param name="document">Parent document of this element.</param>
|
|
<returns>Returns BaseElement instanse</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InfillInputHashes(Syncfusion.Windows.Forms.HTMLUI.BaseElement,Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Infills all hashes which contain elements and formats needed for work.
|
|
</summary>
|
|
<param name="tagElement">Element object.</param>
|
|
<param name="document">Parent document object for the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.PointInTitle(System.Drawing.Point)">
|
|
<summary>
|
|
Indicates whether the point is inside the title.
|
|
</summary>
|
|
<param name="point">Point value</param>
|
|
<returns>True if the point is in the title area.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetTitleElement">
|
|
<summary>
|
|
Returns the TITLE element if exists; NULL otherwise.
|
|
</summary>
|
|
<returns>Title element object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseEventOnElement(System.String,System.EventArgs)">
|
|
<summary>
|
|
Raises event on element on which Event occurs.
|
|
</summary>
|
|
<param name="eventName">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RaiseEventOnElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String,System.EventArgs)">
|
|
<summary>
|
|
Raises event on Tag element.
|
|
</summary>
|
|
<param name="element">Tag element.</param>
|
|
<param name="eventName">Name of the event.</param>
|
|
<param name="args">The Arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.DetachUserControls">
|
|
<summary>
|
|
Detaches all winforms controls in a document from the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.AttachUserControls">
|
|
<summary>
|
|
Attaches all winforms controls in a document to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetControlsLocation(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Sets the location for all user controls according to their elements.
|
|
</summary>
|
|
<param name="document">Document object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.LoadFromHistory(System.Int32)">
|
|
<summary>
|
|
Loads the document from the history according to the index.
|
|
</summary>
|
|
<param name="index">Index of moving in the history.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetBeforeCalculating(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Sets the sizes in document before calculating its real size.
|
|
</summary>
|
|
<param name="document">Document object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetAfterCalculating(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Sets the sizes in control after calculating corresponding document real size.
|
|
</summary>
|
|
<param name="document">Document object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RecalculateDocument">
|
|
<summary>
|
|
Recalculates current document and changes the view of control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RecalculateDocument(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Recalculates current document and changes the view of control.
|
|
</summary>
|
|
<param name="document">InputHtml document</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ScrollToText(Syncfusion.Windows.Forms.HTMLUI.Text)">
|
|
<summary>
|
|
Scrolls control to the specified text object.
|
|
</summary>
|
|
<param name="textObj">Text object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InfillScriptCollection(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Infills collection of user scripts from the document.
|
|
</summary>
|
|
<param name="document">Parent document of script elements.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetScriptLanguage(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the script language to the script tag element.
|
|
</summary>
|
|
<param name="element">Element containing script code.</param>
|
|
<returns>Type of script language.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RunAutoScripts">
|
|
<summary>
|
|
Compiles the script after document loading.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.InvokeDelegate(System.Delegate,System.Object[])">
|
|
<summary>
|
|
Invokes delegate synchronously or asynchronously depending on the status of the
|
|
EnableMultithreading property.
|
|
</summary>
|
|
<param name="del">Delegate to invoke.</param>
|
|
<param name="parameters">Array of input parameters for delegate.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetFocusControl(System.Windows.Forms.Keys,System.Boolean,System.Boolean)">
|
|
<summary>
|
|
Sets the next focused control.
|
|
</summary>
|
|
<param name="keyData">Key data value</param>
|
|
<param name="elmFocused">Indicates whether any element was focused.</param>
|
|
<param name="isForward">Indicates whether the tab direction is forward.</param>
|
|
<returns>True if focusing was processed; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShowDebugToolTip(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Drawing.Point)">
|
|
<summary>
|
|
Shows the Debug Tooltip on the element.
|
|
</summary>
|
|
<param name="element">Element where the tooltip is to be shown.</param>
|
|
<param name="clickPoint">Mouse position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetOriginalText(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.String)">
|
|
<summary>
|
|
Stores the original text to the document.
|
|
</summary>
|
|
<param name="document">Document for storing original Text.</param>
|
|
<param name="data">Original data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.RefreshStartPoint(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Recalculates the start point of the document.
|
|
</summary>
|
|
<param name="document">Document object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.JumpToFragment(System.String,Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Scrolls the document to the specified fragment, defined in the uri object.
|
|
</summary>
|
|
<param name="fragment">Fragment of the uri.</param>
|
|
<param name="document">Document displaying in the control.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.GetElementScrollRectangle(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Description of GetElementScrollRectangle method
|
|
</summary>
|
|
<param name="element">The element to scroll.</param>
|
|
<returns>Returns rectangle</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.SetAutoScrollPosition(System.Drawing.Point,Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Sets autoscroll position of the control.
|
|
</summary>
|
|
<param name="point">A new scroll position.</param>
|
|
<param name="document">The current document.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.BeginInit">
|
|
<summary>
|
|
Invoked when initialization begins.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.EndInit">
|
|
<summary>
|
|
Invoked when initialization ends.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeText">
|
|
<summary>
|
|
Indicates whether Text property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeDefaultFormat">
|
|
<summary>
|
|
Indicates whether DefaultFormat property should be serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl.ShouldSerializeDisplayText">
|
|
<summary>
|
|
Indicates whether DisplayText property is persisted.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility">
|
|
<summary>
|
|
Provides information about a control that can be used by an accessibility application.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.n_HTMLUIControl">
|
|
<summary>
|
|
HTMLUIControl
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Constructor
|
|
</summary>
|
|
<param name="m_HTMLUIControl">The HTMLUIControl instance.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Bounds">
|
|
<summary>
|
|
Bounds of the Control
|
|
</summary>
|
|
<returns>The accessible object bounds.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Role">
|
|
<summary>
|
|
Gets the role for the RibbonControlAdv. This is used by accessibility programs.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Name">
|
|
<summary>
|
|
Gets or sets the accessible object name
|
|
</summary>
|
|
<returns>The accessible object name.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Description">
|
|
<summary>
|
|
Gets the description of the HTMLUIControl
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.State">
|
|
<summary>
|
|
Gets the state of this accessible object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Help">
|
|
<summary>
|
|
Gets the description of what the object does or how the object is used.
|
|
</summary>
|
|
<returns>The description of what the object does or how the object is used.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Parent">
|
|
<summary>
|
|
Gets the parent of an accessible object.
|
|
</summary>
|
|
<returns>An RibbonControlAdvAccessibility that represents the parent of an accessible object, or null if there is no parent object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.GetChildCount">
|
|
<summary>
|
|
Retrieves the number of children in the accessible object.
|
|
</summary>
|
|
<returns>Number of Child.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.GetChild(System.Int32)">
|
|
<summary>
|
|
Retrieves the accessible child corresponding to the index.
|
|
</summary>
|
|
<param name="index">Index</param>
|
|
<returns>Child specified to the index</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.Value">
|
|
<summary>
|
|
Gets or sets the value of an accessible object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.GetFocused">
|
|
<summary>
|
|
Retrieves the object that has the focus.
|
|
</summary>
|
|
<returns>>An RibbonControlAdvAccessibility that specifies the currently focused child.
|
|
This method returns the calling object if the object itself is focused. Returns null if no object has focus.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIAccessibility.HitTest(System.Int32,System.Int32)">
|
|
<summary>
|
|
Retrieves the child object at the specified screen coordinates.
|
|
</summary>
|
|
<param name="x">The horizontal screen coordinate.</param>
|
|
<param name="y">The vertical screen coordinate.</param>
|
|
<returns>An RibbonControlAdvAccessibility that represents the child object at the given screen coordinates.
|
|
This method returns the calling object if the object itself is at the location specified.
|
|
Returns null if no object is at the tested location.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor">
|
|
<summary>
|
|
Editor for element attributes.
|
|
</summary>
|
|
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.m_types">
|
|
<summary>
|
|
Data types that this collection editor can contain.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.m_invisibles">
|
|
<summary>
|
|
Holds an array of invisible elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.#ctor(System.Type)">
|
|
<summary>
|
|
Initializes a new instance of the AttributesCollectionEditor class
|
|
</summary>
|
|
<param name="type">Type of element to edit.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.CreateNewItemTypes">
|
|
<summary>
|
|
Overrides CreateNewItemTypes() method
|
|
</summary>
|
|
<returns>A array of types.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.GetItems(System.Object)">
|
|
<summary>
|
|
Overridden. Returns an array of objects containing the specified collection.
|
|
</summary>
|
|
<param name="editValue">The collection to edit. </param>
|
|
<returns>An array containing the collection objects.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.CanRemoveInstance(System.Object)">
|
|
<summary>
|
|
Overridden. Indicates whether the specified element can be removed from the collection.
|
|
</summary>
|
|
<param name="value">Item of the collection.</param>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.DestroyInstance(System.Object)">
|
|
<summary>
|
|
Overridden. Destroys the specified item from the collection.
|
|
</summary>
|
|
<param name="instance">object to be destroyed</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributesCollectionEditor.SetItems(System.Object,System.Object[])">
|
|
<summary>
|
|
Overridden. Sets the specified items to the collection.
|
|
</summary>
|
|
<param name="editValue">Editable value</param>
|
|
<param name="value">Item values</param>
|
|
<returns>The newly created collection object</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor">
|
|
<summary>
|
|
Editor for elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.m_types">
|
|
<summary>
|
|
Data types that this collection editor can contain.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.m_invisibles">
|
|
<summary>
|
|
Holds an array of invisible elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.#ctor(System.Type)">
|
|
<summary>
|
|
Initializes a new instance of the ElementsCollectionEditor class
|
|
</summary>
|
|
<param name="type">Type of element to edit.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.CreateNewItemTypes">
|
|
<summary>
|
|
Overriddes CreateNewItemTypes() method
|
|
</summary>
|
|
<returns>Aray of types.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.CanRemoveInstance(System.Object)">
|
|
<summary>
|
|
Overridden. Indicates whether the specified element can be removed from the collection.
|
|
</summary>
|
|
<param name="value">Item of the collection.</param>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.DestroyInstance(System.Object)">
|
|
<summary>
|
|
Overridden. Destroys the specified item from the collection.
|
|
</summary>
|
|
<param name="instance">Instance that to be destroyed</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsCollectionEditor.SetItems(System.Object,System.Object[])">
|
|
<summary>
|
|
Overridden. Sets the items to the collection.
|
|
</summary>
|
|
<param name="editValue">Editable value</param>
|
|
<param name="value">Items array</param>
|
|
<returns>The newly created collection object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner">
|
|
<summary>
|
|
Designer class of control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.m_verbs">
|
|
<summary>
|
|
DesignerVerbCollection instance
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.Verbs">
|
|
<summary>
|
|
Gets a value indicating DesignerVerbCollection instance
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the HTMLUIControlDesigner class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the HTMLUIControlDesigner class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.LoadDocumentFromFile(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Loads the document from the file.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIControlDesigner.PreFilterProperties(System.Collections.IDictionary)">
|
|
<summary>
|
|
Overridden. Adjusts the set of properties the component will expose through a TypeDescriptor.
|
|
</summary>
|
|
<param name="properties">An IDictionary that contains the properties for the class of the component. </param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor">
|
|
<summary>
|
|
Description for ScriptObjectCollectionEditor.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.m_parent">
|
|
<summary>
|
|
Collection of the ScriptManagerExCollection objects.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.m_types">
|
|
<summary>
|
|
Data types that this collection editor can contain.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.#ctor(System.Type)">
|
|
<summary>
|
|
Initializes a new instance of the ScriptObjectCollectionEditor class
|
|
</summary>
|
|
<param name="type">Type of element to edit.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.CreateNewItemTypes">
|
|
<summary>
|
|
Override CreateNewItemTypes() method
|
|
</summary>
|
|
<returns>Aray of types.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.CreateInstance(System.Type)">
|
|
<summary>
|
|
Creates a new instance.
|
|
</summary>
|
|
<param name="itemType">Type of object for creating.</param>
|
|
<returns>New created object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)">
|
|
<summary>
|
|
Edits the specified item's value in the collection.
|
|
</summary>
|
|
<param name="context">Instance of ITypeDescriptorContext</param>
|
|
<param name="provider">Instance of IServiceProvider</param>
|
|
<param name="value">An instance</param>
|
|
<returns>An instance that is returned from EditValue method</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptObjectCollectionEditor.DestroyInstance(System.Object)">
|
|
<summary>
|
|
Overridden. Destroys the specified item from the collection.
|
|
</summary>
|
|
<param name="instance">A instance to be destroyed</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog">
|
|
<summary>
|
|
FindDialog form is used for text searching in the HTMLUIControl.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.DEF_ERR_MSG">
|
|
<summary>
|
|
Default error message.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.DEF_QUOTE">
|
|
<summary>
|
|
Quote symbol.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.components">
|
|
<summary>
|
|
Required designer variable.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_lastSearchedText">
|
|
<summary>
|
|
Last searched text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_lastFoundIndex">
|
|
<summary>
|
|
Index of last found text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_errorMsg">
|
|
<summary>
|
|
Message when text is not found.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_bShowErrMsg">
|
|
<summary>
|
|
Indicates whether error message must be shown.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_ownerHTMLUIControl">
|
|
<summary>
|
|
Indicates the HTMLUI control that uses this dialog.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindDialog.m_searchText">
|
|
<summary>
|
|
Text to be searched with the help of the FindDialog.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.LastSearchedText">
|
|
<summary>
|
|
Gets the last searched text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.LastFoundIndex">
|
|
<summary>
|
|
Gets the index of the last found text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.IsForward">
|
|
<summary>
|
|
Gets a value indicating whether forward search is used.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.MatchCase">
|
|
<summary>
|
|
Gets a value indicating whether the case of symbol is significant.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.ErrorMessage">
|
|
<summary>
|
|
Gets or sets the message when text is not found.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindDialog.ShowErrorMessage">
|
|
<summary>
|
|
Gets or sets a value indicating whether error message must be shown.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.FindDialog.FindText">
|
|
<summary>
|
|
Raised when 'Find' button is clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the FindDialog class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.Dispose(System.Boolean)">
|
|
<summary>
|
|
Cleans up any resources being used.
|
|
</summary>
|
|
<param name="disposing">A bool value indicates whether to dispose or not</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.InitializeComponent">
|
|
<summary>
|
|
Required method for Designer support - do not modify
|
|
the contents of this method with the code editor.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.OpenDialog(System.Windows.Forms.Control)">
|
|
<summary>
|
|
Opens the dialog for text searching.
|
|
</summary>
|
|
<param name="control">A Control instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.OnFindText(Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs)">
|
|
<summary>
|
|
Raises the Find event.
|
|
</summary>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.OnVisibleChanged(System.EventArgs)">
|
|
<summary>
|
|
Overloaded. Raised when visibility is changed.
|
|
</summary>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.RaiseOnFindText(Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs)">
|
|
<summary>
|
|
Raises the Find event.
|
|
</summary>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.FindTextBox_TextChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when text in text box is changed.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.BtnFind_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when 'Find' button is clicked.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.BtnCancel_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises when Close button is clicked.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.CheckEnableState">
|
|
<summary>
|
|
Checks the 'Enable' state of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.SetSearchedText(System.String)">
|
|
<summary>
|
|
Sets the text to be searched in the text field.
|
|
</summary>
|
|
<param name="text">Text to be searched.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.SetState">
|
|
<summary>
|
|
Sets the state of all controls in the dialog.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindDialog.GetLocation(System.Windows.Forms.Control)">
|
|
<summary>
|
|
Calculates a new location for the dialog.
|
|
</summary>
|
|
<param name="parent">Parent control for dialog.</param>
|
|
<returns>New location of the dialog.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Border">
|
|
<summary>
|
|
Class which represents the border of the tag elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Border.m_width">
|
|
<summary>
|
|
Sets and retrieves the width of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Border.m_style">
|
|
<summary>
|
|
Sets and retrieves the style of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Border.m_color">
|
|
<summary>
|
|
Sets and retrieves the color of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Border.Width">
|
|
<summary>
|
|
Gets or sets the width of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Border.Style">
|
|
<summary>
|
|
Gets or sets the style of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Border.Color">
|
|
<summary>
|
|
Gets or sets the color of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Border.IsEmpty">
|
|
<summary>
|
|
Gets a value indicating whether border is empty.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.Border.WidthChanged">
|
|
<summary>
|
|
Event. Raised when the width property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.Border.StyleChanged">
|
|
<summary>
|
|
Event. Raised when the style property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.Border.ColorChanged">
|
|
<summary>
|
|
Event. Raised when the color property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the Border class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.#ctor(System.Int32,Syncfusion.Windows.Forms.HTMLUI.BordersStyle,System.Drawing.Color)">
|
|
<summary>
|
|
Initializes a new instance of the Border class
|
|
</summary>
|
|
<param name="width">Width of the border.</param>
|
|
<param name="style">Style of the border.</param>
|
|
<param name="color">Color of the border.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.RaiseWidthChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the WidthChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.RaiseStyleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the StyleChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.RaiseColorChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the ColorChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.OnWidthChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the WidthChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.OnStyleChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the StyleChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.OnColorChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the ColorChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.System#ICloneable#Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Clone of this object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.Clone">
|
|
<summary>
|
|
Create a new copy of the existing object.
|
|
</summary>
|
|
<returns>Clone of this object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.CopyTo(Syncfusion.Windows.Forms.HTMLUI.IBorder)">
|
|
<summary>
|
|
Overloaded. Copies all settings of the current object to the new object.
|
|
</summary>
|
|
<param name="twin">Another object for properties copying.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.CopyTo(Syncfusion.Windows.Forms.HTMLUI.Border)">
|
|
<summary>
|
|
Copies all settings of the current object to a new object.
|
|
</summary>
|
|
<param name="twin">Border object for values copying.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.ShouldSerializeWidth">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.ShouldSerializeStyle">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Border.ShouldSerializeColor">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection">
|
|
<summary>
|
|
Collection of blocks of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.Item(System.Int32)">
|
|
<summary>
|
|
Returns the block object with the specified index.
|
|
</summary>
|
|
<param name="index">Index number</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the BlocksCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.Add(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Adds the specified block to the collection.
|
|
</summary>
|
|
<param name="block">Object to be added into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Removes the specified element from the collection.
|
|
</summary>
|
|
<param name="block">Object for removing from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.RemoveAt(System.Int32)">
|
|
<summary>
|
|
Removes the object at the specified index of the collection.
|
|
</summary>
|
|
<param name="index">Index of the element in the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BlocksCollection.Clear">
|
|
<summary>
|
|
Clears the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection">
|
|
<summary>
|
|
Description for EventBaseCollection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.m_bSkipEvents">
|
|
<summary>
|
|
Indicates whether the class must skip all event-raising code.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether a collection work in silent mode without raising any event
|
|
to user or in normal mode.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnChanged">
|
|
<summary>
|
|
Raised on any change in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Clearing">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnClear"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Cleared">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnClearComplete"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Inserting">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnInsert(System.Int32,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Inserted">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnInsertComplete(System.Int32,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Removing">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnRemove(System.Int32,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Removed">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnRemoveComplete(System.Int32,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Setting">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnSet(System.Int32,System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.Set">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnSetComplete(System.Int32,System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnClear">
|
|
<summary>
|
|
Overridden. Runs when Clear event raises.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnClearComplete">
|
|
<summary>
|
|
Overridden. Runs when ClearComplete event raises.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnInsert(System.Int32,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when Insert event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="value">Value for inserting into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnInsertComplete(System.Int32,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when InsertComplete event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="value">Value for inserting into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnRemove(System.Int32,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when Remove event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="value">Value for inserting into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnRemoveComplete(System.Int32,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when RemoveComplete event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="value">Value to remove from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnSet(System.Int32,System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when Set event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="oldValue">Old value of the object.</param>
|
|
<param name="newValue">New value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.OnSetComplete(System.Int32,System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Runs when SetComplete event raises.
|
|
</summary>
|
|
<param name="index">Index in the collection.</param>
|
|
<param name="oldValue">Old value of the object.</param>
|
|
<param name="newValue">New value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseCollection.RaiseOnChangedEvent">
|
|
<summary>
|
|
Raises the OnChanged event.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary">
|
|
<summary>
|
|
Collection throws an event on any context change.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.m_bSkipEvents">
|
|
<summary>
|
|
Indicates whether to skip all event raising.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether event will be raised.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnChanged">
|
|
<summary>
|
|
Raised on any change in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Clearing">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnClear"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Cleared">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnClearComplete"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Get">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnGet(System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Setting">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnSet(System.Object,System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Set">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnSetComplete(System.Object,System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Inserting">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnInsert(System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Inserted">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnInsertComplete(System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Removing">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnRemove(System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.Removed">
|
|
<summary>
|
|
Raised by <see cref="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnRemoveComplete(System.Object,System.Object)"/> method.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnClear">
|
|
<summary>
|
|
Overridden. Raised when clear event occurs.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnClearComplete">
|
|
<summary>
|
|
Overridden. Raised when ClearComplete event occurs.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnGet(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when Get event occurs.
|
|
</summary>
|
|
<param name="key">Key for getting value.</param>
|
|
<param name="currentValue">Current value corresponding to this key.</param>
|
|
<returns>Element with such a key and value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnSet(System.Object,System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when Set event occurs.
|
|
</summary>
|
|
<param name="key">Key for getting value.</param>
|
|
<param name="oldValue">Old value.</param>
|
|
<param name="newValue">New value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnSetComplete(System.Object,System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when SetComplete event occurs.
|
|
</summary>
|
|
<param name="key">Key of the object.</param>
|
|
<param name="oldValue">Old value.</param>
|
|
<param name="newValue">New value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnInsert(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when Insert event occurs.
|
|
</summary>
|
|
<param name="key">Key of the object.</param>
|
|
<param name="value">Value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnInsertComplete(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when InsertComplete event occurs.
|
|
</summary>
|
|
<param name="key">Key of the object.</param>
|
|
<param name="value">Value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnRemove(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when Remove event occurs.
|
|
</summary>
|
|
<param name="key">Key of the object.</param>
|
|
<param name="value">Value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.OnRemoveComplete(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Raised when RemoveComplete event occurs.
|
|
</summary>
|
|
<param name="key">Key of the object.</param>
|
|
<param name="value">Value of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EventBaseDictionary.RaiseOnChangedEvent">
|
|
<summary>
|
|
Raises the OnChanged Event.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection">
|
|
<summary>
|
|
Collection of attributes in the tag elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.m_parent">
|
|
<summary>
|
|
Storage of Parent property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.m_dict">
|
|
<summary>
|
|
Storage of name of attribute - to - attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Parent">
|
|
<summary>
|
|
Gets the parent element of the current collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the attribute with the specified index.
|
|
</summary>
|
|
<param name="index">an int value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the attribute with the specified name. Name is case insensitive.
|
|
</summary>
|
|
<param name="name">String value</param>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Changed">
|
|
<summary>
|
|
Event raised on any attribute value change in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLAttributesCollection class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLAttributesCollection class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the HTMLAttributesCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Adds specified attribute into the collection.
|
|
</summary>
|
|
<param name="attr">Attribute for adding into collection.</param>
|
|
<returns>Index in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Add(System.String)">
|
|
<summary>
|
|
Creates an attribute with specified name and returns the reference to it.
|
|
</summary>
|
|
<param name="name">Name of the attribute. Case insensitive.</param>
|
|
<returns>Reference of created attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Add(System.String,System.String)">
|
|
<summary>
|
|
Creates attribute in the collection and returns the reference to it.
|
|
</summary>
|
|
<param name="name">Name of the attribute. Case insensitive.</param>
|
|
<param name="value">Value of the attribute.</param>
|
|
<returns>Reference of created attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute[])">
|
|
<summary>
|
|
Adds the range of attributes into the collection.
|
|
</summary>
|
|
<param name="attributes">Array of attributes.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Overloaded. Indicates whether the collection contains the specified attribute.
|
|
</summary>
|
|
<param name="attr">Attribute reference for check.</param>
|
|
<returns>True if collection contains such an attribute; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether collection contains the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute.</param>
|
|
<returns>True if collection contains such an attribute; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Returns the index of the specified attribute; if collection does not contain such attribute it
|
|
will return -1.
|
|
</summary>
|
|
<param name="attr">Attribute whose index is needed.</param>
|
|
<returns>Zero-based index of the attribute; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.IndexOf(System.String)">
|
|
<summary>
|
|
Returns the index of the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute.</param>
|
|
<returns>Zero-based index of the attribute; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Overloaded. Removes the specified attribute from the collection, if it is belong to it.
|
|
</summary>
|
|
<param name="attr">Reference of the attribute that must be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Remove(System.String)">
|
|
<summary>
|
|
Removes the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute which must be removed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.HTMLAttributesCollection_Inserted(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch Inserted items.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.HTMLAttributesCollection_Removed(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch removed items.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.HTMLAttributesCollection_Set(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch set items.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.HTMLAttributesCollection_Cleared(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch collection cleaning.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.Attr_ValueChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Catches value change of attribute in the collection and
|
|
raises up information about this change if someone listens to it.
|
|
</summary>
|
|
<param name="sender">Sender which supports IHTMLAttribute interface.</param>
|
|
<param name="e">Data of changed attribute. Old and New value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributesCollection.ChangeRuntimeAttributes(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Changes run-time attributes in the parent element.
|
|
</summary>
|
|
<param name="attr">Attribute for changing.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection">
|
|
<summary>
|
|
Implementation of IHTMLElementCollection interface.
|
|
</summary>
|
|
Allow script engine to see this class for tree generation.
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.DEF_COMPARER">
|
|
<summary>
|
|
Default case insensitive comparer for internal use.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.m_parent">
|
|
<summary>
|
|
Storage of parent property.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the HTML element specified by its collection index.
|
|
</summary>
|
|
<param name="index">an int value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Item(System.String)">
|
|
<summary>
|
|
Returns the child element by its unique ID if such element exists; NULL otherwise.
|
|
</summary>
|
|
<param name="uniqueID">a string id</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Parent">
|
|
<summary>
|
|
Gets the parent element of the current collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.ParentEx">
|
|
<summary>
|
|
Gets the parent element of the BaseElement type. This property is for internal usage only.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLElementsCollection class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLElementsCollection class
|
|
</summary>
|
|
<param name="parent">Collection parent.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Adds the specified element into the collection.
|
|
</summary>
|
|
<param name="element">Element to add into the collection.</param>
|
|
<returns>Index of the element added to the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Add(System.String)">
|
|
<summary>
|
|
Creates an element from it's string representation and adds it to the collection.
|
|
</summary>
|
|
<param name="outerHtml">String representation of the element.</param>
|
|
<returns>Index of the element in the collection if created; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement[])">
|
|
<summary>
|
|
Adds an array of elements into the collections.
|
|
</summary>
|
|
<param name="values">Array of elements.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Indicates whether collection contains the specified element.
|
|
</summary>
|
|
<param name="element">Element to check.</param>
|
|
<returns>True if item exists in collection; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the index of the element from the collection.
|
|
</summary>
|
|
<param name="element">Element whose index is needed.</param>
|
|
<returns>Zero-based index of the item in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Insert(System.Int32,Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Inserts the element into the specified position.
|
|
</summary>
|
|
<param name="index">Place where element must be placed.</param>
|
|
<param name="element">Element to place.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Insert(System.Int32,System.String)">
|
|
<summary>
|
|
Creates an element from it's string representation and inserts it
|
|
into the specified position.
|
|
</summary>
|
|
<param name="index">Index where element must be placed.</param>
|
|
<param name="outerHtml">String representation of the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Overloaded. Removes the specified element from the collection and disposes it.
|
|
</summary>
|
|
<param name="element">Element to remove.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Boolean)">
|
|
<summary>
|
|
Removes the specified element from the collection.
|
|
</summary>
|
|
<param name="element">Element to be removed from the collection.</param>
|
|
<param name="bDispose">Indicates whether to dispose the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Clear">
|
|
<summary>
|
|
Overloaded. Clears and disposes the collection of child elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.Clear(System.Boolean)">
|
|
<summary>
|
|
Clears the collection of child elements.
|
|
</summary>
|
|
<param name="bDispose">Indicates whether to dispose all children.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetElementByID(System.String)">
|
|
<summary>
|
|
Search method. Returns a reference on the element with the specified ID.
|
|
</summary>
|
|
<param name="id">Unique id of the element.</param>
|
|
<returns>NULL if nothing is found; element reference otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetElementByUniqueID(System.String)">
|
|
<summary>
|
|
Search method. Returns a reference of the element with the specified unique ID.
|
|
</summary>
|
|
<param name="id">Unique id of the element.</param>
|
|
<returns>NULL if nothing is found; element reference otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetElementsByName(System.String)">
|
|
<summary>
|
|
Overloaded. Returns an array of elements with the specified name.
|
|
</summary>
|
|
<param name="name">Name of the element for returning.</param>
|
|
<returns>Array of elements with such a name.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetElementsByName(System.String[])">
|
|
<summary>
|
|
Returns an array of elements with name from the names array.
|
|
</summary>
|
|
<param name="names">Array of names of the element for returning.</param>
|
|
<returns>Elements with such names.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetArray">
|
|
<summary>
|
|
Returns an array of elements from the collection.
|
|
</summary>
|
|
<returns>Array from the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.InfillHashByChildNames(System.String[])">
|
|
<summary>
|
|
Infills hashtable by names of child elements.
|
|
</summary>
|
|
<param name="names">Array of names.</param>
|
|
<returns>Hashtable of child names.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.CreateElement(System.String)">
|
|
<summary>
|
|
Creates an element from it's string representation.
|
|
</summary>
|
|
<param name="outerHtml">String representation of the element.</param>
|
|
<returns>Element if created; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementsCollection.GetrFirstElement(System.Xml.XmlElement)">
|
|
<summary>
|
|
Searches for the first child of XmlElement type.
|
|
</summary>
|
|
<param name="parent">Parent XmlElement.</param>
|
|
<returns>XmlElement object if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection">
|
|
<summary>
|
|
Implementation of events collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.m_parent">
|
|
<summary>
|
|
Parent of the current events collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.m_dict">
|
|
<summary>
|
|
Map of event name-to-event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.Parent">
|
|
<summary>
|
|
Gets or sets the parent element of the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.Item(System.String)">
|
|
<summary>
|
|
Returns the event with the specified name. If event is not supported by the element, then it will
|
|
return NULL.
|
|
</summary>
|
|
<param name="name">A string variable</param>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.ParentChanged">
|
|
<summary>
|
|
Utility event. Raised when parent property changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLEventsCollection class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLEventsCollection class
|
|
</summary>
|
|
<param name="parent">Element which is the parent of the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether event with the specified name is supported.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>True if such an event is supported.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.CopyTo(Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection[],System.Int32)">
|
|
<summary>
|
|
Overridden. Copies to the specified array.
|
|
</summary>
|
|
<param name="array">Destination array of events.</param>
|
|
<param name="index">Start index.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.RaiseParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method raises the ParentChanged event.
|
|
</summary>
|
|
<param name="args">A ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.OnParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by parent property set part. This is the best place to
|
|
write any logic dependent on the parent property.
|
|
</summary>
|
|
<param name="args">A ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.AttachEvent(System.String,System.EventHandler)">
|
|
<summary>
|
|
Overloaded. Attaches user delegate to the specified event. If event does not exist in the collection
|
|
and the element supports such an event, then it will create a new instance
|
|
of the event class to which the delegate will be attached.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handler">Delegate to attach.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.AttachEvent(System.String,System.EventHandler[])">
|
|
<summary>
|
|
Attaches user delegate to the specified event. If event does not exist in the collection
|
|
and the element supports such an event, then it will create a new instance
|
|
of the event class to which the delegate will be attached.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handlers">Array of the delegates.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.DetachEvent(System.String,System.EventHandler)">
|
|
<summary>
|
|
Overloaded. Detaches delegate of the specified event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handler">Delegate to detach.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.DetachEvent(System.String,System.EventHandler[])">
|
|
<summary>
|
|
Detaches delegates of the specified event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handlers">Array of delegates.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.HTMLEventsCollection_Cleared(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
On collection clear, remove name access hash values.
|
|
</summary>
|
|
<param name="sender">This collection.</param>
|
|
<param name="e">Will be empty for clear operation.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.HTMLEventsCollection_Inserted(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
On item insert, check if it is unique and add it's name into fast access by name hash.
|
|
</summary>
|
|
<param name="sender">This collection.</param>
|
|
<param name="e">Value which will be inserted into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.HTMLEventsCollection_Removed(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
On item remove, also remove event name from fast access by name hash.
|
|
</summary>
|
|
<param name="sender">This collection.</param>
|
|
<param name="e">Value which will be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventsCollection.HTMLEventsCollection_Set(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
On item replace, update fast access by name hash.
|
|
</summary>
|
|
<param name="sender">This collection.</param>
|
|
<param name="e">Old and new values.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection">
|
|
<summary>
|
|
Collection for formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.m_parent">
|
|
<summary>
|
|
Storage of parent property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.m_dict">
|
|
<summary>
|
|
Storage of name of format - to - format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.m_bDisposed">
|
|
<summary>
|
|
Indicates whether we were disposed once.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Parent">
|
|
<summary>
|
|
Gets the parent element of the current collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the attribute with the specified index.
|
|
</summary>
|
|
<param name="index">An integer index value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the format with the specified name. Name is case insensitive.
|
|
</summary>
|
|
<param name="name">A string value </param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormatsCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormatsCollection class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the HTMLFormatsCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Adds the specified format into the collection.
|
|
</summary>
|
|
<param name="format">Format for adding into collection.</param>
|
|
<returns>Index in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat[])">
|
|
<summary>
|
|
Adds the range of formats into the collection.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Indicates whether the collection contains the specified format.
|
|
</summary>
|
|
<param name="format">Format reference for check.</param>
|
|
<returns>True if the collection contains such a format; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether the collection contains the format with specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the format.</param>
|
|
<returns>True if the collection contains such a format; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Returns the index of the specified format; if collection does not contain such format, it will
|
|
return -1.
|
|
</summary>
|
|
<param name="format">Format whose index is needed.</param>
|
|
<returns>Zero-based index of format; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.IndexOf(System.String)">
|
|
<summary>
|
|
Returns the index of format of the format which contains the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the format.</param>
|
|
<returns>Zero-based index of format; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Removes the specified format from the collection, if it belongs to it.
|
|
</summary>
|
|
<param name="format">Reference of the format which must be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Remove(System.String)">
|
|
<summary>
|
|
Removes the format with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of format which must be removed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.HTMLFormatsCollection_Inserted(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch inserted items.
|
|
</summary>
|
|
<param name="sender">Source that triggers the event</param>
|
|
<param name="e">A CollectionEventArgs object</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.HTMLFormatsCollection_Removed(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch removed items.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.HTMLFormatsCollection_Set(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch replacement of items.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.HTMLFormatsCollection_Cleared(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Catch collection cleaning.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormatsCollection.Dispose">
|
|
<summary>
|
|
Clears all resources.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection">
|
|
<summary>
|
|
Collection of types of attributes changing.
|
|
Holds attributes and reaction types of controls when they change.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.m_types">
|
|
<summary>
|
|
Holds types of sender's attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the ReactionCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.Add(System.String,System.String,Syncfusion.Windows.Forms.HTMLUI.ReactType)">
|
|
<summary>
|
|
Adds information of changing some attribute to collection if it does not exist;
|
|
changes its attribute name if defined typeName already exists.
|
|
</summary>
|
|
<param name="typeName">Type name of sender event.</param>
|
|
<param name="name">Name of the parameter.</param>
|
|
<param name="reaction">Type of reaction.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.GetReaction(System.String,System.String)">
|
|
<summary>
|
|
Returns the type of reaction on changing the attribute.
|
|
</summary>
|
|
<param name="typeName">Type name of the attribute holder.</param>
|
|
<param name="name">Name of the attribute.</param>
|
|
<returns>
|
|
Type of reaction on changing the attribute; None
|
|
if type or attribute with such name was not found.
|
|
</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.ContainsType(System.Type)">
|
|
<summary>
|
|
Overloaded. Indicates whether the collection contains reactions on attributes of this type.
|
|
</summary>
|
|
<param name="type">Type of holder attribute.</param>
|
|
<returns>A boolean variable</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.ContainsType(System.String)">
|
|
<summary>
|
|
Indicates whether the collection contains reactions on attributes of this type.
|
|
</summary>
|
|
<param name="typeName">Name of the attribute holder type.</param>
|
|
<returns>A boolean variable</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.ContainsAttribute(System.Type,System.String)">
|
|
<summary>
|
|
Overloaded. Indicates whether the specified attribute has any reaction in the defined holder.
|
|
</summary>
|
|
<param name="type">Type of attribute holder.</param>
|
|
<param name="attrName">Name of the attribute.</param>
|
|
<returns>True if it contains; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.ContainsAttribute(System.String,System.String)">
|
|
<summary>
|
|
Indicates whether the specified attribute has any reaction in the defined holder.
|
|
</summary>
|
|
<param name="typeName">Type Name of the attribute holder.</param>
|
|
<param name="attrName">Name of the attribute.</param>
|
|
<returns>True if it contains; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionCollection.Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection">
|
|
<summary>
|
|
Collection of classes which control script codes.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.m_control">
|
|
<summary>
|
|
Control object.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.m_bDisposed">
|
|
<summary>
|
|
Indicates whether object is disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets the element in the specified index.
|
|
</summary>
|
|
<param name="index">An index value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Initializes a new instance of the ScriptManagerExCollection class
|
|
</summary>
|
|
<param name="control">HTMLUI control instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Add(Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx)">
|
|
<summary>
|
|
Adds the specified object to the collection.
|
|
</summary>
|
|
<param name="obj">Object for adding into the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx)">
|
|
<summary>
|
|
Indicates whether the collection contains the specified object.
|
|
</summary>
|
|
<param name="obj">Object for checking in the collection.</param>
|
|
<returns>A boolean value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx)">
|
|
<summary>
|
|
Removes the specified object from the collection.
|
|
</summary>
|
|
<param name="obj">Object for removing from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Compile">
|
|
<summary>
|
|
Compiles all objects in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Run">
|
|
<summary>
|
|
Runs all scripts.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Stop">
|
|
<summary>
|
|
Stops all scripts.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Clear">
|
|
<summary>
|
|
Clears the collection of scripts.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.CreateItem">
|
|
<summary>
|
|
Creates a new object and adds it to the collection.
|
|
</summary>
|
|
<returns>Newly created object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.ItemAdded(Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx)">
|
|
<summary>
|
|
Runs just after adding item to the collection.
|
|
</summary>
|
|
<param name="obj">Script manager object of the script.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.Dispose">
|
|
<summary>
|
|
Disposes object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerExCollection.DisposeScripts">
|
|
<summary>
|
|
Disposes scripts.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection">
|
|
<summary>
|
|
Collection storing symbols and their bounds in the document
|
|
useful for text selection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.DEF_NUMBER">
|
|
<summary>
|
|
Default number for selection and range numbers.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.m_minNumber">
|
|
<summary>
|
|
Min number of symbol's start number in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.m_maxNumber">
|
|
<summary>
|
|
Max number of symbol's start number in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.Item(System.Drawing.Point)">
|
|
<summary>
|
|
Returns the information about the symbol at the specified point.
|
|
</summary>
|
|
<param name="point">A Point instance</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.Item(System.Int32)">
|
|
<summary>
|
|
Returns the information about the symbol by it's start number in the parent element.
|
|
</summary>
|
|
<param name="symbolNumber">An integer value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.MinNumber">
|
|
<summary>
|
|
Gets the Min number of the symbol's start number in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.MaxNumber">
|
|
<summary>
|
|
Gets the Max number of the symbol's start number in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the SymbolCollection class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.Add(System.Int32,Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair)">
|
|
<summary>
|
|
Adds information about a symbol to the collection.
|
|
</summary>
|
|
<param name="startNumber">Start number of the symbol in the element.</param>
|
|
<param name="info">Information about the symbol.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.Remove(System.Int32)">
|
|
<summary>
|
|
Removes the element from the collection.
|
|
</summary>
|
|
<param name="key">Start number of the symbol in the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.Clear">
|
|
<summary>
|
|
Clears the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.SearchValue(System.Drawing.PointF)">
|
|
<summary>
|
|
Overloaded. Searches information about the symbol at the specified point.
|
|
</summary>
|
|
<param name="point">Location of the symbol.</param>
|
|
<returns>Information about the symbol if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Collections.SymbolCollection.SearchValue(System.Int32)">
|
|
<summary>
|
|
Searches information about the symbol by it's number in the element.
|
|
</summary>
|
|
<param name="startPoint">Start number of the symbol.</param>
|
|
<returns>Information about the symbol if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName">
|
|
<summary>
|
|
Class that represents the names of attributes in tag elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Name">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Size">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Href">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Src">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Width">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Height">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Title">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Noshade">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Color">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Type">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Value">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.MaxLength">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Checked">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Rows">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Cols">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Multiple">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Selected">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.TabIndex">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Colspan">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Rowspan">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.BgColor">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Border">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Align">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.VAlign">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Style">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Class">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Rel">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Background">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Language">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Alt">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.BorderColor">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Display">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.LeftMargin">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.TopMargin">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.RightMargin">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.BottomMargin">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.NoWrap">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Face">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.Disabled">
|
|
<summary>
|
|
Name of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeName.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the AttributeName class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser">
|
|
<summary>
|
|
A sealed class Attribute Parser
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_REGEX_OPTIONS">
|
|
<summary>
|
|
Options for regular expressions.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_SUFFIXES">
|
|
<summary>
|
|
Suffixes in values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_INTEGER">
|
|
<summary>
|
|
Pattern for integer.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_FLOAT">
|
|
<summary>
|
|
Pattern for float.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_PERCENT">
|
|
<summary>
|
|
Pattern for percent.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_COLOR_HEX">
|
|
<summary>
|
|
Pattern for color in hash format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_COLOR_RGB">
|
|
<summary>
|
|
Pattern for color in RGB format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_COLOR_URL">
|
|
<summary>
|
|
Pattern for URL.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_WHITESPACE_PATTERN">
|
|
<summary>
|
|
Pattern for WhiteSpace.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_NONWHITESPACE">
|
|
<summary>
|
|
Pattern for nonwhitespace data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_NEW_LINE">
|
|
<summary>
|
|
Pattern for new lines.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_DELIMITERS">
|
|
<summary>
|
|
Pattern for delimiters.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_URL">
|
|
<summary>
|
|
Pattern for delimiters.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_FONT_DELIMITER">
|
|
<summary>
|
|
Delimiter between font families.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DEF_WHITESPACE">
|
|
<summary>
|
|
Whitespace string.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regInt">
|
|
<summary>
|
|
For checking integer value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regFloat">
|
|
<summary>
|
|
For checking float value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regPercent">
|
|
<summary>
|
|
For checking percentage value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regColorHex">
|
|
<summary>
|
|
For checking color in hash format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regColorRGB">
|
|
<summary>
|
|
For checking color in RGB format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regColorURL">
|
|
<summary>
|
|
For checking color URL.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regDelWhiteSpaces">
|
|
<summary>
|
|
For deleting multiple WhiteSpaces.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regNonWhiteSpaces">
|
|
<summary>
|
|
For deleting multiple NonWhiteSpaces.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regDelCommas">
|
|
<summary>
|
|
For deleting possible commas after values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regDelNewLines">
|
|
<summary>
|
|
For deleting multiple NewLines.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_regUrl">
|
|
<summary>
|
|
For checking URL.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_hashColors">
|
|
<summary>
|
|
Holds all names of colors.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_hashBorderStyle">
|
|
<summary>
|
|
Holds all names of border styles.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.m_hashFontFamily">
|
|
<summary>
|
|
Holds all names of font families.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.#cctor">
|
|
<summary>
|
|
Initializes static members of the AttributeParser class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetInteger(System.String)">
|
|
<summary>
|
|
Overloaded. Converts the string parameter value to integer.
|
|
</summary>
|
|
<param name="val">String representation of the integer.</param>
|
|
<returns>Integer number.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetInteger(System.String,System.String@)">
|
|
<summary>
|
|
Converts the string parameter value to integer.
|
|
</summary>
|
|
<param name="val">String representation of the integer.</param>
|
|
<param name="suffix">String which indicates the type of measurement.</param>
|
|
<returns>Integer value from the string parameter value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFloat(System.String)">
|
|
<summary>
|
|
Overloaded. Converts the string parameter value to float.
|
|
</summary>
|
|
<param name="val">String representation of the float number.</param>
|
|
<returns>Float value from the string parameter value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFloat(System.String,System.String@)">
|
|
<summary>
|
|
Converts the string parameter value to float.
|
|
</summary>
|
|
<param name="val">String value of float.</param>
|
|
<param name="suffix">Type of number measurement.</param>
|
|
<returns>Float value from the string parameter value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetBool(System.String)">
|
|
<summary>
|
|
Returns boolean value from the string value.
|
|
</summary>
|
|
<param name="val">String representation of the bool.</param>
|
|
<returns>Boolean value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetPoint(System.String)">
|
|
<summary>
|
|
Overloaded. Converts the string value to point.
|
|
</summary>
|
|
<param name="val">String representation of the point.</param>
|
|
<returns>Point value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetPoint(System.String,System.String@)">
|
|
<summary>
|
|
Converts the string value to point.
|
|
</summary>
|
|
<param name="val">String representation of point.</param>
|
|
<param name="suffix">Type of number measurement.</param>
|
|
<returns>Point value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetTriangle(System.String)">
|
|
<summary>
|
|
Overloaded. Converts the string value to triangle.
|
|
</summary>
|
|
<param name="val">String representation of the three numbers.</param>
|
|
<returns>Rectangle with three values.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetTriangle(System.String,System.String@)">
|
|
<summary>
|
|
Converts the string value to triangle.
|
|
</summary>
|
|
<param name="val">String representation of three numbers.</param>
|
|
<param name="suffix">Type of measurement.</param>
|
|
<returns>Three numbers.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetRectangle(System.String)">
|
|
<summary>
|
|
Overloaded. Converts the string value to rectangle.
|
|
</summary>
|
|
<param name="val">String representation of the rectangle.</param>
|
|
<returns>Rectangle object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetRectangle(System.String,System.String@)">
|
|
<summary>
|
|
Converts the string value to rectangle.
|
|
</summary>
|
|
<param name="val">String representation of four numbers.</param>
|
|
<param name="suffix">Type of measurement.</param>
|
|
<returns>Four numbers from the string.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetColor(System.String)">
|
|
<summary>
|
|
Converts the string to color structure.
|
|
</summary>
|
|
<param name="val">String representation of the color.</param>
|
|
<returns>Color object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetBorderStyle(System.String)">
|
|
<summary>
|
|
Returns the border style for the format.
|
|
</summary>
|
|
<param name="val">String representation of the border style.</param>
|
|
<returns>BorderStyle object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFontFamily(System.String)">
|
|
<summary>
|
|
Returns the font family for the format.
|
|
</summary>
|
|
<param name="val">String representation of the font family.</param>
|
|
<returns>String family name.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFontStyle(System.String)">
|
|
<summary>
|
|
Returns the font style for the format.
|
|
</summary>
|
|
<param name="val">String representation of the font style.</param>
|
|
<returns>FontStyle object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetTextDecoration(System.String)">
|
|
<summary>
|
|
Returns the TextDecoration for the format.
|
|
</summary>
|
|
<param name="val">String representation of the text decoration.</param>
|
|
<returns>FontStyle object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFontWeight(System.String)">
|
|
<summary>
|
|
Returns the font weight for the format.
|
|
</summary>
|
|
<param name="val">String representation of the font weight.</param>
|
|
<returns>Font style object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetFontFromSize(System.String,System.Drawing.Font,System.Drawing.GraphicsUnit@)">
|
|
<summary>
|
|
Returns the size of the font for the format.
|
|
</summary>
|
|
<param name="val">String representation of the font.</param>
|
|
<param name="font">Font object.</param>
|
|
<param name="outUnit">Type of measurement.</param>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetUri(System.String)">
|
|
<summary>
|
|
Returns the string path from url("path") pattern.
|
|
</summary>
|
|
<param name="val">String representation of the URL.</param>
|
|
<returns>Returns string path from url("path") pattern.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetListItemType(System.String)">
|
|
<summary>
|
|
Returns the marker style of the list item by it's type.
|
|
</summary>
|
|
<param name="val">Type of the marker.</param>
|
|
<returns>Marker style of the list item by it's type.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DetectType(System.String)">
|
|
<summary>
|
|
Recognizes the type of the specified value.
|
|
</summary>
|
|
<param name="val">String value.</param>
|
|
<returns>Type of value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.DeleteWhiteSpace(System.String)">
|
|
<summary>
|
|
Trims big whitespaces to single, skip tabs, new lines, etc.
|
|
</summary>
|
|
<param name="str">String value.</param>
|
|
<returns>String after deleting whitespaces.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetSimpleValue(System.String,Syncfusion.Windows.Forms.HTMLUI.AttributeToken)">
|
|
<summary>
|
|
Converts the string value to the specified object.
|
|
</summary>
|
|
<param name="val">String value of the object.</param>
|
|
<param name="type">Type of objects for converting.</param>
|
|
<returns>Converted object or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsWhitespace(System.String)">
|
|
<summary>
|
|
Indicates whether the value has whitespace data only.
|
|
</summary>
|
|
<param name="val">String value.</param>
|
|
<returns>True if value has whitespace data only; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsSimpleValue(System.String)">
|
|
<summary>
|
|
Indicates whether the value is of simple construction.
|
|
</summary>
|
|
<param name="val">String value.</param>
|
|
<returns>True if value has simple syntax.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.GetTokensValues(System.String,System.Char)">
|
|
<summary>
|
|
Returns the array of simple values from the complex value.
|
|
</summary>
|
|
<param name="val">String value.</param>
|
|
<param name="delimiter">Delimiter symbol.</param>
|
|
<returns>Array of tokens.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.RemoveBigSpaces(System.String@)">
|
|
<summary>
|
|
Removes all whitespaces except simple space.
|
|
</summary>
|
|
<param name="val">String value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsInteger(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is an integer value.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to integer.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsFloat(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a float value.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to float.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsPercent(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a percentage value.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to percentage.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsColorHex(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a color in hash form.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to color.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsColorRGB(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a color in RGB form.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to color.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsColorWord(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a color in word form.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to color.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsColor(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a color.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to color.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsBorderStyle(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a border style.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to border style.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsUrl(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a URL.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to URI.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsBool(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a Bool.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to bool.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsPoint(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a point.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsTriangle(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a triangle.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to three numbers.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsRectangle(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a rectangle.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to four numbers.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsFontFamily(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a font family name.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to font family.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsFontStyle(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a font style name.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to font style.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsFontWeight(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a font weight name.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to font weight.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsFontSize(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a font size value.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsTextDecoration(System.String)">
|
|
<summary>
|
|
Indicates whether "val" is a TextDecoration value.
|
|
</summary>
|
|
<param name="val">String token.</param>
|
|
<returns>True if string can be converted to text decoration.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeParser.IsSimple(Syncfusion.Windows.Forms.HTMLUI.AttributeToken)">
|
|
<summary>
|
|
Indicates whether the type is simple.
|
|
This method is used for the custom control's property settings.
|
|
</summary>
|
|
<param name="type">Type of object.</param>
|
|
<returns>True if type is simple; false otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue">
|
|
<summary>
|
|
Class that represents values of attributes in tag elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.JScript">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.JavaScript">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.Vbs">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.VBScript">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.Csh">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.Csharp">
|
|
<summary>
|
|
Value of the tag attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.AttributeValue.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the AttributeValue class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache">
|
|
<summary>
|
|
Image cache class. Holds all images in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.m_container">
|
|
<summary>
|
|
Holder of images, full path as key and bitmap as value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.m_streamContainer">
|
|
<summary>
|
|
Holds the streams from which images were loaded open during
|
|
all images lifecycle.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.m_document">
|
|
<summary>
|
|
Parent document which holds images.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the bitmap to cache, full path as key and bitmap as value.
|
|
</summary>
|
|
<param name="key">String key value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.StreamContainer">
|
|
<summary>
|
|
Gets the holder of the open streams containing the image data.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the BitmapCache class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.#ctor(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the BitmapCache class
|
|
</summary>
|
|
<param name="document">Holder of images.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Contains(System.String)">
|
|
<summary>
|
|
Overloaded. Indicates whether such image exists in the cache.
|
|
</summary>
|
|
<param name="path">Full path to image.</param>
|
|
<returns>True if it exists; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Contains(System.Drawing.Bitmap)">
|
|
<summary>
|
|
Indicates whether cache holds such bitmap.
|
|
</summary>
|
|
<param name="image">Image object.</param>
|
|
<returns>True if image was inserted into cache or image already exists; False if image is not found.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Insert(System.String)">
|
|
<summary>
|
|
Overloaded. Inserts bitmap which is located by the specified path, to cache.
|
|
</summary>
|
|
<param name="path">Path to the image.</param>
|
|
<returns>True if image was inserted to cache; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Insert(System.String,System.String@)">
|
|
<summary>
|
|
Inserts bitmap which is located by the specified path, to cache.
|
|
</summary>
|
|
<param name="path">Path to the image.</param>
|
|
<param name="fullPath">Full path to the image.</param>
|
|
<returns>True if image was inserted to cache or image already exists; False if image is not found.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Insert(System.String,System.Drawing.Bitmap)">
|
|
<summary>
|
|
Inserts image to cache if such key is not in cache.
|
|
</summary>
|
|
<param name="key">Unique key for cache.</param>
|
|
<param name="image">Image for caching.</param>
|
|
<returns>True if image was inserted to cache; False if such image already exists in cache.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Remove(System.String)">
|
|
<summary>
|
|
Removes the image from the cache.
|
|
</summary>
|
|
<param name="path">Path to the image.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.Dispose">
|
|
<summary>
|
|
Disposes cache. Removes all images from cache.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.DisposeImages">
|
|
<summary>
|
|
Disposes all bitmaps in cache.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.BitmapCache.CloseStreams">
|
|
<summary>
|
|
Closes all open streams.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.CheckButtonEx">
|
|
<summary>
|
|
Class to supports CheckButtonEx
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.CheckButtonEx.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the CheckButtonEx class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.CheckButtonEx.OnPaint(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Paints check box.
|
|
</summary>
|
|
<param name="pevent">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx">
|
|
<summary>
|
|
Class which holds an instance of the RadioControlImpl class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.m_parent">
|
|
<summary>
|
|
Parent control's class instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.m_groupName">
|
|
<summary>
|
|
Name of the group of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.ParentElement">
|
|
<summary>
|
|
Gets or sets the parent class instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.GroupName">
|
|
<summary>
|
|
Gets or sets the name of the group of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the RadioButtonEx class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.#ctor(Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the RadioButtonEx class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="groupName">Name of the group.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx.OnPaint(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Raised to repaint the control.
|
|
</summary>
|
|
<param name="pevent">Painting arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName">
|
|
<summary>
|
|
Class that represents the names of the events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.Click">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.DoubleClick">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.MouseMove">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.MouseEnter">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.MouseLeave">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.MouseDown">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.KeyUp">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.KeyDown">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.KeyPress">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.TextChanged">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.GotFocus">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.Leave">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.TabIndexChanged">
|
|
<summary>
|
|
Name of the tag element event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.EventName.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the EventName class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager">
|
|
<summary>
|
|
Class corresponding to elements focused in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.m_comparer">
|
|
<summary>
|
|
Comparer of elements in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.m_tabIndex">
|
|
<summary>
|
|
Index of the currently focused element in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.m_elements">
|
|
<summary>
|
|
Array of elements with TabIndex greater than or equal to zero.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.m_focusProcessing">
|
|
<summary>
|
|
Indicates whether focusing of an element is in process.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Comparer">
|
|
<summary>
|
|
Gets the comparer for the elements sorted by their Tab order.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Elements">
|
|
<summary>
|
|
Gets the list of elements with TabIndex equal to or greater than zero.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Index">
|
|
<summary>
|
|
Gets or sets the index of the currently focused element in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.FocusedElement">
|
|
<summary>
|
|
Gets the focused element in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.IsFocusing">
|
|
<summary>
|
|
Gets a value indicating whether focusing is in process.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the FocusManager class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.BeginFocus">
|
|
<summary>
|
|
Pair method. Indicates beginning of the focusing process.
|
|
</summary>
|
|
<remarks>After the end of focusing, EndFocus method must be invoked.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.EndFocus">
|
|
<summary>
|
|
Pair Method. Indicates the end of focusing process.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.SetFocus(System.Int32)">
|
|
<summary>
|
|
Sets the focus for an element in the document.
|
|
</summary>
|
|
<param name="step">Step of changing element.</param>
|
|
<returns>True if element has been changed; False otherwise.</returns>
|
|
<remarks>If step > 0, forward order is used;
|
|
if step < 0 - backward order is used. </remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Adds an element to the collection of elements getting focused.
|
|
</summary>
|
|
<param name="element">Element for adding to the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Removes the element from the collection.
|
|
</summary>
|
|
<param name="element">Element for removing from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.Reset">
|
|
<summary>
|
|
Resets the index of the focused element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.DrawFocusRect(System.Drawing.Graphics)">
|
|
<summary>
|
|
Overloaded. Draws focus rectangle on the active focused element.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.DrawFocusRect(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Drawing.Graphics)">
|
|
<summary>
|
|
Draws focus rectangle on the element.
|
|
</summary>
|
|
<param name="element">Element for focus rectangle drawing.</param>
|
|
<param name="g">Graphics object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.DrawFocusRect(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Draws focus rectangle on the element.
|
|
</summary>
|
|
<param name="element">Element for focus rectangle drawing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.SetFocus(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Sets the element as focused in the document.
|
|
</summary>
|
|
<param name="element">Element going to be focused.</param>
|
|
<returns>True if element is set as focused; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.ClearPrevFocusRect">
|
|
<summary>
|
|
Clears focus rectangle of the previous element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.SetFocus(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Sets focus to the element.
|
|
</summary>
|
|
<param name="element">Element getting focus.</param>
|
|
<returns>True if element got focused; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.FocusManager.LostFocus">
|
|
<summary>
|
|
Invokes the Leave event on element which has focus at the current time.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods">
|
|
<summary>
|
|
Class representing the native functions of OS.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags">
|
|
<summary>
|
|
Flags for controlling the printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_CHECKVISIBLE">
|
|
<summary>
|
|
Check Visible Flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_NONCLIENT">
|
|
<summary>
|
|
Non Client Flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_CLIENT">
|
|
<summary>
|
|
Client Flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_ERASEBKGND">
|
|
<summary>
|
|
Erase Background
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_CHILDREN">
|
|
<summary>
|
|
Children Flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_OWNED">
|
|
<summary>
|
|
Owned Flag
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PrintFlags.PRF_ALL">
|
|
<summary>
|
|
All flags
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.WM_PRINT">
|
|
<summary>
|
|
Declaration of WM_PRINT message.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.WM_PRINTCLIENT">
|
|
<summary>
|
|
Declaration of WM_PRINTCLIENT message.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PHYSICALOFFSETX">
|
|
<summary>
|
|
The distance from the left edge of the physical page to the left edge
|
|
of the printable area, in device units.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.PHYSICALOFFSETY">
|
|
<summary>
|
|
The distance from the top edge of the physical page to the top edge
|
|
of the printable area, in device units.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.WM_SETREDRAW">
|
|
<summary>
|
|
Declaration of WM_SETREDRAW message.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.WM_NCPAINT">
|
|
<summary>
|
|
Declaration of the WM_NCPAINT message and paint its own custom window frame
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.RDW_FRAME">
|
|
<summary>
|
|
Declaration of the nonclient area of the window that intersects the update region to receive a WM_NCPAINT message
|
|
RDW_INVALIDATE flag must also be specified. otherwise, RDW_FRAME has no effect
|
|
The WM_NCPAINT message is typically not sent during the execution of RedrawWindow unless either RDW_UPDATENOW or RDW_ERASENOW is specified.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.RDW_UPDATENOW">
|
|
<summary>
|
|
Declaration of the RDW_UPDATENOW message.
|
|
Causes the affected windows to receive WM_NCPAINT, WM_ERASEBKGND, and WM_PAINT messages
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.RDW_INVALIDATE">
|
|
<summary>
|
|
Invalidates lprcUpdate or hrgnUpdate (only one may be non-NULL).
|
|
If both are NULL, the entire window is invalidated.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.GetDeviceCaps(System.IntPtr,System.Int32)">
|
|
<summary>
|
|
Retrieves device-specific information for the specified device.
|
|
</summary>
|
|
<param name="hdc">Handle to DC.</param>
|
|
<param name="capindex">Index of capability.</param>
|
|
<returns>When nIndex is BITSPIXEL and the device has 15bpp or 16bpp, the return value is 16.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.NativeMethods.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the NativeMethods class
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion">
|
|
<summary>
|
|
Region of the space which text in metafile can take.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.m_y">
|
|
<summary>
|
|
Y co-ordinate of the region.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.m_height">
|
|
<summary>
|
|
Height of the region.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.Y">
|
|
<summary>
|
|
Gets or sets Y co-ordinate of the region when the text starts.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.Height">
|
|
<summary>
|
|
Gets or sets Height of the text region.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the TextRegion class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.#ctor(System.Int32,System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the TextRegion class
|
|
</summary>
|
|
<param name="y">Gets or sets Y co-ordinate of the region when the text starts.</param>
|
|
<param name="height">Gets or sets Height of the text region.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.Union(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion,Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Joins two regions.
|
|
</summary>
|
|
<param name="region1">Text region in which another region is to be joined.</param>
|
|
<param name="region2">Text region to be joined.</param>
|
|
<returns>Joined region.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion.IntersectsWith(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Checks whether region intersestc with the current one.
|
|
</summary>
|
|
<param name="region">Region object.</param>
|
|
<returns>True - if they're intersected, False - otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager">
|
|
<summary>
|
|
Manages TextRegion objects.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.m_regions">
|
|
<summary>
|
|
Collection of the regions.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the TextRegionManager class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Add(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Adds a text region into the collection.
|
|
</summary>
|
|
<param name="region">TextRegion instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.GetTopCoordinate(System.Int32)">
|
|
<summary>
|
|
Searches for the largest Y co-ordinate of the region if the y is inside of any region
|
|
or returns y if it's out of any region.
|
|
</summary>
|
|
<param name="y">Y co-ordinate of some text region.</param>
|
|
<returns>
|
|
Searches for the largest Y co-ordinate of the region if the y is inside of any region
|
|
or returns region containing co-ordinate.
|
|
</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Clear">
|
|
<summary>
|
|
Clears the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Intersect(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Searches for all regions in the collection that are intersested with the current one.
|
|
</summary>
|
|
<param name="region">Curent text region.</param>
|
|
<returns>Array of regions that intersect with the current.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Remove(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Removes region from the colection.
|
|
</summary>
|
|
<param name="region">Region that should be removed from he collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Remove(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion[])">
|
|
<summary>
|
|
Removes regions from the colection.
|
|
</summary>
|
|
<param name="regions">Array of regions that should be removed from he collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegionManager.Union(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion[],Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TextRegion)">
|
|
<summary>
|
|
Joins array of regions and the region into one region.
|
|
</summary>
|
|
<param name="regions">Array of the regions.</param>
|
|
<param name="region">Current text region.</param>
|
|
<returns>TextRegion instance</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher">
|
|
<summary>
|
|
Class which searches element where the defined point is inside.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.m_point">
|
|
<summary>
|
|
Point which we check.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.m_blocksList">
|
|
<summary>
|
|
List of all blocks.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.m_default">
|
|
<summary>
|
|
Default element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.m_document">
|
|
<summary>
|
|
Document of this searcher.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.m_activeBlock">
|
|
<summary>
|
|
Current active block at mouse point.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.Point">
|
|
<summary>
|
|
Gets or sets the point which we check.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.ActiveBlock">
|
|
<summary>
|
|
Gets the active block at mouse point at the current time.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.#ctor(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the RectSearcher class
|
|
</summary>
|
|
<param name="document">Document object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.AddBlock(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Adds block to the list of blocks.
|
|
</summary>
|
|
<param name="block">Block object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetElement(System.Drawing.Point)">
|
|
<summary>
|
|
Returns the tag element which contains the specified point.
|
|
It returns the smallest child it contains.
|
|
If mouse is not in the client area of the document, method returns NULL.
|
|
</summary>
|
|
<param name="point">Location for searching.</param>
|
|
<returns>Element or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.IsEmpty">
|
|
<summary>
|
|
Indicates whether there are no any elements for checking.
|
|
</summary>
|
|
<returns>True if container is empty.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.Clear">
|
|
<summary>
|
|
Clears all elements from inner container.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.ResetCache">
|
|
<summary>
|
|
Resets cached found block object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetBlockAtPoint(System.Drawing.Point)">
|
|
<summary>
|
|
Searches the smallest block containing the point location.
|
|
</summary>
|
|
<param name="point">Point structure.</param>
|
|
<returns>Smallest block containing the point location if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetElementHolder(System.Drawing.Point)">
|
|
<summary>
|
|
Returns the tag element which contains the points inside.
|
|
</summary>
|
|
<param name="point">Point value.</param>
|
|
<returns>Element which holds this point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetHolders(System.Drawing.Point)">
|
|
<summary>
|
|
Returns the array of blocks which contains the specified point.
|
|
</summary>
|
|
<param name="point">Point element.</param>
|
|
<returns>Array of elements containing point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetHolderElement(System.Collections.ArrayList,System.Drawing.Point)">
|
|
<summary>
|
|
Returns the tag element which contains the specified point.
|
|
</summary>
|
|
<param name="holders">Array of elements containing the point.</param>
|
|
<param name="point">Point value.</param>
|
|
<returns>IHTML Element reference to the element; NULL, if no element contains the point.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RectSearcher.GetDistance(System.Drawing.Point,System.Drawing.Point)">
|
|
<summary>
|
|
Calculates the distance between two points.
|
|
Method uses Pythagoras theorem.
|
|
</summary>
|
|
<param name="point1">Start point.</param>
|
|
<param name="point2">End point.</param>
|
|
<returns>Distance between points.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair">
|
|
<summary>
|
|
Utility class containing information about one letter of some text and it's
|
|
position in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.m_symbol">
|
|
<summary>
|
|
Symbol letter in the text.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.m_bounds">
|
|
<summary>
|
|
Rectangle containing the letter in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.m_number">
|
|
<summary>
|
|
Number of the symbol in it's parent element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.Symbol">
|
|
<summary>
|
|
Gets the symbol letter in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.Bounds">
|
|
<summary>
|
|
Gets the bounds of the letter in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.Number">
|
|
<summary>
|
|
Gets the number of the symbol in it's parent element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the LetterPair class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.LetterPair.#ctor(System.String,System.Drawing.RectangleF,System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the LetterPair class
|
|
</summary>
|
|
<param name="symbol">Letter of the text in the document.</param>
|
|
<param name="bounds">Bounds of the letter in the document.</param>
|
|
<param name="number">Number of the symbol in it's parent element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager">
|
|
<summary>
|
|
Class that is responsible for text selection in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.DEF_WHITESPACE">
|
|
<summary>
|
|
Whitespace character.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.DEF_LAST_SYMBOL">
|
|
<summary>
|
|
String added to the data when the last symbol of data is whitespace.
|
|
This is done as a workaround.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.DEF_TIMER_INTERVAL">
|
|
<summary>
|
|
Default imterval for timer.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.DEF_REGION_LENGTH">
|
|
<summary>
|
|
Size of the region for text measuring.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager._formatMeasure">
|
|
<summary>
|
|
String format for text measuring.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_bSelectionInProcess">
|
|
<summary>
|
|
Indicates whether selection is in process now or if user
|
|
can proceed selection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_control">
|
|
<summary>
|
|
Parent control object.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_lastSymbolInfo">
|
|
<summary>
|
|
Last selected symbol info object.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_selectionRegion">
|
|
<summary>
|
|
Indices of the selection region in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_curSymbolIndex">
|
|
<summary>
|
|
Current index of the symbol.
|
|
Is used during symbol creation.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_startPoint">
|
|
<summary>
|
|
Start selection point.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_documentText">
|
|
<summary>
|
|
Text displayed in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_scrollTimer">
|
|
<summary>
|
|
Timer object which scrolls the control during selection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_textObjects">
|
|
<summary>
|
|
Collection of all text objects displayed at the current time.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_selectedElements">
|
|
<summary>
|
|
Collection of selected elements in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.m_findDlg">
|
|
<summary>
|
|
Dialog for text searching.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SelectionInProcess">
|
|
<summary>
|
|
Gets or sets a value indicating whether selection is in process now or if user can proceed
|
|
selection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SelectedText">
|
|
<summary>
|
|
Gets the selected text in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.Region">
|
|
<summary>
|
|
Gets the object containing the indices of the selected text in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SymbolIndex">
|
|
<summary>
|
|
Gets or sets the value indicating the index of the current symbol in the document.
|
|
Used during document calculation.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.HasSelectedText">
|
|
<summary>
|
|
Gets a value indicating whether the document has selected text.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SelectedElements">
|
|
<summary>
|
|
Gets an array of selected elements in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.DocumentText">
|
|
<summary>
|
|
Gets the text of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.#cctor">
|
|
<summary>
|
|
Initializes static members of the SelectionManager class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the SelectionManager class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Initializes a new instance of the SelectionManager class
|
|
</summary>
|
|
<param name="control">Parent Control object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.ResetSelection">
|
|
<summary>
|
|
Resets all data regarding selection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.ResetCalculation">
|
|
<summary>
|
|
Resets data before document recalculation.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.Reset">
|
|
<summary>
|
|
Resets all data regarding selection.
|
|
Used when new document is loading.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.StartSelection(System.Drawing.Point)">
|
|
<summary>
|
|
Starts the selection process.
|
|
</summary>
|
|
<param name="point">Start point for the selection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.EndSelection">
|
|
<summary>
|
|
Stops the selection process.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.ProcessSelection(System.Drawing.Point)">
|
|
<summary>
|
|
Proceeds with the selection process. Symbol at the point will be added to the selected region.
|
|
</summary>
|
|
<param name="point">Current point for selection.</param>
|
|
<remarks>Point is at global coordinates.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.ProcessTextSearch">
|
|
<summary>
|
|
Starts the text searching in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SelectAllText">
|
|
<summary>
|
|
Selects all text in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.TimerTick(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Invoked by timer for control scrolling.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.FindText(System.Object,Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs)">
|
|
<summary>
|
|
Raised when text must be found in the control.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.CalculateText(Syncfusion.Windows.Forms.HTMLUI.Text,System.Drawing.Rectangle,System.Drawing.Graphics,System.Drawing.Font)">
|
|
<summary>
|
|
Calculates all text in the object.
|
|
</summary>
|
|
<param name="text">Text object for calcluation.</param>
|
|
<param name="bounds">Bounds of the text.</param>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="font">Font object for this text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.CalculateRegion(System.Drawing.Graphics,Syncfusion.Windows.Forms.HTMLUI.Text,System.Drawing.Font,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Calculates the size of each symbol in the text.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="text">Text data for measuring</param>
|
|
<param name="font">Font object for this text.</param>
|
|
<param name="bounds">Bounds for the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.BuildRange(System.String,System.Int32)">
|
|
<summary>
|
|
Builds an array of ranges for measuring.
|
|
</summary>
|
|
<param name="text">String for measuring.</param>
|
|
<param name="startIndex">Current start index.</param>
|
|
<returns>Array of ranges.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.InfillKeyPairCollection(System.Drawing.Graphics,Syncfusion.Windows.Forms.HTMLUI.Text,System.Drawing.Region[],System.Int32,System.Boolean)">
|
|
<summary>
|
|
Infills the collection of LetterPair objects holding information about symbols.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="text">Text data.</param>
|
|
<param name="ranges">Array of symbol bounds.</param>
|
|
<param name="startIndex">Index of the first symbol.</param>
|
|
<param name="modified">Indicates whether string was expanded at the end.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.CheckCorectData(System.String@)">
|
|
<summary>
|
|
Expands string by one symbol if last symbol in the string is a whitespace.
|
|
</summary>
|
|
<param name="data">String data.</param>
|
|
<returns>True if string if modified,; False otherwise.</returns>
|
|
<remarks>This is workaround for correct measuring of last
|
|
whitespace symbol in the string.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.ClearSelectedRegion">
|
|
<summary>
|
|
Clears selected region.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.GetSelectedText">
|
|
<summary>
|
|
Calculates the selected text in the document.
|
|
</summary>
|
|
<returns>Text selected in the document.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.GetTextObject(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Point)">
|
|
<summary>
|
|
Searches the text object under the point in the block.
|
|
</summary>
|
|
<param name="block">Block containing point.</param>
|
|
<param name="point">Current point coordinates.</param>
|
|
<returns>Text object if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.CheckScrolling">
|
|
<summary>
|
|
Checks if scrolling of the control is needed and starts it.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.StartTimer">
|
|
<summary>
|
|
Starts timer for invoking control scrolling.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.StopTimer">
|
|
<summary>
|
|
Stops and disposes timer object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.GetTextByIndex(System.Int32)">
|
|
<summary>
|
|
Searches text object containing symbol with the specified index.
|
|
</summary>
|
|
<param name="index">Index of the symbol.</param>
|
|
<returns>Text object if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionManager.SearchText(System.String,System.Int32,System.Boolean,System.Boolean)">
|
|
<summary>
|
|
Searches string data in the text displayed on the control.
|
|
If found, selects this text.
|
|
</summary>
|
|
<param name="value">Search value.</param>
|
|
<param name="startIndex">Index from where to start the search.</param>
|
|
<param name="isForward">Indicates whether the order of searching is forward.</param>
|
|
<param name="matchCase">Indicates whether search must match case.</param>
|
|
<returns>Index of text if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion">
|
|
<summary>
|
|
Utility class. Holds the first and the last selected symbols' indices in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.DEF_INDEX">
|
|
<summary>
|
|
Default index for selected symbol.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.m_firstIndex">
|
|
<summary>
|
|
Index of the first symbol in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.m_lastIndex">
|
|
<summary>
|
|
Index of the last symbol in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.m_startIndex">
|
|
<summary>
|
|
Index of the symbol from which selection has been started.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.m_bForwardOrder">
|
|
<summary>
|
|
Indicates whether selection is forward or backward.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.m_elementsIndex">
|
|
<summary>
|
|
Collection of elements as keys and their first / last text
|
|
position in the text of the document as values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.Empty">
|
|
<summary>
|
|
Gets a new empty selection region.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.FirstIndex">
|
|
<summary>
|
|
Gets or sets the start symbol's index in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.LastIndex">
|
|
<summary>
|
|
Gets or sets the last symbol's index in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.IsEmpty">
|
|
<summary>
|
|
Gets a value indicating whether the region is empty.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.#ctor(System.Int32,System.Int32,System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the SelectionRegion class
|
|
</summary>
|
|
<param name="startIndex">First selected symbol's index in the document.</param>
|
|
<param name="firstIndex">First selected symbol.</param>
|
|
<param name="lastIndex">Last selected symbol's index in the document.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.ResetSelection">
|
|
<summary>
|
|
Resets the selection indices.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.ResetCalculation">
|
|
<summary>
|
|
Resets the data for calculation.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.AddSymbolIndex(System.Int32)">
|
|
<summary>
|
|
Adds the specified index of the selected element.
|
|
</summary>
|
|
<param name="index">Integer index value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.SetFirstIndex(System.Int32)">
|
|
<summary>
|
|
Assigns a value to the FirstIndex.
|
|
</summary>
|
|
<param name="index">New first index.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.SetLastIndex(System.Int32)">
|
|
<summary>
|
|
Assigns a value to the LastIndex.
|
|
</summary>
|
|
<param name="index">New last index.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.SetElementIndex(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Int32,System.Int32)">
|
|
<summary>
|
|
Sets the first / last index element's text in the text of the document.
|
|
</summary>
|
|
<param name="element">Element processing.</param>
|
|
<param name="startIndex">Current start index.</param>
|
|
<param name="lastIndex">Current last index.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.FirstIndexOf(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Returns the start index of the element's text in the text of the document.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
<returns>Start index of the element's text in the text of the document if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.LastIndexOf(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Returns the last index of the element's text in the text of the document.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
<returns>Last index of the element's text in the text of the document if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.Selection.SelectionRegion.IndexOf(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Gets first / last index of the element's text in the text of the document.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
<returns>First / Last index of the element's text in the text of the document if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TabStopComparer">
|
|
<summary>
|
|
Comparer of elements by their order of getting focused in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TabStopComparer.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the TabStopComparer class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TabStopComparer.Compare(System.Object,System.Object)">
|
|
<summary>
|
|
Compares elements by their order of getting focused in the document.
|
|
</summary>
|
|
<param name="x">First element for comparing.</param>
|
|
<param name="y">Second element for comparing.</param>
|
|
<returns>
|
|
See <see cref="M:System.Collections.IComparer.Compare(System.Object,System.Object)"/> method for details.
|
|
</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TabStopComparer.GetIntFromString(System.String)">
|
|
<summary>
|
|
Converts the string value to it's integer value.
|
|
</summary>
|
|
<param name="value">String value of integer number.</param>
|
|
<returns>Converted value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TabStopComparer.CompareInt(System.Int32,System.Int32)">
|
|
<summary>
|
|
Compares two integer numbers.
|
|
</summary>
|
|
<param name="first">First number.</param>
|
|
<param name="second">Second number.</param>
|
|
<returns> -1 if first number is less than the second; 0 if first number equals the second;
|
|
1 if first number is greater than the second.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName">
|
|
<summary>
|
|
Class that represents the names of tags.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Html">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Head">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Link">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Style">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Title">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Meta">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Body">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Table">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Td">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Tr">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Th">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.A">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.B">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Br">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Code">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Div">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Em">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Font">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Form">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H1">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H2">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H3">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H4">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H5">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.H6">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Hr">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.I">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Img">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Input">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Li">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Ol">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.P">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Pre">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Script">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Select">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Span">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Strong">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Textarea">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.U">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Ul">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Option">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Custom">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Sub">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.Sup">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.TagName.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the TagName class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.WinUtilities">
|
|
<summary>
|
|
Utility class for different static methods.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.WinUtilities.PrintControl(System.Windows.Forms.Control)">
|
|
<summary>
|
|
Makes a snapshot of the control and saves it to image.
|
|
</summary>
|
|
<param name="control">Control to be printed.</param>
|
|
<returns>Image with snapshot of control.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SortedListEx">
|
|
<summary>
|
|
Optimized version of the SortedList collection. Instead of keeping two
|
|
arrays, one for keys and one for values, we change values on the
|
|
Hashtable collection and only keep the keys collection sorted.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx._defaultCapacity">
|
|
<summary>
|
|
Default capacity of internal buffers.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.keys">
|
|
<summary>
|
|
Array which stores keys in sorted order.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.values">
|
|
<summary>
|
|
Collection store values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx._size">
|
|
<summary>
|
|
Size of the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.version">
|
|
<summary>
|
|
Version of the collection data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.comparer">
|
|
<summary>
|
|
Default comparer for the keys.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.keyList">
|
|
<summary>
|
|
List of keys.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.valueList">
|
|
<summary>
|
|
List of values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Capacity">
|
|
<summary>
|
|
Gets or sets the capacity of internal buffers.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Count">
|
|
<summary>
|
|
Gets the size of the collection. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Keys">
|
|
<summary>
|
|
Gets the list of keys. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Values">
|
|
<summary>
|
|
Gets the list of values. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.IsReadOnly">
|
|
<summary>
|
|
Gets a value indicating whether the list is Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.IsFixedSize">
|
|
<summary>
|
|
Gets a value indicating whether the collection has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.IsSynchronized">
|
|
<summary>
|
|
Gets a value indicating whether the collection is synchronized.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncRoot">
|
|
<summary>
|
|
Gets the object that can be used to synchronize access to the collection.
|
|
Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Item(System.Object)">
|
|
<summary>
|
|
Gets or sets the value associated with the specified key.
|
|
</summary>
|
|
<param name="key">a key value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor(System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
<param name="initialCapacity">Initial capacity.</param>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
When initial capacity is less than zero.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor(System.Collections.IComparer)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
<param name="comparer">
|
|
The IComparer to use to determine whether two keys are equal.
|
|
</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor(System.Collections.IComparer,System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
<param name="comparer">Initial capacity.</param>
|
|
<param name="capacity">
|
|
The IComparer to use to determine whether two keys are equal.
|
|
</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor(System.Collections.IDictionary)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
<param name="d">The IDictionary to copy.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.#ctor(System.Collections.IDictionary,System.Collections.IComparer)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListEx class
|
|
</summary>
|
|
<param name="d">The IDictionary to copy.</param>
|
|
<param name="comparer">
|
|
The IComparer to use to determine whether two keys are equal.
|
|
</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
When argument d is NULL.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Synchronized(Syncfusion.Windows.Forms.HTMLUI.SortedListEx)">
|
|
<summary>
|
|
Returns a synchronized (thread-safe) wrapper for the SortedList.
|
|
</summary>
|
|
<param name="list">The SortedList to synchronize.</param>
|
|
<returns>A synchronized (thread-safe) wrapper for the SortedList.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
When list is NULL.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Add(System.Object,System.Object)">
|
|
<summary>
|
|
Adds an element with the specified key and value to the list.
|
|
</summary>
|
|
<param name="key">The Object to use as the key of the element to be added.</param>
|
|
<param name="value">The Object to use as the value of the element to be added.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
When key is NULL.
|
|
</exception>
|
|
<exception cref="T:System.ArgumentException">
|
|
When list already contains specified key.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Clear">
|
|
<summary>
|
|
Removes all elements from the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Clone">
|
|
<summary>
|
|
Creates a new object that is a copy of the current instance.
|
|
</summary>
|
|
<returns>Copy of the current instance.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Contains(System.Object)">
|
|
<summary>
|
|
Indicates whether the list contains an element with the specified key.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified key.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ContainsKey(System.Object)">
|
|
<summary>
|
|
Indicates whether the list contains an element with the specified key.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified key.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ContainsValue(System.Object)">
|
|
<summary>
|
|
Indicates whether the list contains the specified value.
|
|
</summary>
|
|
<param name="value">Value of the element to search for.</param>
|
|
<returns>True if list contains the specified value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.CopyTo(System.Array,System.Int32)">
|
|
<summary>
|
|
Copies all the elements of the SortedListEx to the specified one-dimensional array
|
|
starting at the specified destination array index.
|
|
</summary>
|
|
<param name="array">The one-dimensional array that is the destination of the
|
|
elements copied from the current list.</param>
|
|
<param name="arrayIndex">The index in an array at which copying begins.</param>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
If specified array is NULL.
|
|
</exception>
|
|
<exception cref="T:System.ArgumentException">
|
|
If rank of the array is not one or there are not enough elements.
|
|
</exception>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
If specified array Index is less than zero.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.GetByIndex(System.Int32)">
|
|
<summary>
|
|
Returns the value at the specified index of the SortedListEx.
|
|
</summary>
|
|
<param name="index">The zero-based index of the value to return.</param>
|
|
<returns>The value at the specified index of the SortedListEx.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
When index is less than zero or greater than size of the list.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.GetKey(System.Int32)">
|
|
<summary>
|
|
Returns the key at the specified index of the SortedListEx.
|
|
</summary>
|
|
<param name="index">The zero-based index of the key to return.</param>
|
|
<returns>The key at the specified index of the SortedListEx.</returns>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
When index is less than zero or greater than size of the list.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.GetKeyList">
|
|
<summary>
|
|
Returns the keys in the SortedListEx.
|
|
</summary>
|
|
<returns>An IList containing the keys in the SortedListEx.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.GetValueList">
|
|
<summary>
|
|
Returns the values in the SortedListEx.
|
|
</summary>
|
|
<returns>An IList containing the values in the SortedListEx.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.IndexOfKey(System.Object)">
|
|
<summary>
|
|
Returns the zero-based index of the specified key.
|
|
</summary>
|
|
<param name="key">The key to locate.</param>
|
|
<returns>The zero-based index of key, if key is found; -1 otherwise.</returns>
|
|
<exception cref="T:System.ArgumentNullException">
|
|
If specified key is NULL.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.IndexOfValue(System.Object)">
|
|
<summary>
|
|
Returns the zero-based index of the first occurrence of the specified value.
|
|
</summary>
|
|
<param name="value">The value to locate (can be NULL).</param>
|
|
<returns>
|
|
The zero-based index of the first occurrence of value, if value is found;
|
|
-1 otherwise.
|
|
</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.RemoveAt(System.Int32)">
|
|
<summary>
|
|
Removes the element at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index of the element to remove.</param>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
When index is less than zero or greater than the size of the list.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Remove(System.Object)">
|
|
<summary>
|
|
Removes the element with the specified key from the SortedListEx.
|
|
</summary>
|
|
<param name="key">The key of the element to be removed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SetByIndex(System.Int32,System.Object)">
|
|
<summary>
|
|
Replaces the value at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index at which to save the value.</param>
|
|
<param name="value">The Object to save. Can be NULL.</param>
|
|
<exception cref="T:System.ArgumentOutOfRangeException">
|
|
When index is less than zero or greater than the size of the list.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.TrimToSize">
|
|
<summary>
|
|
Sets the capacity to the actual number of elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.GetEnumerator">
|
|
<summary>
|
|
Returns an IDictionaryEnumerator that can iterate through the SortedListEx.
|
|
</summary>
|
|
<returns>An IDictionaryEnumerator for the SortedListEx.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.System#Collections#IEnumerable#GetEnumerator">
|
|
<summary>
|
|
Returns an IEnumerator that can iterate through the SortedListEx.
|
|
</summary>
|
|
<returns>An IEnumerator for the SortedListEx.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.Insert(System.Int32,System.Object,System.Object)">
|
|
<summary>
|
|
Inserts element with specified key and value at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index to insert element at.</param>
|
|
<param name="key">The key of the element to insert.</param>
|
|
<param name="value">The value of the element to insert.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.EnsureCapacity(System.Int32)">
|
|
<summary>
|
|
Ensures that the capacity of this instance is atleast the specified value.
|
|
</summary>
|
|
<param name="min">The minimum capacity to ensure.</param>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx._list">
|
|
<summary>
|
|
Wrapped SortedListEx.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx._root">
|
|
<summary>
|
|
Sync object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.#ctor(Syncfusion.Windows.Forms.HTMLUI.SortedListEx)">
|
|
<summary>
|
|
Initializes a new instance of the SyncSortedListEx class
|
|
</summary>
|
|
<param name="list">SortedListEx that will be wrapped.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Capacity">
|
|
<summary>
|
|
Returns the capacity of internal buffers.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Count">
|
|
<summary>
|
|
Returns the size of the collection. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.SyncRoot">
|
|
<summary>
|
|
Returns the object that can be used to synchronize access to the collection.
|
|
Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.IsReadOnly">
|
|
<summary>
|
|
Indicates whether the list is Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.IsFixedSize">
|
|
<summary>
|
|
Indicates whether the collection has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.IsSynchronized">
|
|
<summary>
|
|
Indicates whether the collection is synchronized.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Item(System.Object)">
|
|
<summary>
|
|
Gets or sets the value associated with the specified key.
|
|
</summary>
|
|
<param name="key">a key value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Add(System.Object,System.Object)">
|
|
<summary>
|
|
Overridden. Adds an element with the provided key and value to the list.
|
|
</summary>
|
|
<param name="key">The Object to use as the key of the element to be added.</param>
|
|
<param name="value">The Object to use as the value of the element to be added.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Clear">
|
|
<summary>
|
|
Overridden. Removes all elements from the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Clone">
|
|
<summary>
|
|
Overridden. Creates a new object that is a copy of the current instance.
|
|
</summary>
|
|
<returns>A new object that is a copy of the current instance.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Contains(System.Object)">
|
|
<summary>
|
|
Overridden. Indicates whether the list contains an element with the specified key.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified key.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.ContainsKey(System.Object)">
|
|
<summary>
|
|
Overridden. Indicates whether the list contains an element with the specified key.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified key.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.ContainsValue(System.Object)">
|
|
<summary>
|
|
Overridden. Indicates whether the list contains the specified value.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.CopyTo(System.Array,System.Int32)">
|
|
<summary>
|
|
Overridden. Copies all the elements of the list to the specified one-dimensional array
|
|
starting at the specified destination array index.
|
|
</summary>
|
|
<param name="array">The one-dimensional array that is the destination of the
|
|
elements copied from the current list.</param>
|
|
<param name="index">The index in an array at which copying begins.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.GetByIndex(System.Int32)">
|
|
<summary>
|
|
Overridden. Gets the value of the specified index of the list.
|
|
</summary>
|
|
<param name="index">The zero-based index of the value to get.</param>
|
|
<returns>The value at the specified index of the SortedListEx.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.GetEnumerator">
|
|
<summary>
|
|
Overridden. Returns an IDictionaryEnumerator that can iterate through the list.
|
|
</summary>
|
|
<returns>An IDictionaryEnumerator for the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.GetKey(System.Int32)">
|
|
<summary>
|
|
Overridden. Returns the key at the specified index of the list.
|
|
</summary>
|
|
<param name="index">The zero-based index of the key to return.</param>
|
|
<returns>The key at the specified index of the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.GetKeyList">
|
|
<summary>
|
|
Overridden. Returns the keys in the list.
|
|
</summary>
|
|
<returns>An IList containing the keys in the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.GetValueList">
|
|
<summary>
|
|
Overridden. Returns the values in the list.
|
|
</summary>
|
|
<returns>An IList containing the values in the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.IndexOfKey(System.Object)">
|
|
<summary>
|
|
Overridden. Returns the zero-based index of the specified key.
|
|
</summary>
|
|
<param name="key">The key to locate.</param>
|
|
<returns>The zero-based index of key, if key is found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.IndexOfValue(System.Object)">
|
|
<summary>
|
|
Overridden. Returns the zero-based index of the first occurrence of the specified value.
|
|
</summary>
|
|
<param name="value">The value to locate (can be NULL).</param>
|
|
<returns>
|
|
The zero-based index of the first occurrence of value, if value is found;
|
|
-1 otherwise.
|
|
</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.RemoveAt(System.Int32)">
|
|
<summary>
|
|
Overridden. Removes the element at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index of the element to remove.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.Remove(System.Object)">
|
|
<summary>
|
|
Overridden. Removes the element with the specified key from the list.
|
|
</summary>
|
|
<param name="key">The key of the element to remove.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.SetByIndex(System.Int32,System.Object)">
|
|
<summary>
|
|
Overridden. Replaces the value at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index at which the value is to be saved.</param>
|
|
<param name="value">The Object to save. Can be NULL.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SyncSortedListEx.TrimToSize">
|
|
<summary>
|
|
Overridden. Sets the capacity to the actual number of elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Keys">
|
|
<summary>
|
|
If it is assumed to getObjectRetType, then Current will return key
|
|
of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Values">
|
|
<summary>
|
|
If it is assumed to getObjectRetType, then Current will return value
|
|
of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.DictEntry">
|
|
<summary>
|
|
If it is assumed to getObjectRetType, then Current will return both -
|
|
key and value (as DictionaryEntry).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.sortedListEx">
|
|
<summary>
|
|
List for which this collection was created.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.key">
|
|
<summary>
|
|
Key of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.value">
|
|
<summary>
|
|
Values of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.index">
|
|
<summary>
|
|
Index of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.startIndex">
|
|
<summary>
|
|
Starting index for the enumerator.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.endIndex">
|
|
<summary>
|
|
Ending index for this enumerator.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.version">
|
|
<summary>
|
|
Version of the collection data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.current">
|
|
<summary>
|
|
Indicates whether current element is correct.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.getObjectRetType">
|
|
<summary>
|
|
Specifies what should be returned by method Current (key, value, or both).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.#ctor(Syncfusion.Windows.Forms.HTMLUI.SortedListEx,System.Int32,System.Int32,System.Int32)">
|
|
<summary>
|
|
Initializes a new instance of the SortedListExEnumerator class
|
|
</summary>
|
|
<param name="sortedListEx">List for which enumerator is to be created.</param>
|
|
<param name="index">Starting index.</param>
|
|
<param name="count">Number of elements to enumerate.</param>
|
|
<param name="getObjRetType">Type of enumerating values (keys, value, DicEntry).</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Clone">
|
|
<summary>
|
|
Creates a new object that is a copy of the current instance.
|
|
</summary>
|
|
<returns>Copy of the current instance.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Key">
|
|
<summary>
|
|
Gets the key of the current element. Read-only.
|
|
</summary>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
When the current version is not equal to the SortedListEx version
|
|
or if current is False.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.MoveNext">
|
|
<summary>
|
|
Advances the enumerator to the next element of the collection.
|
|
</summary>
|
|
<returns>
|
|
True if the enumerator was successfully advanced to the next element;
|
|
False if it has passed the end of the collection.
|
|
</returns>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
When the current version is not equal to the SortedListEx version.
|
|
</exception>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Entry">
|
|
<summary>
|
|
Gets the DictionaryEntry for the current element.
|
|
</summary>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
When the current version is not equal to the SortedListEx version
|
|
or if current is False.
|
|
</exception>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Current">
|
|
<summary>
|
|
Gets the current element in the collection. Read-only.
|
|
</summary>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
If current is False.
|
|
</exception>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Value">
|
|
<summary>
|
|
Gets the value for the current element.
|
|
</summary>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
When the current version is not equal to the SortedListEx version
|
|
or if current is False.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.SortedListExEnumerator.Reset">
|
|
<summary>
|
|
Sets the enumerator to its initial position, which is before
|
|
the first element in the collection.
|
|
</summary>
|
|
<exception cref="T:System.InvalidOperationException">
|
|
When the current version is not equal to the SortedListEx version.
|
|
</exception>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.sortedListEx">
|
|
<summary>
|
|
List for which this collection was created.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.#ctor(Syncfusion.Windows.Forms.HTMLUI.SortedListEx)">
|
|
<summary>
|
|
Initializes a new instance of the KeyList class
|
|
</summary>
|
|
<param name="sortedListEx">SortedListEx for which KeyList must be created.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Count">
|
|
<summary>
|
|
Gets the size of the collection. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.IsReadOnly">
|
|
<summary>
|
|
Gets a value indicating whether the list is Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.IsFixedSize">
|
|
<summary>
|
|
Gets a value indicating whether the collection has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.IsSynchronized">
|
|
<summary>
|
|
Gets a value indicating whether the collection is synchronized.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.SyncRoot">
|
|
<summary>
|
|
Gets a value indicating the object that can be used to synchronize access to the collection.
|
|
Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Add(System.Object)">
|
|
<summary>
|
|
Adds an element with the specified key to the list.
|
|
</summary>
|
|
<param name="key">The Object to use as the key of the element to be added.</param>
|
|
<returns>a int value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Clear">
|
|
<summary>
|
|
Removes all elements from the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Contains(System.Object)">
|
|
<summary>
|
|
Indicates whether the list contains an element with the specified key.
|
|
</summary>
|
|
<param name="key">Key of the element to search for.</param>
|
|
<returns>True if list contains the specified key.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.CopyTo(System.Array,System.Int32)">
|
|
<summary>
|
|
Copies all the elements of the list to the specified one-dimensional array
|
|
starting at the specified destination array index.
|
|
</summary>
|
|
<param name="array">The one-dimensional array that is the destination of the
|
|
elements copied from the current list.</param>
|
|
<param name="arrayIndex">The index in an array at which copying begins.</param>
|
|
<exception cref="T:System.ArgumentException">
|
|
If array is NULL or rank of the array is not 1.
|
|
</exception>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Insert(System.Int32,System.Object)">
|
|
<summary>
|
|
Inserts the value at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index at which the value is to be saved.</param>
|
|
<param name="value">The Object to save. Can be NULL.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the key at the specified index.
|
|
</summary>
|
|
<param name="index">An int value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.GetEnumerator">
|
|
<summary>
|
|
Returns an IEnumerator that can iterate through the list.
|
|
</summary>
|
|
<returns>An IEnumerator for the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.IndexOf(System.Object)">
|
|
<summary>
|
|
Returns the zero-based index of the specified key.
|
|
</summary>
|
|
<param name="key">The key to locate.</param>
|
|
<returns>The zero-based index of the key, if the key is found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.Remove(System.Object)">
|
|
<summary>
|
|
Removes the element with the specified key from the list.
|
|
</summary>
|
|
<param name="key">The key of the element to remove.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.KeyList.RemoveAt(System.Int32)">
|
|
<summary>
|
|
Removes the element at the specified index from the list.
|
|
</summary>
|
|
<param name="index">The zero-based index of the element to remove.</param>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.sortedListEx">
|
|
<summary>
|
|
List for which this collection was created.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.vals">
|
|
<summary>
|
|
Array of values.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.#ctor(Syncfusion.Windows.Forms.HTMLUI.SortedListEx)">
|
|
<summary>
|
|
Initializes a new instance of the ValueList class
|
|
</summary>
|
|
<param name="sortedListEx">SortedListEx for which ValueList must be created.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.UpdateValues">
|
|
<summary>
|
|
Re-read values from the list.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Count">
|
|
<summary>
|
|
Gets the size of the collection. Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.IsReadOnly">
|
|
<summary>
|
|
Gets a value indicating whether the list is Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.IsFixedSize">
|
|
<summary>
|
|
Gets a value indicating whether the collection has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.IsSynchronized">
|
|
<summary>
|
|
Gets a value indicating whether the collection is synchronized.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.SyncRoot">
|
|
<summary>
|
|
Gets a value indicating the object that can be used to synchronize access to the collection.
|
|
Read-only.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Add(System.Object)">
|
|
<summary>
|
|
Adds an element with the specified key to the list.
|
|
</summary>
|
|
<param name="key">The Object to use as the key of the element to be added.</param>
|
|
<returns>a int value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Clear">
|
|
<summary>
|
|
Removes all elements from the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Contains(System.Object)">
|
|
<summary>
|
|
Indicates whether the list contains an element with the specified value.
|
|
</summary>
|
|
<param name="value">Value to search for.</param>
|
|
<returns>True if list contains the specified value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.CopyTo(System.Array,System.Int32)">
|
|
<summary>
|
|
Copies all the elements of the list to the specified one-dimensional array
|
|
starting at the specified destination array index.
|
|
</summary>
|
|
<param name="array">The one-dimensional array that is the destination of the
|
|
elements copied from the current list.</param>
|
|
<param name="arrayIndex">The index in an array at which copying begins.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Insert(System.Int32,System.Object)">
|
|
<summary>
|
|
Inserts the value at the specified index.
|
|
</summary>
|
|
<param name="index">The zero-based index at which the value is to be saved.</param>
|
|
<param name="value">The Object to save. Can be NULL.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the value at the specified index.
|
|
</summary>
|
|
<param name="index">An int value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.GetEnumerator">
|
|
<summary>
|
|
Returns an IEnumerator that can iterate through the list.
|
|
</summary>
|
|
<returns>An IEnumerator for the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.IndexOf(System.Object)">
|
|
<summary>
|
|
Returns the zero-based index of the specified value.
|
|
</summary>
|
|
<param name="value">The value to locate.</param>
|
|
<returns>The zero-based index of the value, if the value is found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.Remove(System.Object)">
|
|
<summary>
|
|
Removes the specified value from the list.
|
|
</summary>
|
|
<param name="value">The value to remove.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SortedListEx.ValueList.RemoveAt(System.Int32)">
|
|
<summary>
|
|
Removes the element at the specified index from the list.
|
|
</summary>
|
|
<param name="index">The zero-based index of the element to remove.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.AElementImpl">
|
|
<summary>
|
|
Class that is responsible for <A> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.m_destinationType">
|
|
<summary>
|
|
Type of destination document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.m_hoverFormat">
|
|
<summary>
|
|
Format indicating :hover pseudo-class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.m_visitedFormat">
|
|
<summary>
|
|
Format indicating :visited pseudo-class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.m_tempFormat">
|
|
<summary>
|
|
Format storing previous main format when mouse enters and leaves.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of the supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.HoverFormat">
|
|
<summary>
|
|
Gets the format object containing :hover pseudo-class style.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.VisitedFormat">
|
|
<summary>
|
|
Gets the format object containing :visited pseudo-class style.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.IsVisited">
|
|
<summary>
|
|
Gets a value indicating whether the link is visited.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Gets or sets the format which is special for tag A (hyperlink).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.IsLink">
|
|
<summary>
|
|
Gets a value indicating whether the link has href attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.Forward">
|
|
<summary>
|
|
Raised before forwarding on another resource by defined URI.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the AElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the AElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.ResetVisited">
|
|
<summary>
|
|
Excludes element from visited links list.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.InitializeElement">
|
|
<summary>
|
|
Overridden. Initializes element's properties.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.OnForward(Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs)">
|
|
<summary>
|
|
Raises the <see cref="E:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.Forward"/> event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.RaiseForward(Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs)">
|
|
<summary>
|
|
Raises <see cref="E:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.Forward"/> event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.RaiseClickEvent(System.EventArgs)">
|
|
<summary>
|
|
Overridden. Implement on click functionality.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.RaiseMouseEnterEvent(System.EventArgs)">
|
|
<summary>
|
|
Overridden. Raised when mouse enters the element.
|
|
</summary>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.RaiseMouseLeaveEvent(System.EventArgs)">
|
|
<summary>
|
|
Overridden. Raised when mouse leaves the element.
|
|
</summary>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.GetPath">
|
|
<summary>
|
|
Returns a string which represents the path (value of href attribute) if it exists; NULL otherwise.
|
|
</summary>
|
|
<returns>Link path.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.IsGoodPath(System.String,System.String@)">
|
|
<summary>
|
|
Indicates whether the URL is valid.
|
|
</summary>
|
|
<param name="path">Link path.</param>
|
|
<param name="fullPath">If resource found - holds full path to it.</param>
|
|
<returns>True if resource found.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.ForwardResource(System.String)">
|
|
<summary>
|
|
Reloads new document in the control.
|
|
</summary>
|
|
<param name="path">Path of the link.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.CalculateOtherFormats">
|
|
<summary>
|
|
Calculcates additional formats for the element such as: hover, visited.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AElementImpl.GetFormatsArray(System.Collections.IDictionary,System.String)">
|
|
<summary>
|
|
Searchs and returns an array of formats for the element with the specified key.
|
|
</summary>
|
|
<param name="formatsHash">Dictionary of all formats.</param>
|
|
<param name="key">Key of the array in the dictionary.</param>
|
|
<returns>Array of formats for the element with the specified key.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BElementImpl">
|
|
<summary>
|
|
Class that is responsible for <B> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of the supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Returns specific element's settings for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the BElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the BElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the BElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
<param name="tagName">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl">
|
|
<summary>
|
|
Class that is responsible for <BODY> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_LEFT_MARGIN">
|
|
<summary>
|
|
Default value of the left margin attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_TOP_MARGIN">
|
|
<summary>
|
|
Default value of the top margin attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_RIGHT_MARGIN">
|
|
<summary>
|
|
Default value of the right margin attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_BOTTOM_MARGIN">
|
|
<summary>
|
|
Default value of the bottom margin attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of the supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Returns the HTML format for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.LeftMargin">
|
|
<summary>
|
|
Gets or sets the left margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.TopMargin">
|
|
<summary>
|
|
Gets or sets the top margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.RightMargin">
|
|
<summary>
|
|
Gets or sets the right margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.BottomMargin">
|
|
<summary>
|
|
Gets or sets the bottom margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.OnLoad">
|
|
<summary>
|
|
Event raised when document is loading.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.OnUnLoad">
|
|
<summary>
|
|
Event raised when document is unloading.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.OnScroll">
|
|
<summary>
|
|
Event raised when document is scrolling.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.OnResize">
|
|
<summary>
|
|
Event raised when document is resizing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the BODYElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the BODYElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.SetFirstFormat(System.Collections.ArrayList)">
|
|
<summary>
|
|
Overridden. Sets the first format with white background color.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.RaiseOnLoadEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the load event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.RaiseOnUnLoadEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the unload event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.RaiseOnScrollEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the scroll event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.RaiseOnResizeEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the resize event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.ResizeControl">
|
|
<summary>
|
|
Resizes control if needed (Add scroll).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.GetMargin(System.String)">
|
|
<summary>
|
|
Returns the value of the margin with the specified name of the attribute.
|
|
</summary>
|
|
<param name="attrName">Name of the attribute.</param>
|
|
<returns>Integer margin value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.SetMargin(System.String,System.Int32)">
|
|
<summary>
|
|
Sets a new value to the margin attribute of the element.
|
|
</summary>
|
|
<param name="attrName">Name of the attribute.</param>
|
|
<param name="marginVal">Value of the margin.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl.GetDefaultMargin(System.String)">
|
|
<summary>
|
|
Returns the default value of margin's attribute of the element.
|
|
</summary>
|
|
<param name="attrName">Name of the attribute.</param>
|
|
<returns>Default value of margin's attribute of the element.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl">
|
|
<summary>
|
|
Class that is responsible for <BR> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.DEF_HEIGHT">
|
|
<summary>
|
|
Default height by which we make new line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of the supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.IsVisible">
|
|
<summary>
|
|
Overridden. Indicates the visibility of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the BRElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the BRElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size of the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates its position and size.
|
|
</summary>
|
|
<param name="curPosition">Current global position.</param>
|
|
<param name="bounds">Bounds for the element.</param>
|
|
<returns>Array of blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.ProhibitSpaceAfter">
|
|
<summary>
|
|
Overridden. Sets value indicating whether trailing whitespace is allowed after element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BRElementImpl.GetHeight">
|
|
<summary>
|
|
Returns height of the element.
|
|
</summary>
|
|
<returns>height of the element.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl">
|
|
<summary>
|
|
Class which represents the button in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.DEF_TEXT">
|
|
<summary>
|
|
Default name of the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.SupportedEvents">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.DEF_HINDENT">
|
|
<summary>
|
|
Horizontal indent on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.DEF_VINDENT">
|
|
<summary>
|
|
Vertical indent on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.m_button">
|
|
<summary>
|
|
Instance on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the BUTTONControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the BUTTONControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the BUTTONControlImpl class
|
|
</summary>
|
|
<param name="parent">IUserControlHolder instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes a control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes of control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.AttachEvents">
|
|
<summary>
|
|
Overridden. Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.DetachEvents">
|
|
<summary>
|
|
Overridden. Detaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.ConfigureValue">
|
|
<summary>
|
|
Configures the text on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BUTTONControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Raised when event is needed but is not created yet.
|
|
</summary>
|
|
<param name="sender">Sender of events.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl">
|
|
<summary>
|
|
Class which represents check box in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.DEF_TEXT">
|
|
<summary>
|
|
Default name of the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.SupportedEvents">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.m_check">
|
|
<summary>
|
|
Instance on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the CHECKBOXControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the CHECKBOXControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the CHECKBOXControlImpl class
|
|
</summary>
|
|
<param name="parent">IUserControlHolder instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes of control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.AttachEvents">
|
|
<summary>
|
|
Overridden. Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.DetachEvents">
|
|
<summary>
|
|
Overridden. Detaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.ConfigureValue">
|
|
<summary>
|
|
Configures the text on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.ConfigureState">
|
|
<summary>
|
|
Configures the state of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.ConfigureBgColor">
|
|
<summary>
|
|
Sets the background color of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CHECKBOXControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Raised when event is needed but is not created yet.
|
|
</summary>
|
|
<param name="sender">Sender of events.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl">
|
|
<summary>
|
|
Class that is responsible for <CODE> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.OwnFormat">
|
|
<summary>
|
|
Gets or sets the format which defines special visualization for this element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the CODElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the CODElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CODElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ControlBase">
|
|
<summary>
|
|
Base class for supporting custom controls.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.DEF_PRINT_DPI">
|
|
<summary>
|
|
Resolution of the control image during printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_control">
|
|
<summary>
|
|
Custom control object.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_parent">
|
|
<summary>
|
|
Parent custom tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_bEventsAttached">
|
|
<summary>
|
|
Indicates whether events were attached.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_bAssignTabIndex">
|
|
<summary>
|
|
Indicates whether TabIndex can be assigned to custom control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_bQuiteMode">
|
|
<summary>
|
|
Indicates quite mode state.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ControlBase.m_defaultSize">
|
|
<summary>
|
|
Default size of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl">
|
|
<summary>
|
|
Gets the custom control object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.Parent">
|
|
<summary>
|
|
Gets the parent element container for the custom control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.ParentElement">
|
|
<summary>
|
|
Gets the BaseElement from parent tag element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.EventsAttached">
|
|
<summary>
|
|
Gets or sets a value indicating whether events were attached to user control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.QuiteMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether the Quite mode state.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ControlBase.DefaultSize">
|
|
<summary>
|
|
Gets or sets the default size of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the ControlBase class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Windows.Forms.Control)">
|
|
<summary>
|
|
Initializes a new instance of the ControlBase class
|
|
</summary>
|
|
<param name="parent">Parent custom tag element.</param>
|
|
<param name="customControl">Custom control instance.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the ControlBase class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.DisposeControl">
|
|
<summary>
|
|
Disposes of control and releases all of its resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.SetLocation">
|
|
<summary>
|
|
Sets the location of the custom controls.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.InitializeControl">
|
|
<summary>
|
|
Creates an instance of the control and configures it.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.AttachEvents">
|
|
<summary>
|
|
Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.DetachEvents">
|
|
<summary>
|
|
Detaches events from the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.OnInitEndCallback">
|
|
<summary>
|
|
Raised when initialization has been finished.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises corresponding event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_DoubleClick(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises double click event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_MouseEnter(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises mouse enter event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_MouseMove(System.Object,System.Windows.Forms.MouseEventArgs)">
|
|
<summary>
|
|
Raises mouse move event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_MouseLeave(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises mouse leave event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_MouseDown(System.Object,System.Windows.Forms.MouseEventArgs)">
|
|
<summary>
|
|
Raises mouse down event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
|
|
<summary>
|
|
Raises key down event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_KeyUp(System.Object,System.Windows.Forms.KeyEventArgs)">
|
|
<summary>
|
|
Raises key up event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
|
|
<summary>
|
|
Raises key press event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_GotFocus(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises got focus event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_Leave(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises leave event on parent tag element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_TabIndexChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when tab index of the control has been changed.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.CustomControl_VisibleChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when visibility of the control has been changed.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.ParentElement_TabIndexChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when TabIndex property of the parent element has been changed.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.ParentElement_Paint(System.Object,Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs)">
|
|
<summary>
|
|
Raised when parent element is painting.
|
|
This method is used for custom controls printing.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.Parent_BeforeDisposing(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised before the parent element is disposed.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.SetTabOrder">
|
|
<summary>
|
|
Sets the tab order in the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ControlBase.SetControl(System.Windows.Forms.Control)">
|
|
<summary>
|
|
Sets the control instance.
|
|
</summary>
|
|
<param name="control">Control object.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase">
|
|
<summary>
|
|
Implements base functionality of custom controls wrapper classes.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.m_bLocationSet">
|
|
<summary>
|
|
Indicates whether the location was set at first.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the CustomControlBase class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Windows.Forms.Control)">
|
|
<summary>
|
|
Initializes a new instance of the CustomControlBase class
|
|
</summary>
|
|
<param name="parent">Parent custom tag element.</param>
|
|
<param name="customControl">Custom control instance.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the CustomControlBase class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.InitializeControl">
|
|
<summary>
|
|
Overridden. Creates an instance of the control and configures it.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.SetLocation">
|
|
<summary>
|
|
Overridden. Sets the location of the custom controls.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.Parent_LocationCalculated(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when the location of the parent element has been calculated.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.Block_LocationChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when location of parent block changes.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.Parent_SizeCalculated(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised after parent element size is calculated.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.Parent_GotFocus(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised after parent element has got focus.
|
|
</summary>
|
|
<param name="sender">Sender of event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.AttachEvents">
|
|
<summary>
|
|
Attaches event handlers to the parent element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CustomControlBase.DetachEvents">
|
|
<summary>
|
|
Detaches all events.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl">
|
|
<summary>
|
|
Class that is responsible for custom controls in the document.
|
|
It allows users to create controls from an HTML document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the Tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.DEF_ASM_NAME">
|
|
<summary>
|
|
Attribute name for assembly loading.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.DEF_CLASS_NAME">
|
|
<summary>
|
|
Attribute name for class loading.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.m_controlType">
|
|
<summary>
|
|
Type of custom control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.m_control">
|
|
<summary>
|
|
Custom control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the CUSTOMElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the CUSTOMElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.InitializeElement">
|
|
<summary>
|
|
Overridden. Initialization of the object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.Control_PreRenderDocument(System.Object,Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs)">
|
|
<summary>
|
|
Handles pre-render events of the control.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.LoadAssembly">
|
|
<summary>
|
|
Loads the assembly.
|
|
</summary>
|
|
<returns>Assembly containing custom control if loaded; otherwise NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.SearchInLoaded(System.String)">
|
|
<summary>
|
|
Searches the specified assembly in the loaded current domain assemblies.
|
|
</summary>
|
|
<param name="name">Name of the assembly.</param>
|
|
<returns>Assembly if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.LoadAssemblyFromFullName(System.String)">
|
|
<summary>
|
|
Loads the assembly from full name of assembly.
|
|
</summary>
|
|
<param name="name">Full name of the assembly.</param>
|
|
<returns>Loaded assembly or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.LoadAssemblyFromFileName(System.String)">
|
|
<summary>
|
|
Loads the assembly from the path to the assembly.
|
|
</summary>
|
|
<param name="path">Path to the assembly.</param>
|
|
<returns>Loaded assembly or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.LoadAssemblyFromPartialName(System.String)">
|
|
<summary>
|
|
Loads the assembly from partial name of the assembly.
|
|
</summary>
|
|
<param name="name">Partial name of the assembly.</param>
|
|
<returns>Loaded assembly or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.CreateInstance(System.Reflection.Assembly)">
|
|
<summary>
|
|
Creates an instance of the control.
|
|
</summary>
|
|
<param name="asm">Assembly containing type of custom control.</param>
|
|
<returns>Created control or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.InitializeControl(System.Windows.Forms.Control)">
|
|
<summary>
|
|
Sets all properties to the custom control.
|
|
</summary>
|
|
<param name="control">Custom control instance.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.GetProperty(System.String)">
|
|
<summary>
|
|
Retrieves property info from custom control type.
|
|
</summary>
|
|
<param name="name">Name of the property.</param>
|
|
<returns>Property info object or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CUSTOMElementImpl.GetAssemblyName(System.Reflection.Assembly)">
|
|
<summary>
|
|
Returns short name of the assembly.
|
|
</summary>
|
|
<param name="asm">Assembly object.</param>
|
|
<returns>Short name of the assembly.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl">
|
|
<summary>
|
|
Class that is responsible for <DIV> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the DIVElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the DIVElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DIVElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.EMElementImpl">
|
|
<summary>
|
|
Class that is responsible for <EM> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.EMElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EMElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the EMElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl">
|
|
<summary>
|
|
Class that is responsible for <FONT> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Own format for font. (Sets the size of the font if needed).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the FONTElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the FONTElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.GetFormatFromAttributes">
|
|
<summary>
|
|
Overridden. Creates the format from attributes.
|
|
</summary>
|
|
<returns>Format created from attributes.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FONTElementImpl.SetOwnFormat">
|
|
<summary>
|
|
Sets own format to the element. Sets the size of font if needed.
|
|
</summary>
|
|
<returns>Resulting format.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl">
|
|
<summary>
|
|
Class that is responsible for <FORM> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the FORMElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the FORMElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FORMElementImpl.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H1> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.DEF_INCREASOR">
|
|
<summary>
|
|
Indent from top and bottom for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Own format for font. (Sets the size of the font if needed).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the H1ElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H1ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the H1ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="tagName">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.SetOwnFormat">
|
|
<summary>
|
|
Sets own format to the element.
|
|
</summary>
|
|
<returns>Resulting format.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H1ElementImpl.GetFontSize">
|
|
<summary>
|
|
Returns the default font size for element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H2ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H2> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H2ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H2ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H2ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H2ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H2ElementImpl.GetFontSize">
|
|
<summary>
|
|
Overridden. Returns the default font size for the element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H3ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H3> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H3ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H3ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H3ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H3ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H3ElementImpl.GetFontSize">
|
|
<summary>
|
|
Overridden. Returns the default font size for the element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H4ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H4> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H4ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H4ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H4ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H4ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H4ElementImpl.GetFontSize">
|
|
<summary>
|
|
Overridden. Returns the default font size for the element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H5ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H3> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H5ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H5ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H5ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H5ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H5ElementImpl.GetFontSize">
|
|
<summary>
|
|
Overridden. Returns the default font size for the element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.H6ElementImpl">
|
|
<summary>
|
|
Class that is responsible for <H6> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H6ElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.H6ElementImpl.DEF_SIZE">
|
|
<summary>
|
|
Default size of the element's font.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H6ElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the H6ElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.H6ElementImpl.GetFontSize">
|
|
<summary>
|
|
Overridden. Returns the default font size for the element.
|
|
</summary>
|
|
<returns>Size of the font.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl">
|
|
<summary>
|
|
Class that is responsible for <HEAD> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.IsVisible">
|
|
<summary>
|
|
Overridden. Gets or sets the visibility of the attribute
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the HEADElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HEADElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HEADElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl">
|
|
<summary>
|
|
Class that is responsible for <HR> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DEF_HEIGHT">
|
|
<summary>
|
|
Height of the element by default.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DEF_INCREASOR">
|
|
<summary>
|
|
Space between the element end block which it contains.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DEF_INDENT">
|
|
<summary>
|
|
Indent from left and right for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Gets or sets the format which defines special visualization for this element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the HRElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HRElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates its position and size.
|
|
</summary>
|
|
<param name="curPosition">Global current position.</param>
|
|
<param name="bounds">Bounds for this element.</param>
|
|
<returns>Array of blocks for this element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">>Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.CalculateOwnSize">
|
|
<summary>
|
|
Calculates the size of the current element by its size attribute or style attribute.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.ShiftToNewLine">
|
|
<summary>
|
|
Shifts the current position to a new line.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.AddEmptySpace(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Point)">
|
|
<summary>
|
|
Adds empty spaces between lines and other elements.
|
|
</summary>
|
|
<param name="holder">Block Instance</param>
|
|
<param name="location">Point instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.GetColor">
|
|
<summary>
|
|
Returns the color of the element.
|
|
</summary>
|
|
<returns>Color of the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HRElementImpl.GetWidth">
|
|
<summary>
|
|
Returns the width of the element.
|
|
</summary>
|
|
<returns>Width of the element.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl">
|
|
<summary>
|
|
Class implements the base logic of attributes which is a part of the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.DEF_NAME_CHECK">
|
|
<summary>
|
|
Checks the name on validity.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.m_parent">
|
|
<summary>
|
|
Parent element of the current attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.m_bRuntime">
|
|
<summary>
|
|
Storage of IsRuntimeAttribute property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.m_attribute">
|
|
<summary>
|
|
XML storage in parent XML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.Name">
|
|
<summary>
|
|
Gets the unique name of the attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.Value">
|
|
<summary>
|
|
Gets or sets the current value of the attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.Parent">
|
|
<summary>
|
|
Gets the parent of the current attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.IsRuntimeAttribute">
|
|
<summary>
|
|
Gets or sets a value indicating whether the property is run-time and must not be serialized to text.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.ParentStorage">
|
|
<summary>
|
|
Gets the XML storage in parent XML element.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.ValueChanged">
|
|
<summary>
|
|
Event raised after attribute value changes. To event handlers,
|
|
send new and old value of attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLAttributeImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLAttributeImpl class
|
|
</summary>
|
|
<param name="parent">Parent of current attribute.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLAttributeImpl class
|
|
</summary>
|
|
<param name="parent">Parent of the current attribute.</param>
|
|
<param name="name">Name of the current attribute.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLAttributeImpl class
|
|
</summary>
|
|
<param name="parent">Parent of attribute.</param>
|
|
<param name="name">Name of attribute.</param>
|
|
<param name="value">Value of attribute.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.RaiseValueChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the ValueChanged event.
|
|
</summary>
|
|
<param name="args">New and old value of property.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.OnValueChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
On value property change, this method is called by property set part.
|
|
This is best place for own logic.
|
|
</summary>
|
|
<param name="args">Old and new value of property.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.ToString">
|
|
<summary>
|
|
Overridden. Returns the attribute as string suitable for HTML.
|
|
</summary>
|
|
<returns>Attribute string suitable for direct use in HTML as part of
|
|
element declaration.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.IsNameGood(System.String)">
|
|
<summary>
|
|
Indicates whether the name of the attribute is good for HTML.
|
|
</summary>
|
|
<param name="name">Name of the attribute.</param>
|
|
<returns>True if name is good.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.AttachAttribute(System.String)">
|
|
<summary>
|
|
Attaches attribute to the XML of the parent object.
|
|
</summary>
|
|
<param name="attributeName">Name of the attribute.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLAttributeImpl.DetachAttribute">
|
|
<summary>
|
|
Detaches attribute from the parent object XML.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl">
|
|
<summary>
|
|
Class that is responsible for <HTML> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the HTMLElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element.
|
|
</summary>
|
|
<param name="e">PaintEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseClickEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Click event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseDoubleClickEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Double Click event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseMouseMoveEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Move Event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseMouseEnterEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Enter event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseMouseLeaveEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Leave event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseMouseDownEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Move Down event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseKeyDownEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Down event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseKeyUpEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Up event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLElementImpl.RaiseKeyPressEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Press event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl">
|
|
<summary>
|
|
This class must be inherited by the developer for each element
|
|
where the HTML element supports events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.m_events">
|
|
<summary>
|
|
List of events which were attached to the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.m_strName">
|
|
<summary>
|
|
Unique name of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.m_parent">
|
|
<summary>
|
|
Parent of the current event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.m_bDisposed">
|
|
<summary>
|
|
Indicates whether the Dispose method was called.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.Name">
|
|
<summary>
|
|
Gets or sets the unique name of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.Parent">
|
|
<summary>
|
|
Gets or sets the parent element of the current event.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.NameChanged">
|
|
<summary>
|
|
Utility event. Helps developer to catch any changes of class property.
|
|
Name value.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.ParentChanged">
|
|
<summary>
|
|
Utility event. Helps developer to catch any changes of class property.
|
|
Parent value.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLEventImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLEventImpl class
|
|
</summary>
|
|
<param name="parent">Parent of the event.</param>
|
|
<param name="name">Name of the event.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.Dispose">
|
|
<summary>
|
|
On dispose, detaches all events from the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the HTMLEventImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.RaiseNameChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises NameChanged event when property value changes.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.RaiseParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises ParentChanged event when property value changes.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.OnNameChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Called by property set part on value change. This is best
|
|
place for custom logic.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.OnParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Called by property set part on value change. This is best
|
|
place for custom logic.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.AttachEvent(System.EventHandler)">
|
|
<summary>
|
|
Attaches user method to the current event.
|
|
</summary>
|
|
<param name="handler">User delegate on method which must catch the event raising.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.DetachEvent(System.EventHandler)">
|
|
<summary>
|
|
Detaches user method to the current event.
|
|
</summary>
|
|
<param name="handler">User delegate on method which must catch the event raising.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.AttachEventInternal(System.EventHandler)">
|
|
<summary>
|
|
Attaches user event.
|
|
</summary>
|
|
<param name="handler">Delegate to the user code.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.DetachEventInternal(System.EventHandler)">
|
|
<summary>
|
|
Detaches user event.
|
|
</summary>
|
|
<param name="handler">Delegate to the user code.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLEventImpl.RaiseEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises event for user.
|
|
</summary>
|
|
<param name="e">Reference on input parameters.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IElementImpl">
|
|
<summary>
|
|
Class that is responsible for <I> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the Tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Returns the format with specific options for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the IElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the IElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the IElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element</param>
|
|
<param name="tagName">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl">
|
|
<summary>
|
|
Class that is responsible for <IMG> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DEF_IMAGE">
|
|
<summary>
|
|
Default image when needed image is not accessed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DEF_LEFT_TOP_BORDER_WIDTH">
|
|
<summary>
|
|
Width of the border around the default image from the left / top.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DEF_RIGHT_BOTTOM_BORDER_WIDTH">
|
|
<summary>
|
|
Width of the border around the default image from the right / bottom.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds type of reaction on attribute changing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_defImageStream">
|
|
<summary>
|
|
Represents the stream of the default image.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_defImage">
|
|
<summary>
|
|
Default image.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_bitmap">
|
|
<summary>
|
|
Bitmap of the image.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_imgStream">
|
|
<summary>
|
|
Stream which represents the image data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_ImageFound">
|
|
<summary>
|
|
Indicates whether the source of the image was found and loaded.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_drawAltText">
|
|
<summary>
|
|
Indicates whether to draw alt text.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_imgFrameChanged">
|
|
<summary>
|
|
Event handler. Raised when active frame of the image has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_bIsAnimating">
|
|
<summary>
|
|
Indicates whether the image is currently animating.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.m_bImageChanged">
|
|
<summary>
|
|
Indicates whether image was changed at runtime.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.Image">
|
|
<summary>
|
|
Gets or sets the bitmap of the image which represents this element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.Reaction">
|
|
<summary>
|
|
Overridden. Returns an hashtable that contains the names of attributes as keys and type of reaction of its
|
|
changing as value.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.FrameChanged">
|
|
<summary>
|
|
Gets the event handler pointing on the method that gets invoked when the active frame
|
|
was changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.NoImage">
|
|
<summary>
|
|
Raised when image with specified src could not be found.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.ImageChanged">
|
|
<summary>
|
|
Utility event. Raised on Bottom property change.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.Default">
|
|
<summary>
|
|
Gets the default image.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DefaultStream">
|
|
<summary>
|
|
Gets the stream which represents the default image.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the IMGElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the IMGElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes bitmap and closes stream.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DisposeImg">
|
|
<summary>
|
|
Disposes image.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.OnNoImage(Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs)">
|
|
<summary>
|
|
Raises NoImage event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the position for the child elements.
|
|
</summary>
|
|
<param name="curPosition">Current global position.</param>
|
|
<param name="bounds">Bounds for this element.</param>
|
|
<returns>Array of blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an image element.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.ReCalculateDocument">
|
|
<summary>
|
|
Overridden. Raised when attribute src has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.ShowToolTip">
|
|
<summary>
|
|
Overriden. Shows the ToolTip on the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.InitializeElement">
|
|
<summary>
|
|
Initializes element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.RaiseNoImage(Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs)">
|
|
<summary>
|
|
Raises the NoImage event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.OnImageChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises ImageChanged event if Image property value is changed.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.LoadImage">
|
|
<summary>
|
|
Loads the bitmap to the bitmap member.
|
|
</summary>
|
|
<returns>bool instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.GetBitmap">
|
|
<summary>
|
|
Returns the bitmap instance from the attributes of the image.
|
|
</summary>
|
|
<returns>Bitmap or NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.LoadSizeFormAttributes">
|
|
<summary>
|
|
If element has special size attributes, get it.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.SetType">
|
|
<summary>
|
|
Sets the type of the element corresponding to its size attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.SetSizeFromAltText">
|
|
<summary>
|
|
Sets the size of the element corresponding to the text of the ALT attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DrawAltText(System.Drawing.Graphics,System.Drawing.Point)">
|
|
<summary>
|
|
Draws an alt text.
|
|
</summary>
|
|
<param name="g">Graphic context.</param>
|
|
<param name="start">Start position of the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.GetImageForDrawing">
|
|
<summary>
|
|
Returns an image for drawing.
|
|
</summary>
|
|
<returns>Image will be painted.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.DrawDefImageBounds(System.Drawing.Graphics,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Draws the bounds around the default image.
|
|
</summary>
|
|
<param name="g">Graphics context.</param>
|
|
<param name="descRect">Destination rectangle.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.OnFrameChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when the active frame of image was changed.
|
|
</summary>
|
|
<param name="source">Sender of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.StartAnimation">
|
|
<summary>
|
|
Starts the animation if needed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.StopAnimation">
|
|
<summary>
|
|
Stops the animation of the image.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IMGElementImpl.UpdateActiveFrame(System.Drawing.Image)">
|
|
<summary>
|
|
Updates the active frame if is animating.
|
|
</summary>
|
|
<param name="image">Image instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl">
|
|
<summary>
|
|
Class that is responsible for <INPUT> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.m_userControlImpl">
|
|
<summary>
|
|
Control class instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.m_mergeEvents">
|
|
<summary>
|
|
Array of merged events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds reaction that occur when attributes change.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.UserControl">
|
|
<summary>
|
|
Gets or sets the user control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.Reaction">
|
|
<summary>
|
|
Returns an hashtable that contain names of attributes as keys and type of reaction that occur
|
|
when attributes change as values.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.OnCreateEvent">
|
|
<summary>
|
|
Raised when we need a special event which is not created yet.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.ReDefineReactions">
|
|
<summary>
|
|
Redefines some attribute reaction of control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the INPUTElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the INPUTElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.MergeSupportedEvents(System.String[])">
|
|
<summary>
|
|
Merges standard and special events.
|
|
</summary>
|
|
<param name="events">Array of the events.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.InfillFromXMLElement(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl,System.Xml.XmlElement)">
|
|
<summary>
|
|
Overridden. Detects the type of control and creates the corresponding control.
|
|
</summary>
|
|
<param name="control">Control object.</param>
|
|
<param name="element">XML element of object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.Clone">
|
|
<summary>
|
|
Overridden. Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.INPUTElementImpl.GetBgColorForControl">
|
|
<summary>
|
|
Returns the background color for the control element from parents.
|
|
</summary>
|
|
<returns>Color instance</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl">
|
|
<summary>
|
|
Class that is responsible for <LI> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds type of reaction on attribute changing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.m_marker">
|
|
<summary>
|
|
Marker of the item in the list.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.Reaction">
|
|
<summary>
|
|
Overridden. Returns an hashtable that contains the names of attributes as keys and type of reaction of its
|
|
changing as value.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.Marker">
|
|
<summary>
|
|
Gets the string marker for the item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.StyleOrdered">
|
|
<summary>
|
|
Gets a value indicating whether the element has ordered style.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.ReDefineReactions">
|
|
<summary>
|
|
Redefines some attribute reaction of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the LIElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the LIElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Implements special features for this element.
|
|
</summary>
|
|
<param name="curPosition">Global current position.</param>
|
|
<param name="bounds">Bounds for this element.</param>
|
|
<returns>Array of blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.GetMarker">
|
|
<summary>
|
|
Returns the marker for drawing.
|
|
</summary>
|
|
<returns>Marker for indicating the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LIElementImpl.GetListParent">
|
|
<summary>
|
|
Returns the List parent for the node if found; Null otherwise.
|
|
</summary>
|
|
<returns>List parent for the node if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl">
|
|
<summary>
|
|
Class that is responsible for <LINK> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds the type of reaction that occur when attributes change.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.m_createdFormats">
|
|
<summary>
|
|
The array of formats created from this element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.Syncfusion#Windows#Forms#HTMLUI#IElementHasCss#CreatedFormats">
|
|
<summary>
|
|
Gets or sets the array of formats created from this element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.Reaction">
|
|
<summary>
|
|
Overridden. Returns an hashtable that contains names of attributes as keys and types of reaction that
|
|
occur on change in attributes as values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.IsVisible">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element is visible or not
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.ReDefineReactions">
|
|
<summary>
|
|
Redefines some attribute reaction of control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the LinkElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the LinkElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.OnDispose">
|
|
<summary>
|
|
Disposes the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkElementImpl.GetCssStream">
|
|
<summary>
|
|
Overriden. Returns the CSS data of this element in stream.
|
|
</summary>
|
|
<returns>Token stream by link URL.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.OLElementImpl">
|
|
<summary>
|
|
Class that is responsible for <OL> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.OLElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.OLElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the OLElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.OLElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the OLElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PElementImpl">
|
|
<summary>
|
|
Class that is responsible for <P> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the PElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the PElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PElementImpl.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl">
|
|
<summary>
|
|
Class that is responsible for <PRE> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Gets or sets the format which defines special visualization for this element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the PREElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the PREElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.CalculateTextPos(Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Overridden. Calculates the position of the text elements.
|
|
</summary>
|
|
<param name="node">Text object which contains text.</param>
|
|
<param name="block">Current block object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.InFillTextSizeHash">
|
|
<summary>
|
|
Overridden. Calculates the size of text elements.
|
|
</summary>
|
|
<returns>Max size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">Current position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.GetRealMaxWidth(System.String,System.Int32,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Overridden. Calculates the width of the element.
|
|
</summary>
|
|
<param name="str">String text of the element.</param>
|
|
<param name="max">Max width.</param>
|
|
<param name="format">Format object.</param>
|
|
<returns>Max width of the text.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.BreakOnTwoLines(Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
If new line symbol exists in text, breaks apart text into two parts.
|
|
</summary>
|
|
<param name="node">Text node object.</param>
|
|
<param name="block">Current block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PREElementImpl.DeleteStartEndNewLines">
|
|
<summary>
|
|
Removes the start and end new line symbols in the tag element.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl">
|
|
<summary>
|
|
Class which represents the radio button in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.DEF_SIZE">
|
|
<summary>
|
|
Width and height of the radio button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.m_radio">
|
|
<summary>
|
|
Instance of the radio button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.SupportedEvents">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the RADIOControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the RADIOControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the RADIOControlImpl class
|
|
</summary>
|
|
<param name="parent">IUserControlHolder instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.Radio_Click(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when user clicks on RadioButton control element.
|
|
</summary>
|
|
<param name="sender">Event sender</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes a project.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.AttachEvents">
|
|
<summary>
|
|
Overridden. Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.DetachEvents">
|
|
<summary>
|
|
Overridden. Detaches events from the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.ConfigureState">
|
|
<summary>
|
|
Configures the text on the button.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.ConfigureBgColor">
|
|
<summary>
|
|
Sets the background color of the radio control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.CreateInstance">
|
|
<summary>
|
|
Creates an instance of the RadioButtonEx class.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.GetBtnsInSameGroup(System.String)">
|
|
<summary>
|
|
Returns a list of all RadioButtons which have the same group name.
|
|
</summary>
|
|
<param name="groupName">Name of the group.</param>
|
|
<returns>Array of controls in the group.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.GetContainer(Syncfusion.Windows.Forms.HTMLUI.Implementation.Utility.RadioButtonEx)">
|
|
<summary>
|
|
Returns the parent for the control but only BODY or FORM element.
|
|
</summary>
|
|
<param name="button">Button control.</param>
|
|
<returns>Parent container of the control.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.RADIOControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Creates a special event of the control.
|
|
</summary>
|
|
<param name="sender">Event sender</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl">
|
|
<summary>
|
|
Class that is responsible for <SCRIPT> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.m_eventHash">
|
|
<summary>
|
|
Hold all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of supported events (here is NULL).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.IsVisible">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element is visible or not
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.Path">
|
|
<summary>
|
|
Gets the path to the script file.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the SCRIPTElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the SCRIPTElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.GetScriptCode">
|
|
<summary>
|
|
Overloaded. Returns the script code of the element.
|
|
</summary>
|
|
<returns>Script code.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.GetScriptCode(System.Boolean@)">
|
|
<summary>
|
|
Returns the script code of the element.
|
|
</summary>
|
|
<param name="isFromFile">Returns value which indicates if code has been extracted from external file.</param>
|
|
<returns>Script code.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event name.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SCRIPTElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl">
|
|
<summary>
|
|
Class which represents the list in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.DEF_OPTION_XPATH">
|
|
<summary>
|
|
XPath for retrieving items for select control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.DEF_EMPTY_WIDTH">
|
|
<summary>
|
|
Width of the empty list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.DEF_VALUE">
|
|
<summary>
|
|
Default name of the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.SupportedEvents">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.m_list">
|
|
<summary>
|
|
List box or combo box control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the SELECTControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the SELECTControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the SELECTControlImpl class
|
|
</summary>
|
|
<param name="parent">IUserControlHolder instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.SetEnabledState">
|
|
<summary>
|
|
Overridden. Sets the Enabled state for control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.CalculateWidth">
|
|
<summary>
|
|
Calculates width of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.CalculateHeight">
|
|
<summary>
|
|
Calculates height of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.ConfigureSize">
|
|
<summary>
|
|
Configures the width of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.AttachEvents">
|
|
<summary>
|
|
Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.DetachEvents">
|
|
<summary>
|
|
Detaches events from the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.CreateInstance">
|
|
<summary>
|
|
Creates combo box or list box of control depending on attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.CreateListBox">
|
|
<summary>
|
|
Creates list box control.
|
|
</summary>
|
|
<returns>List box control.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.CreateComboBox">
|
|
<summary>
|
|
Creates combo box control.
|
|
</summary>
|
|
<returns>Combo box control.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.ConfigureContent">
|
|
<summary>
|
|
Adds items to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.GetItems">
|
|
<summary>
|
|
Returns the list of items.
|
|
</summary>
|
|
<returns>List of items.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.SelectItems">
|
|
<summary>
|
|
Selects the corresponding items in list.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.GetSelectedIndexes">
|
|
<summary>
|
|
Returns the indices of items which must be selected.
|
|
</summary>
|
|
<returns>Indices of items which must be selected.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Creates the special event of the control.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl">
|
|
<summary>
|
|
Class that is responsible for <SELECT> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.m_userControlImpl">
|
|
<summary>
|
|
Control class instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.m_mergeEvents">
|
|
<summary>
|
|
Array of merged events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds the type of reactions that occur when attributes change.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.UserControl">
|
|
<summary>
|
|
Overridden. Returns the user control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.Reaction">
|
|
<summary>
|
|
Returns an hashtable that contains names of attributes as keys and type of reaction that occur
|
|
when attributes change as value.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.OnCreateEvent">
|
|
<summary>
|
|
Delegate. Raised when we need to create special event for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.ReDefineReactions">
|
|
<summary>
|
|
Redefines some attribute reaction of control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the SELECTElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the SELECTElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.InfillFromXMLElement(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl,System.Xml.XmlElement)">
|
|
<summary>
|
|
Overridden. Detects the type of control and creates the corresponding control.
|
|
</summary>
|
|
<param name="control">Control object.</param>
|
|
<param name="element">XML element of the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SELECTElementImpl.MergeSupportedEvents(System.String[])">
|
|
<summary>
|
|
Merges standard and special events.
|
|
</summary>
|
|
<param name="events">Array of events.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl">
|
|
<summary>
|
|
Class that is responsible for <SPAN> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns the array of supported events (here is NULL).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the SPANElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the SPANElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SPANElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.STRONGElementImpl">
|
|
<summary>
|
|
Class that is responsible for <STRONG> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.STRONGElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.STRONGElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the STRONGElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl">
|
|
<summary>
|
|
Class that is responsible for <STYLE> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.DEF_COMMENTS">
|
|
<summary>
|
|
Pattern for comments.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.m_regDelComments">
|
|
<summary>
|
|
For deleting possible commas after values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.m_createdFormats">
|
|
<summary>
|
|
The array of formats created from this element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.Syncfusion#Windows#Forms#HTMLUI#IElementHasCss#CreatedFormats">
|
|
<summary>
|
|
Gets or sets the array of formats created from this element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.IsVisible">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element is visible or not
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the StyleElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the StyleElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.OnDispose">
|
|
<summary>
|
|
Disposes the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.GetCssStream">
|
|
<summary>
|
|
Returns the stream of inner data of the tag element. Data represents CSS.
|
|
</summary>
|
|
<returns>Stream data by the URL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overidden. Returns the CSS data of this element in stream.
|
|
</summary>
|
|
<returns>Size of the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.StyleElementImpl.ReparseInnerHTML(System.String)">
|
|
<summary>
|
|
Overriden. Reparses content when inner html was changed.
|
|
</summary>
|
|
<param name="htmlToParse">New inner html of the element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SUBElementImpl">
|
|
<summary>
|
|
Class that is responsible for <B> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SUBElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUBElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the SUBElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUBElementImpl.DrawText(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Overridden. Draws text in the element.
|
|
</summary>
|
|
<param name="g">Graphics context.</param>
|
|
<param name="rect">Rectangle for output.</param>
|
|
<param name="text">Text object.</param>
|
|
<param name="parent">Parent block for the text.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl">
|
|
<summary>
|
|
Class that is responsible for <B> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.DEF_FONT_SIZE_MULTIPLIER">
|
|
<summary>
|
|
Multiplier for calculating size of the font.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.SupportedEvents">
|
|
<summary>
|
|
Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the SUPElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the SUPElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the SUPElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
<param name="tagName">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.SUPElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl">
|
|
<summary>
|
|
Class that is responsible for <TABLE> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_numRows">
|
|
<summary>
|
|
Number of rows in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_numCols">
|
|
<summary>
|
|
Number of columns in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_cells">
|
|
<summary>
|
|
Holds all cells of the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_bFixedColumns">
|
|
<summary>
|
|
Contains an array of values which indicates if column has fixed width.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_resizableCount">
|
|
<summary>
|
|
Number of columns which are resizable.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxColspanInColumn">
|
|
<summary>
|
|
Holds maximum colspan number in the column.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxRowspanInRow">
|
|
<summary>
|
|
Holds maximum rowspan number in the row.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxWidth">
|
|
<summary>
|
|
Maximum width of the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxHeight">
|
|
<summary>
|
|
Maximum height of the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_firstCellsInColumn">
|
|
<summary>
|
|
Array which holds first cells in each column with equal colspan number.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_firstCellsInRow">
|
|
<summary>
|
|
Array which holds first cells in each row with equal rowspan number.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxColspanInTable">
|
|
<summary>
|
|
Maximum colspan number of the cell in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_maxRowspanInTable">
|
|
<summary>
|
|
Maximum rowspan number of the cell in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.m_bFirstRender">
|
|
<summary>
|
|
Indicates whether it is the first time position is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Gets or sets the format which is special for tag A (Hyperlink).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.RowsCount">
|
|
<summary>
|
|
Gets the number of rows in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ColsCount">
|
|
<summary>
|
|
Gets the number of columns in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.FirstRender">
|
|
<summary>
|
|
Gets a value indicating whether positioning is being calculated for the first time.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.Matrix">
|
|
<summary>
|
|
Gets the matrix of cells in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TABLEElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the TABLEElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ChildrenChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Raised when the collection of children has changed.
|
|
Here we have to update our data about table dimensions.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the positions in the table.
|
|
</summary>
|
|
<param name="curPosition">Current global position.</param>
|
|
<param name="bounds">Max bounds for this element.</param>
|
|
<returns>Array of blocks of this element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InitializeElement">
|
|
<summary>
|
|
Overridden. Initializes an element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ReConvertInnerHTML(System.Xml.XmlElement,Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Overridden. Re-converts all children to tree of objects.
|
|
</summary>
|
|
<param name="xmlCurrent">Current XML element.</param>
|
|
<param name="elementParent">Parent HTML element object.</param>
|
|
<returns>Created HTML element object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InitializeData">
|
|
<summary>
|
|
Initializes all data needed for table rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateItemsCount">
|
|
<summary>
|
|
Calculates the number of rows and columns in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateSizeOfTRChildren">
|
|
<summary>
|
|
Calculates the sizes of all TR children and returns Size(MaxWidthOfTR, SumOfTRHeight).
|
|
</summary>
|
|
<returns>Size of children.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InfillMatrix">
|
|
<summary>
|
|
Infills two-dimensional matrix by cells of the table. (Makes model of the table.)
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.IsFreeCellInRow(System.Int32,System.Int32@)">
|
|
<summary>
|
|
Searches for empty cell in the matrix, in the current row starting from the specified j position.
|
|
</summary>
|
|
<param name="i">X coordinate of the cell.</param>
|
|
<param name="j">Y coordinate of the cell.</param>
|
|
<returns>True if free cell exists.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillCellByColspan(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl,System.Int32,System.Int32@)">
|
|
<summary>
|
|
Infills cells of matrix through all colspans of cell in the current row.
|
|
</summary>
|
|
<param name="cell">Cell object.</param>
|
|
<param name="i">X coordinate of the cell.</param>
|
|
<param name="j">Y coordinate of the cell.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillCellByRowspan(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl,System.Int32,System.Int32)">
|
|
<summary>
|
|
Infills cells of matrix through all rowspans of cell in the current column.
|
|
</summary>
|
|
<param name="cell">Cell object.</param>
|
|
<param name="i">X coordinate of the cell.</param>
|
|
<param name="j">Y coordinate of the cell.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ArrangeColumns">
|
|
<summary>
|
|
Arranges columns.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ArrangeRows">
|
|
<summary>
|
|
Arranges rows to equal height.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.RangeColumns">
|
|
<summary>
|
|
Resizes width of cells in the same columns.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetMaxTableHeight">
|
|
<summary>
|
|
Returns the maximum height the table can be.
|
|
</summary>
|
|
<returns>Height of the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ResizeColumns">
|
|
<summary>
|
|
If the content of the rows is greater than the maximum size of the table, then changes
|
|
the width of the cells in each column.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.IsColumnFixed(System.Collections.ArrayList)">
|
|
<summary>
|
|
Checks whether column is fixed size or not by width (width is set).
|
|
</summary>
|
|
<param name="column"> Column of the table.</param>
|
|
<returns>True if the column is fixed.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ResizeRows">
|
|
<summary>
|
|
Resizes rows (increases height) if height of the table defined is greater
|
|
than its inner content.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowWidth">
|
|
<summary>
|
|
Returns the width of the row (width of rows are the same).
|
|
</summary>
|
|
<returns>Gets width of the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowsHeight">
|
|
<summary>
|
|
Returns the height of the inner content in the table.
|
|
</summary>
|
|
<returns>Height of the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.WidthIsGood">
|
|
<summary>
|
|
Indicates whether the width of the row is less than the max width of the table.
|
|
</summary>
|
|
<returns>True if width of the table is less than max width.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetResizableColsCount">
|
|
<summary>
|
|
Returns the number of columns which are resizable.
|
|
</summary>
|
|
<returns>Number of columns which can resize themselves.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetResizableColumnsWidth">
|
|
<summary>
|
|
Returns the sum of width of all resizable columns.
|
|
</summary>
|
|
<returns>Width of columns which can resize themselves.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetMinWidthInColumn(System.Int32)">
|
|
<summary>
|
|
Returns the minimum width of the specified column.
|
|
</summary>
|
|
<param name="index">Index of column.</param>
|
|
<returns>Returns minimum width of column.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetColumnWidth(System.Int32)">
|
|
<summary>
|
|
Returns the width of the column with the specified index.
|
|
</summary>
|
|
<param name="index">Index of the column.</param>
|
|
<returns>Width of the column.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowHeight(System.Int32)">
|
|
<summary>
|
|
Returns the height of the specified row.
|
|
</summary>
|
|
<param name="index">Index of the row.</param>
|
|
<returns>Height of the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetChildRows">
|
|
<summary>
|
|
Returns the rows for this table.
|
|
</summary>
|
|
<returns>Rows for this table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.SetOwnFormat">
|
|
<summary>
|
|
Sets own format for table (attaches attribute background color to element).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillMaxColspanValues">
|
|
<summary>
|
|
Infills the array by maximum colspan in each column.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillMaxRowspanValues">
|
|
<summary>
|
|
Infills the array by maximum rowspan in each row.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetTableWidth">
|
|
<summary>
|
|
Returns the width of the table.
|
|
</summary>
|
|
<returns>Width of the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetTableHeight">
|
|
<summary>
|
|
Returns the height of the table.
|
|
</summary>
|
|
<returns>Height of the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillArrayByFirstColCells">
|
|
<summary>
|
|
Infills the array by first cells in each column with equal colspan number.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.InFillArrayByFirstRowCells">
|
|
<summary>
|
|
Infills the array by first cells in each row with equal rowspan number.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCellsInColumn(System.Int32,System.Int32,System.Drawing.Size@)">
|
|
<summary>
|
|
Returns a multidimensional array in current column. Returns only cells which are all inside current column.
|
|
If in the row at least one cell exceeds the column, no cells in this row will be added to the result.
|
|
</summary>
|
|
<param name="columnIndex">Start column index.</param>
|
|
<param name="colspan">Colspan number of the column.</param>
|
|
<param name="arDim">Maximum dimension of output array.</param>
|
|
<returns>Array of cells in order.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCellsInRow(System.Int32,System.Int32,System.Drawing.Size@)">
|
|
<summary>
|
|
Returns a multidimensional array in current row. Returns only cells which are all inside current row.
|
|
If in the row at least one cell exceeds row, no cells in this row will be added to the result.
|
|
</summary>
|
|
<param name="rowIndex">Start row index.</param>
|
|
<param name="rowspan">Rowspan number of the cell.</param>
|
|
<param name="arDim">Maximum dimension of output array.</param>
|
|
<returns>Array of cells in order.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCellsInColumnWithSameColspan(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl)">
|
|
<summary>
|
|
Returns an array of the cells in the same column with current cell
|
|
and with the same colspan number.
|
|
</summary>
|
|
<param name="cell">Current cell.</param>
|
|
<returns>Array of the cells.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCellsInRowWithSameRowspan(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl)">
|
|
<summary>
|
|
Returns an array of the cells in the same row with current cell
|
|
and with the same rowspan number.
|
|
</summary>
|
|
<param name="cell">Current cell.</param>
|
|
<returns>Array of the cells.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowInColumnWidth(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the width of the row in the specified column.
|
|
</summary>
|
|
<param name="column">Column value</param>
|
|
<param name="rowIndex">Index of the row in column.</param>
|
|
<param name="rowLength">Length of the row.</param>
|
|
<returns>Width of the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetColInRowHeight(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the height of the column in the specified row.
|
|
</summary>
|
|
<param name="row">Current row.</param>
|
|
<param name="colIndex">X index of column.</param>
|
|
<param name="colLength">Length of columns.</param>
|
|
<returns>Height of the column in the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCellInRowFromLeft(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Searches for the cell by the specified coordinates.If cell by those coordinates is empty,
|
|
searches at the left because cell at the left has colspan > 1.
|
|
</summary>
|
|
<param name="row">Matrix of the cells.</param>
|
|
<param name="rowIndex">Index of the row.</param>
|
|
<param name="colIndex">Index of the column.</param>
|
|
<returns>Cell if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.IsUpperCellInColumn(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Moves up on the column and searches the cells with big rowspan.
|
|
</summary>
|
|
<param name="row">Matrix of the cells.</param>
|
|
<param name="rowIndex">Index of the row.</param>
|
|
<param name="colIndex">Index of the column.</param>
|
|
<returns>True if cell in the top occupies defined place; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowInColumnMinWidth(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the min width of the row in the specified column.
|
|
</summary>
|
|
<param name="column">Column value</param>
|
|
<param name="rowIndex">Index of the row in column.</param>
|
|
<param name="rowLength">Length of the row.</param>
|
|
<returns>Min width of the row in column.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetColInRowMinHeight(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns the min height of the column in the specified row.
|
|
</summary>
|
|
<param name="row">Row value</param>
|
|
<param name="colIndex">Index of the column in the row.</param>
|
|
<param name="colLength">Length of the column.</param>
|
|
<returns>Min height of the column in the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateMaxTableWidth">
|
|
<summary>
|
|
Calculates the maximum width of the table.
|
|
</summary>
|
|
<returns>Max width of the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CalculateMaxTableHeight">
|
|
<summary>
|
|
Calculates the maximum height of the table.
|
|
</summary>
|
|
<returns>Max height of the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetResizableWidthOfTable(System.Boolean)">
|
|
<summary>
|
|
Returns the resizable width of the table.
|
|
</summary>
|
|
<param name="bReduceTable">bool value</param>
|
|
<returns>Width of resizable part of table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetResizableHeightOfTable">
|
|
<summary>
|
|
Returns the resizable height of the table.
|
|
</summary>
|
|
<returns>Height of resizable part of table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.SetTableSize">
|
|
<summary>
|
|
Sets the size of the table after arranging cells in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.SetRowsWidth">
|
|
<summary>
|
|
Fixes the width of all row elements in the table.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetColspanOfRow(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Calculates the colspan number for the row.
|
|
</summary>
|
|
<param name="column">Array of cells.</param>
|
|
<param name="rowIndex">Index of the row.</param>
|
|
<param name="rowLength">Length of the row.</param>
|
|
<returns>Colspan number for the row.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetRowspanOfColumn(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Int32)">
|
|
<summary>
|
|
Calculates the rowspan number for the column.
|
|
</summary>
|
|
<param name="row">Array of cells.</param>
|
|
<param name="colIndex">Index of the column.</param>
|
|
<param name="colLength">Length of the column.</param>
|
|
<returns>Rowspan number for the column.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetArrangedRowWidthForRow(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Collections.ArrayList,System.Int32)">
|
|
<summary>
|
|
Searches the width of the processed row for row with the same start
|
|
index by X and with same colspan value.
|
|
</summary>
|
|
<param name="column">Array of all cells.</param>
|
|
<param name="unprocessedRows">List of unprocessed rows.</param>
|
|
<param name="unprocessedColspan">Colspan of unprocessed current row.</param>
|
|
<returns>Width and MinWidth of the processed row if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetArrangedColHeightForColumn(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Collections.ArrayList,System.Int32)">
|
|
<summary>
|
|
Searches the height of the processed column for column height the same start
|
|
index by Y and height same rowspan value.
|
|
</summary>
|
|
<param name="row">Array of all cells.</param>
|
|
<param name="unprocessedCols">List of unprocessed columns.</param>
|
|
<param name="unprocessedRowspan">Rowspan of unprocessed current column.</param>
|
|
<returns>Height and MinHeight of the processed column if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.NonEmptyRow(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32)">
|
|
<summary>
|
|
Indicates whether the row is empty.
|
|
</summary>
|
|
<param name="column">Array of cells.</param>
|
|
<param name="rowIndex">Index of the row.</param>
|
|
<returns>True if row is not empty; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.NonEmptyColumn(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32)">
|
|
<summary>
|
|
Indicates whether the column is empty.
|
|
</summary>
|
|
<param name="row">Array of cells.</param>
|
|
<param name="colIndex">Index of the column.</param>
|
|
<returns>True if column is not empty; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetMaxColumnWidth(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Drawing.Size)">
|
|
<summary>
|
|
Calculates the maximum width and maximum min width for the column.
|
|
</summary>
|
|
<param name="column">Array of cells.</param>
|
|
<param name="dimension">Dimension of the array.</param>
|
|
<returns>Size struct, where Width - maximum width, Height - maximum min width.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetMaxRowHeight(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Drawing.Size)">
|
|
<summary>
|
|
Calculates the maximum height and maximum min height for the row.
|
|
</summary>
|
|
<param name="row">Array of cells.</param>
|
|
<param name="dimension">Dimension of the array.</param>
|
|
<returns>Size struct, where Width - maximum height, Height - maximum min height.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ArrangeRowInColumn(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Drawing.Size,System.Single,System.Single,System.Boolean)">
|
|
<summary>
|
|
Arranges the row inside column.
|
|
</summary>
|
|
<param name="column">Array of all cells in the column.</param>
|
|
<param name="rowIndex">Row index</param>
|
|
<param name="dimension">Dimension of the array.</param>
|
|
<param name="rowWidth">Current width of the row.</param>
|
|
<param name="maxWidth">Maximum width of the column.</param>
|
|
<param name="bIsMinWidth">If true - we arrange minimum width, if False - just width of the row.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.ArrangeColumnInRow(Syncfusion.Windows.Forms.HTMLUI.TDElementImpl[0:,0:],System.Int32,System.Drawing.Size,System.Single,System.Single,System.Boolean)">
|
|
<summary>
|
|
Arranges the column inside row.
|
|
</summary>
|
|
<param name="row">Array of all cells in the row.</param>
|
|
<param name="colIndex">Index of the column in the row.</param>
|
|
<param name="dimension">Dimension of the array.</param>
|
|
<param name="colHeight">Current height of the column.</param>
|
|
<param name="maxHeight">Maximum height of the column.</param>
|
|
<param name="bIsMinHeight">If true - we arrange minimum height, if False - just height of the row.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.SetCell(System.Int32,System.Int32,Syncfusion.Windows.Forms.HTMLUI.TDElementImpl)">
|
|
<summary>
|
|
Sets cell into the matrix of the cells.
|
|
</summary>
|
|
<param name="i">Index of the row.</param>
|
|
<param name="j">Index of the column.</param>
|
|
<param name="cell">Cell object.</param>
|
|
<returns>True - if cell added to the matrix, false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.GetCell(System.Int32,System.Int32)">
|
|
<summary>
|
|
Returns cell by its indices.
|
|
</summary>
|
|
<param name="i">Index of the row.</param>
|
|
<param name="j">Index of the column.</param>
|
|
<returns>Cell by its indices if found, null otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator">
|
|
<summary>
|
|
Class that allows movement by cells during table aligning.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_cells">
|
|
<summary>
|
|
Collection of cells.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_currentCell">
|
|
<summary>
|
|
Current cell returned.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_currentIndex">
|
|
<summary>
|
|
Current index during running through collection.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_usedCells">
|
|
<summary>
|
|
Indicates which cells were processed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_currentOrder">
|
|
<summary>
|
|
Order of the cells in the column / row of the table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.m_currentColspan">
|
|
<summary>
|
|
Colspan of the current cell.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.Current">
|
|
<summary>
|
|
Gets the current element in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.CurrentCell">
|
|
<summary>
|
|
Gets the current element in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.#ctor(System.Collections.ArrayList)">
|
|
<summary>
|
|
Initializes a new instance of the CellsEnumerator class
|
|
</summary>
|
|
<param name="cells">Collection of the cells.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.Reset">
|
|
<summary>
|
|
Sets the enumerator to its initial position, which is before the first element in the collection.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.MoveNext">
|
|
<summary>
|
|
Advances the enumerator to the next element of the collection.
|
|
</summary>
|
|
<returns>True if the enumerator was successfully advanced to the next element;
|
|
false if the enumerator has passed the end of the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.GetFirstUnusedCellIndex">
|
|
<summary>
|
|
Returns the first unused cell in the collection.
|
|
</summary>
|
|
<returns>Index of the unused cell if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.IsUsed(System.Int32)">
|
|
<summary>
|
|
Indicates whether the cell was used.
|
|
</summary>
|
|
<param name="cellIndex">Index of the cell.</param>
|
|
<returns>True if cell was used; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.GetMaxColspanCellInColumn(System.Int32,System.Int32,System.Int32@)">
|
|
<summary>
|
|
Searches for a cell ending by specified index by column with maximum colspan value.
|
|
</summary>
|
|
<param name="colEndIndex">Index of ending column.</param>
|
|
<param name="curColspan">Current colspan processing.</param>
|
|
<param name="cellIndex">Index of the cell</param>
|
|
<returns>Cell ending by specified index by column with maximum colspan
|
|
value if found; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TABLEElementImpl.CellsEnumerator.SetUsed(System.Int32)">
|
|
<summary>
|
|
Sets the cell as used.
|
|
</summary>
|
|
<param name="index">Index of the cell.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl">
|
|
<summary>
|
|
Class that is responsible for <TD> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_colspan">
|
|
<summary>
|
|
Number of colspan of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_rowspan">
|
|
<summary>
|
|
Number of rowspan of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_hOrder">
|
|
<summary>
|
|
Horizontal order of the cell in the row.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_vOrder">
|
|
<summary>
|
|
Vertical order of the cell in the column.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.m_table">
|
|
<summary>
|
|
Parent table for the cell element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.ColumnIndex">
|
|
<summary>
|
|
Gets the order of the cell in the row.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.RowIndex">
|
|
<summary>
|
|
Gets the order of the cell in the column.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.Colspan">
|
|
<summary>
|
|
Gets number of colspan in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.Rowspan">
|
|
<summary>
|
|
Gets the number of rowspan in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.Table">
|
|
<summary>
|
|
Gets or sets the parent table for this cell element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Gets or sets the format which is special for tag A (Hyperlink).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TDElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the TDElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the TDElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="tagName">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes all resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format to the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the position of the element.
|
|
</summary>
|
|
<param name="curPosition">Current position.</param>
|
|
<param name="bounds">Bounds for the element.</param>
|
|
<returns>Array of the blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.ProhibitSpaceAfter">
|
|
<summary>
|
|
Overridden. Sets the value indicating if trailing whitespace must be allowed after element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.SetDimensionAttributes">
|
|
<summary>
|
|
Searches for colspan and rowspan attributes and assigns them to variables.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.GetStyleFromParents(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Inherits from table, parent element's border and background color.
|
|
</summary>
|
|
<param name="format">HTMLFormat instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.GetParentTable">
|
|
<summary>
|
|
Returns parent table for this cell element.
|
|
</summary>
|
|
<returns>Parent table for this cell element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.GetParentRow">
|
|
<summary>
|
|
Returns parent row for this cell element.
|
|
</summary>
|
|
<returns>Parent row for this cell element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.SetOwnFormat">
|
|
<summary>
|
|
Sets own format (inherits background color and border from table and tr parent elements).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.GetUpperCell">
|
|
<summary>
|
|
Returns cell which is above current if it exists; Null otherwise.
|
|
</summary>
|
|
<returns>Cell which is above current if it exists; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.GetXFromLeftCells">
|
|
<summary>
|
|
Returns the X coordinate corresponding to cells which are at the left of the current cell.
|
|
If there are no cells at the left, it returns -1.
|
|
</summary>
|
|
<returns>X coordinate corresponding to cells which are at the left from current cell.
|
|
If there are no cells at the left; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TDElementImpl.SetIndex(System.Int32,System.Boolean)">
|
|
<summary>
|
|
Sets value of cell's index.
|
|
</summary>
|
|
<param name="index">Index value.</param>
|
|
<param name="bColumn">If true - sets ColumnIndex, otherwise - RowIndex.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl">
|
|
<summary>
|
|
Class which represents the text area in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.DEF_VALUE">
|
|
<summary>
|
|
Default name of the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.DEF_WIDTH">
|
|
<summary>
|
|
Default width of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.DEF_HEIGHT">
|
|
<summary>
|
|
Default height of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.SupportedEvents">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.m_textBox">
|
|
<summary>
|
|
Text box control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.TextChanged">
|
|
<summary>
|
|
Event which is raised when the text in the text box is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TEXTAREAControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the TEXTAREAControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the TEXTAREAControlImpl class
|
|
</summary>
|
|
<param name="parent">IUserControlHolder instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes a control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the text box control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.AttachEvents">
|
|
<summary>
|
|
Overridden. Attaches events to the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.DetachEvents">
|
|
<summary>
|
|
Overridden. Detaches events from the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.SetEnabledState">
|
|
<summary>
|
|
Overridden. Sets the Readonly state for the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.M_textBox_TextChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when the text in the text box is changed.
|
|
</summary>
|
|
<param name="sender">Event sender</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.RaiseTextChangedEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the text changed event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.ConfigureValue">
|
|
<summary>
|
|
Configures the value of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.ConfigureSizeByAttributes">
|
|
<summary>
|
|
Configures the width of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.ConfigureMaxLength">
|
|
<summary>
|
|
Configures the maxlength property of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Creates a new event for the element.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl">
|
|
<summary>
|
|
Class that is responsible for <TEXTAREA> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.m_userControlImpl">
|
|
<summary>
|
|
Control class instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.m_mergeEvents">
|
|
<summary>
|
|
Array of merged events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.m_reactionType">
|
|
<summary>
|
|
Holds the type of reactions that occur when attributes change.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.UserControl">
|
|
<summary>
|
|
Overridden. Gets or sets the user control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.Reaction">
|
|
<summary>
|
|
Overridden. Returns an hashtable that contains names of attributes as keys and type of reaction that
|
|
occur when attricutes change as values.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.OnCreateEvent">
|
|
<summary>
|
|
Delegate. Raised when there is need to create a new special event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.ReDefineReactions">
|
|
<summary>
|
|
Redefines an attribute reaction of control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TEXTAREAElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the TEXTAREAElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format to the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTAREAElementImpl.MergeSupportedEvents(System.String[])">
|
|
<summary>
|
|
Merges standard and special events.
|
|
</summary>
|
|
<param name="events">Array of events.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl">
|
|
<summary>
|
|
Class which represents the text box in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.DEF_VALUE">
|
|
<summary>
|
|
Default name of the button.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.DEF_EVENTS">
|
|
<summary>
|
|
Additional events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.m_textBox">
|
|
<summary>
|
|
Text box control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.m_bIsVisible">
|
|
<summary>
|
|
Indicates whether the control must be visible.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.m_bIsPassword">
|
|
<summary>
|
|
Indicates whether the element has password style.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.m_bPreventChar">
|
|
<summary>
|
|
Indicates whether the symbol should be written.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.TextChanged">
|
|
<summary>
|
|
Event which is raised when text in text box is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TEXTControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the TEXTControlImpl class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder,System.Boolean)">
|
|
<summary>
|
|
Initializes a new instance of the TEXTControlImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="isPassword">Indicates whether the control has password state.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder,System.Boolean,System.Boolean)">
|
|
<summary>
|
|
Initializes a new instance of the TEXTControlImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="isPassword">Indicates whether the control has password state.</param>
|
|
<param name="isVisible">Indicates whether the control is visible.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.InitializeControl">
|
|
<summary>
|
|
Overridden. Initializes a control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.DisposeControl">
|
|
<summary>
|
|
Overridden. Disposes control object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.ConfigureControl">
|
|
<summary>
|
|
Overridden. Configures the text box control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.AttachEvents">
|
|
<summary>
|
|
Overridden. Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.DetachEvents">
|
|
<summary>
|
|
Overridden. Detaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.SetEnabledState">
|
|
<summary>
|
|
Overridden. Sets the Readonly state for the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.HandleTextChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raised when text in text box is changed.
|
|
</summary>
|
|
<param name="sender">Event sender</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.KeyDown(System.Object,System.Windows.Forms.KeyEventArgs)">
|
|
<summary>
|
|
Raised when key was down.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.KeyPress(System.Object,System.Windows.Forms.KeyPressEventArgs)">
|
|
<summary>
|
|
Raised when key was pressed.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.RaiseTextChangedEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises text changed event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.ConfigureValue">
|
|
<summary>
|
|
Configures the value of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.ConfigureSizeByAttribute">
|
|
<summary>
|
|
Configures the width of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.ConfigureMaxLength">
|
|
<summary>
|
|
Configures the maxlength property of the text box.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TEXTControlImpl.Parent_OnCreateEvent(System.Object,Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs)">
|
|
<summary>
|
|
Creates the special event of the control.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.THElementImpl">
|
|
<summary>
|
|
Class that is responsible for <TH> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.THElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.THElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the THElementImpl class
|
|
</summary>
|
|
<param name="parent">IHTMLElement instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.THElementImpl.SetOwnFormat">
|
|
<summary>
|
|
Sets own format (inherits background color and border from table and tr parent elements).
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl">
|
|
<summary>
|
|
Class that is responsible for <TR> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.DEF_TD_XPATH">
|
|
<summary>
|
|
XPath for retrieving cells inside the row.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.DEF_TH_XPATH">
|
|
<summary>
|
|
XPath for retrieving cells inside the row.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.m_iCells">
|
|
<summary>
|
|
Quantity of TD tags in children.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.m_iVirtualCells">
|
|
<summary>
|
|
Quantity of cells together with colspan.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.m_table">
|
|
<summary>
|
|
Parent table for the cell element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CellsCount">
|
|
<summary>
|
|
Gets the real quantity of TD tags in children.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.VirtualCellsCount">
|
|
<summary>
|
|
Gets the quantity of cells including the Colspan settings.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.Table">
|
|
<summary>
|
|
Gets or sets the parent table for this cell element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the TRElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the TRElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.OnDispose">
|
|
<summary>
|
|
Overloaded. Disposes element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.ChildrenChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Raised when the collection of children has changed.
|
|
Here we have to update our data about row's dimensions.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the positions of the child element.
|
|
</summary>
|
|
<param name="curPosition">Current position.</param>
|
|
<param name="bounds">Bounds of the element.</param>
|
|
<returns>Array of blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.ReparseInnerHTML(System.String)">
|
|
<summary>
|
|
Overridden. Reparses the inner HTLML data of the element.
|
|
</summary>
|
|
<param name="htmlToParse">HTML code for parsing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculateCellsCounts(System.Xml.XmlElement)">
|
|
<summary>
|
|
Calculates the number of cells in the row.
|
|
</summary>
|
|
<param name="element">XML element for the object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves the current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.InitializeElement">
|
|
<summary>
|
|
Overridden. Initializes an element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalculateCellsCount(System.Xml.XmlElement,System.Xml.XmlNodeList)">
|
|
<summary>
|
|
Calculates the number of cells defined in the list of nodes.
|
|
</summary>
|
|
<param name="element">XML element of the object.</param>
|
|
<param name="elements">List of elements.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.CalulateCellsSizes">
|
|
<summary>
|
|
Calculates the size of all child cells and defines minWidth as sum of min width of each cell.
|
|
</summary>
|
|
<returns>Size of the cells.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.TRElementImpl.GetCells">
|
|
<summary>
|
|
Returns an array of cells in the row. Returns the TD and TH elements.
|
|
</summary>
|
|
<returns>Array of cells in the row.
|
|
Returns TD and TH elements.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.UElementImpl">
|
|
<summary>
|
|
Class that is responsible for <U> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.m_eventHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.OwnFormat">
|
|
<summary>
|
|
Overridden. Returns the format with specific options for element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the UElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the UElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ULElementImpl">
|
|
<summary>
|
|
Class that is responsible for <UL> Tag.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ULElementImpl.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ULElementImpl.DefaultStyle">
|
|
<summary>
|
|
Overridden. Returns the default item style in the list.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ULElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the ULElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ULElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Initializes a new instance of the ULElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl">
|
|
<summary>
|
|
Class that is responsible for UnknownElements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.m_eventHash">
|
|
<summary>
|
|
Hold all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.SupportedEvents">
|
|
<summary>
|
|
Overridden. Returns an array of supported events (here is NULL).
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.#cctor">
|
|
<summary>
|
|
Initializes static members of the UnknownElementImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the UnknownElementImpl class
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<param name="name">Name of the tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UnknownElementImpl.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of the element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory">
|
|
<summary>
|
|
Creates an instance of the class which represents Winform control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.BUTTON">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.SUBMIT">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.RESET">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.RADIO">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.CHECKBOX">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.TEXT">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.PASSWORD">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.HIDDEN">
|
|
<summary>
|
|
Name of the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the UserControlFactory class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlFactory.CreateUserControl(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Creates the corresponding Winforms control from the tag element.
|
|
</summary>
|
|
<param name="parent">Parent element.</param>
|
|
<returns>User control element.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl">
|
|
<summary>
|
|
Base class for standard controls in the HTML.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.m_bSetLocation">
|
|
<summary>
|
|
Indicates whether to set location to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.m_bNeedDispose">
|
|
<summary>
|
|
Indicates whether the custom control needs to be disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.Parent">
|
|
<summary>
|
|
Gets the parent tag element of the user control class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.DocumentUserControls">
|
|
<summary>
|
|
Gets the collection of control elements in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.LocationSet">
|
|
<summary>
|
|
Gets or sets a value indicating whether to set location.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.NeedDispose">
|
|
<summary>
|
|
Gets or sets a value indicating whether the control must be disposed.
|
|
</summary>
|
|
<remarks>Default value is True.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the UserControlImpl class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder)">
|
|
<summary>
|
|
Initializes a new instance of the UserControlImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.#ctor(Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder,System.Boolean)">
|
|
<summary>
|
|
Initializes a new instance of the UserControlImpl class
|
|
</summary>
|
|
<param name="parent">Parent element for this object.</param>
|
|
<param name="bInitialize">If True, raises InitializeControl method.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.DisposeControl">
|
|
<summary>
|
|
Overloaded. Disposes control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.SetLocation">
|
|
<summary>
|
|
Overridden. Sets the controls to the specified location of their elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.ConfigureControl">
|
|
<summary>
|
|
Configures the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.SetEnabledState">
|
|
<summary>
|
|
Sets the element's Enabled State.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.ConfigureFromFormat">
|
|
<summary>
|
|
Configures the control from the format of the parent object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.ConfigureSize">
|
|
<summary>
|
|
Resizes control if width or height were set.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.ConfigureBackColor">
|
|
<summary>
|
|
Sets the back color to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlImpl.CollectionChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs)">
|
|
<summary>
|
|
Handles adding / removing attributes of the element.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.RaiseEventHandler">
|
|
<summary>
|
|
RaiseEventHandler delegate
|
|
</summary>
|
|
<param name="e">EventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute">
|
|
<summary>
|
|
Attribute indicates that element event is available for user.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.m_event">
|
|
<summary>
|
|
Event of element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.m_strRaiserName">
|
|
<summary>
|
|
Name of the raiser method.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.m_method">
|
|
<summary>
|
|
Method for raising.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.RaiserName">
|
|
<summary>
|
|
Gets the name of the raiser method.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.RaiserMethod">
|
|
<summary>
|
|
Gets or sets the raiser method.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.Event">
|
|
<summary>
|
|
Gets or sets the event of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ElementEventAttribute class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementEventAttribute.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the ElementEventAttribute class
|
|
</summary>
|
|
<param name="raiser">a string value</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementTagAttribute">
|
|
<summary>
|
|
Attributes for TAG element classes, which are responsible for the corresponding HTML tags.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementTagAttribute.m_strTagName">
|
|
<summary>
|
|
Name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementTagAttribute.Name">
|
|
<summary>
|
|
Gets the name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementTagAttribute.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ElementTagAttribute class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementTagAttribute.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the ElementTagAttribute class
|
|
</summary>
|
|
<param name="name">Name of the tag.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute">
|
|
<summary>
|
|
Defines the type of control reaction on changing the attribute or format property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.m_attributeName">
|
|
<summary>
|
|
Name of the attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.m_reactType">
|
|
<summary>
|
|
Type of reaction on attribute changing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.Name">
|
|
<summary>
|
|
Gets the name of the attribute which has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.Reaction">
|
|
<summary>
|
|
Gets the type of the reaction on attribute changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ReactionTypeAttribute class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ReactionTypeAttribute.#ctor(System.String,Syncfusion.Windows.Forms.HTMLUI.ReactType)">
|
|
<summary>
|
|
Initializes a new instance of the ReactionTypeAttribute class
|
|
</summary>
|
|
<param name="name">Name of the attribute.</param>
|
|
<param name="reaction">Type of reaction on attribute changing.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.AttributeHolderAttribute">
|
|
<summary>
|
|
Defines the holder of attributes which can raise events when its changing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeHolderAttribute.m_typeName">
|
|
<summary>
|
|
Type of attribute holder.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.AttributeHolderAttribute.TypeName">
|
|
<summary>
|
|
Gets the type of attribute holder.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributeHolderAttribute.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the AttributeHolderAttribute class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.AttributeHolderAttribute.#ctor(System.Type)">
|
|
<summary>
|
|
Initializes a new instance of the AttributeHolderAttribute class
|
|
</summary>
|
|
<param name="typeName">Type of the holder of attributes.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BaseElement">
|
|
<summary>
|
|
Base class for all HTML elements. All HTML tag elements must inherit
|
|
this class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_COMPARER">
|
|
<summary>
|
|
Default case insensitive comparer for internal use.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_REG_WORDS">
|
|
<summary>
|
|
Pattern for dividing string by words with regular expressions.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_REG_NUMBERS">
|
|
<summary>
|
|
Pattern for numbers.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_REGEX_OPTIONS">
|
|
<summary>
|
|
Options for regular expressions.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_RUNTIME_LOCATION">
|
|
<summary>
|
|
Attribute name for location run-time property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_RUNTIME_SIZE">
|
|
<summary>
|
|
Attribute name for size run-time property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_RUNTIME_VISIBLE">
|
|
<summary>
|
|
Attribute name for visible run-time property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_RUNTIME">
|
|
<summary>
|
|
List of default run-time attributes similar to all HTML elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_SELECT_INDEX">
|
|
<summary>
|
|
Index of default selected symbol in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DEF_TAB_STOP_VALUE">
|
|
<summary>
|
|
Value of tab stop in the text.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement._stringFormat">
|
|
<summary>
|
|
String format for text measuring and output.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement._regWords">
|
|
<summary>
|
|
RegEx object for dividing string by words.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement._regNumbers">
|
|
<summary>
|
|
RegEx object for retrieving numbers from string.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement._graphics">
|
|
<summary>
|
|
Graphics object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Graphics">
|
|
<summary>
|
|
Gets an object used for measurement of text elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_reaction">
|
|
<summary>
|
|
Holds reaction on attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_arrSupEvents">
|
|
<summary>
|
|
Utility array which holds sorted list of supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_arrRuntimeAttr">
|
|
<summary>
|
|
Sorted list of run-time attributes supported by element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_parent">
|
|
<summary>
|
|
Parent of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_format">
|
|
<summary>
|
|
Format of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_key">
|
|
<summary>
|
|
AccessKey storage.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_children">
|
|
<summary>
|
|
Collection of children. Collection created on demand.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_events">
|
|
<summary>
|
|
Collection of events. Collection created on demand.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_attributes">
|
|
<summary>
|
|
Collection of attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_unique">
|
|
<summary>
|
|
Unique identifier of the element in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_strName">
|
|
<summary>
|
|
Name of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_storage">
|
|
<summary>
|
|
Member holds all information about current element in XML format
|
|
compatible with XHTML.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_isResizable">
|
|
<summary>
|
|
Indicates whether element resizable.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_ownFormat">
|
|
<summary>
|
|
Format for special visibility of the element by default.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_size">
|
|
<summary>
|
|
Holds max size of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_textSizeHash">
|
|
<summary>
|
|
Hash which contains size of each XML text in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_blocks">
|
|
<summary>
|
|
Array of the blocks which represent a single line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_control">
|
|
<summary>
|
|
Instance of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_location">
|
|
<summary>
|
|
Represents location of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_curBlock">
|
|
<summary>
|
|
Represents line in the element. Needed for inserting children.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_curPos">
|
|
<summary>
|
|
Indicates where current position is.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bounds">
|
|
<summary>
|
|
Bounds for this element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_isBlockStructure">
|
|
<summary>
|
|
Indicates whether element has rectangle structure or not.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_isPostponed">
|
|
<summary>
|
|
Indicates whether element must be postponed in new line (div, ...).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_oldCursor">
|
|
<summary>
|
|
Cursor before mouse enters on element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_elementType">
|
|
<summary>
|
|
Type of the element (block, inline, etc).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_skipWhitespaces">
|
|
<summary>
|
|
Indicates whether we must skip whitespaces in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_mainBlock">
|
|
<summary>
|
|
Instance of the main block of the element if it has block structure.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_minWidth">
|
|
<summary>
|
|
Minimum width of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_minHeight">
|
|
<summary>
|
|
Minimum height of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bInTable">
|
|
<summary>
|
|
Indicates whether element is inside table.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bDisposed">
|
|
<summary>
|
|
Indicates whether we invoked the Dispose method.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bIsVisible">
|
|
<summary>
|
|
Indicates whether the element is visible.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_indentSpace">
|
|
<summary>
|
|
Indents space around the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_document">
|
|
<summary>
|
|
Document holder instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_textMinWidth">
|
|
<summary>
|
|
Width of the longest word in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bSkipEvents">
|
|
<summary>
|
|
Indicates whether to skip raised event.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bSkipWidth">
|
|
<summary>
|
|
Indicates whether to skip the width of this element when getting width from parent.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bDefaultFocusing">
|
|
<summary>
|
|
Indicates whether element processes default focusing algorithm.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.m_bSpaceProhibited">
|
|
<summary>
|
|
Indicating whether whitespace after element is prohibited.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Parent">
|
|
<summary>
|
|
Gets or sets the parent of the current HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.AccessKey">
|
|
<summary>
|
|
Gets or sets the Fast access key to the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Attributes">
|
|
<summary>
|
|
Gets the collection of attributes in the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Children">
|
|
<summary>
|
|
Gets the collection of the element's children.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Events">
|
|
<summary>
|
|
Gets the collection of events supported by the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.HasChildren">
|
|
<summary>
|
|
Gets a value indicating whether the HTML element has children.
|
|
</summary>
|
|
<remarks>
|
|
The check does not create internal children collection thus optimizing memory
|
|
usage.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.HasEvents">
|
|
<summary>
|
|
Gets a value indicating whether the HTML element has events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Format">
|
|
<summary>
|
|
Gets or sets the format of the current element needed for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ID">
|
|
<summary>
|
|
Gets or sets the unique identifier for the HTML element in the HTML elements objects tree. This
|
|
id is specified by the user.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.UniqueID">
|
|
<summary>
|
|
Gets or sets the unique id of the element. Control guarantees that this id is
|
|
always unique for the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InnerHTML">
|
|
<summary>
|
|
Gets or sets in text, the inner part of the element. Inner part includes the children of
|
|
the current element. On change of inner part, HTML parser must change if there is need for
|
|
tree of children. On inner HTML property change, it will lose all attached
|
|
events. After change, you must attach events again.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OuterHTML">
|
|
<summary>
|
|
Gets the HTML text including inner and current element text; also the current element is
|
|
added into the output.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Name">
|
|
<summary>
|
|
Gets the name of the tag.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the value of the element with the specified attribute name.
|
|
</summary>
|
|
<param name="attributeName">String Attribute</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.TabIndex">
|
|
<summary>
|
|
Gets or sets the tab index for the HTML element.
|
|
</summary>
|
|
<remarks>
|
|
Objects with a positive TabIndex are selected in increasing order and in source order to resolve duplicates.
|
|
Objects with an TabIndex of zero are selected in source order.
|
|
Objects with a negative TabIndex are omitted from the tabbing order.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Location">
|
|
<summary>
|
|
Gets or sets the real location of elements after rendering in control client coordinates.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.X">
|
|
<summary>
|
|
Gets or sets the X coordinate of the element location.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Y">
|
|
<summary>
|
|
Gets or sets the Y coordinate of the element location.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Size">
|
|
<summary>
|
|
Gets or sets the real size of the element after rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Width">
|
|
<summary>
|
|
Gets or sets the width of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Height">
|
|
<summary>
|
|
Gets or sets the height of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsVisible">
|
|
<summary>
|
|
Gets or sets a value indicating whether the current element is visible to the user.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsResizable">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element is resizable.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether format is in quiet mode, skip event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Control">
|
|
<summary>
|
|
Gets an instance of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Focused">
|
|
<summary>
|
|
Gets a value indicating whether the element has input focus.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Text">
|
|
<summary>
|
|
Gets the text inside the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SelectedText">
|
|
<summary>
|
|
Gets the selected text inside the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Storage">
|
|
<summary>
|
|
Gets the XML element that represents the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OwnFormat">
|
|
<summary>
|
|
Gets the format for special visibility of the element by default.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Blocks">
|
|
<summary>
|
|
Gets the storage of the block's current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CurrentPosition">
|
|
<summary>
|
|
Gets or sets the current position inside the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Bounds">
|
|
<summary>
|
|
Gets or sets the bounds for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsBlock">
|
|
<summary>
|
|
Gets a value indicating whether the element has rectangular form (for instance: div) or fixed width element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsPostponed">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element must be postponed to a new line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SpaceProhibited">
|
|
<summary>
|
|
Gets or sets a value indicating whether whitespace after the element must be prohibited.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Type">
|
|
<summary>
|
|
Gets or sets the type of the element structure (Inline, block, etc).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SkipWhiteSpaces">
|
|
<summary>
|
|
Gets or sets a value indicating whether to skip all whitespaces in the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MainBlock">
|
|
<summary>
|
|
Gets or sets the main block for the element if it has block type.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CurrentBlock">
|
|
<summary>
|
|
Gets or sets the current block of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MinWidth">
|
|
<summary>
|
|
Gets or sets the minimum width of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MinHeight">
|
|
<summary>
|
|
Gets or sets the minimum height of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InsideTable">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element is inside the table.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsDisposed">
|
|
<summary>
|
|
Gets a value indicating whether the element is disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsAttributeWidth">
|
|
<summary>
|
|
Gets a value indicating whether the element has width attribute.
|
|
</summary>
|
|
<returns>True if width attribute is in the element.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsAttributeHeight">
|
|
<summary>
|
|
Gets a value indicating whether the element has height attribute.
|
|
</summary>
|
|
<returns>True if element has height attribute.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsStyleWidth">
|
|
<summary>
|
|
Gets a value indicating whether the element has CSS width attribute.
|
|
</summary>
|
|
<returns>True if element has style attribute.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsStyleHeight">
|
|
<summary>
|
|
Gets a value indicating whether the element has CSS height attribute.
|
|
</summary>
|
|
<returns>True if element has height in style attribute.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SkipWidth">
|
|
<summary>
|
|
Gets or sets a value indicating whether to skip the width of this element when getting width from parent.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IndentSpace">
|
|
<summary>
|
|
Gets the indent values around the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Document">
|
|
<summary>
|
|
Gets or sets the document holder for this tag element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Reaction">
|
|
<summary>
|
|
Gets the hashtable of names of attributes as keys and type of reaction on its
|
|
changing as values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsCDATA">
|
|
<summary>
|
|
Gets a value indicating whether the element is CDATA element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FocusDefault">
|
|
<summary>
|
|
Gets or sets a value indicating whether the element processes focus in the default way.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RuntimeAttributeChanged">
|
|
<summary>
|
|
Event which is raised when run-time attribute has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ParentChanged">
|
|
<summary>
|
|
Utility event. Raised when parent property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.AccessKeyChanged">
|
|
<summary>
|
|
Utility event. Raised when AccessKey property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.UniqueIDChanged">
|
|
<summary>
|
|
Utility event. Raised when UniqueID property changes.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InnerHTMLChanged">
|
|
<summary>
|
|
Utility event. Raised when InnerHTML property changes.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FormatChanged">
|
|
<summary>
|
|
Utility event. Raised when Format property changes.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.BeforeStyleCalculated">
|
|
<summary>
|
|
Event. Raised before the CSS style of the element (Format) is merged.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Paint">
|
|
<summary>
|
|
Event. Raised before the element or its part is painted.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SizeCalculated">
|
|
<summary>
|
|
Event. Raised when the size of the element is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.LocationCalculated">
|
|
<summary>
|
|
Event. Raised when the location of the element is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Click">
|
|
<summary>
|
|
Event. Raised when the mouse is clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DoubleClick">
|
|
<summary>
|
|
Event. Raises when the mouse double clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MouseMove">
|
|
<summary>
|
|
Event. Raised when the mouse moves.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MouseEnter">
|
|
<summary>
|
|
Event. Raised when the mouse enters.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MouseLeave">
|
|
<summary>
|
|
Event. Raised when the mouse leaves.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MouseDown">
|
|
<summary>
|
|
Event. Raised when the mouse button is pressed down.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.KeyDown">
|
|
<summary>
|
|
Event. Raised when Key Down.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.KeyUp">
|
|
<summary>
|
|
Event. Raised when Key Up.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.KeyPress">
|
|
<summary>
|
|
Event. Raised when key is pressed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GotFocus">
|
|
<summary>
|
|
Event. Raised when the element gets focus.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Leave">
|
|
<summary>
|
|
Event. Raises when the element has lost focus.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.TabIndexChanged">
|
|
<summary>
|
|
Event. Raised when the TabIndex property value has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.BaseElement.QuietModeChanged">
|
|
<summary>
|
|
Delegate. Raised when quiet mode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BaseElement.BeforeDisposing">
|
|
<summary>
|
|
Event. Raised before the element is disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FillEventsInfo(System.Type,System.Collections.Hashtable@)">
|
|
<summary>
|
|
Method according to metadata information with specified user type and an hash table of
|
|
name-to-EventInfo data will return an array of supported event names.
|
|
</summary>
|
|
<param name="type">Type of information which must be used for infill.</param>
|
|
<param name="events">Hashtable with name-to-EventInfo data.</param>
|
|
<returns>String array of supported events.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FillAttributesInfo">
|
|
<summary>
|
|
Infills hash by attribute names and their reaction to changing types.
|
|
</summary>
|
|
<returns>Collection of reactions to attributes changing.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FillAttributes(Syncfusion.Windows.Forms.HTMLUI.ReactionCollection,System.Type)">
|
|
<summary>
|
|
Infills simple attributes of the element.
|
|
</summary>
|
|
<param name="collection">Collection which holds information.</param>
|
|
<param name="type">Type of attributes holder.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SelectGraphics(System.Drawing.Graphics)">
|
|
<summary>
|
|
Assigns the specified graphics object for document elements text calculation.
|
|
</summary>
|
|
<param name="g">New graphics context.</param>
|
|
<returns>Old graphics object used by elements.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.#cctor">
|
|
<summary>
|
|
Initializes static members of the BaseElement class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the BaseElement class from being created.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the BaseElement class
|
|
</summary>
|
|
<param name="parent">Parent of the element.</param>
|
|
<param name="name">Name of the element tag.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String,Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the BaseElement class
|
|
</summary>
|
|
<param name="parent">Parent element for element.</param>
|
|
<param name="name">Name of the tag.</param>
|
|
<param name="document">Document instance.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Initializes a new instance of the BaseElement class
|
|
</summary>
|
|
<param name="control">Control object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the BaseElement class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Dispose">
|
|
<summary>
|
|
Disposes all resources and invokes this method in all child elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnDispose">
|
|
<summary>
|
|
Method must be overridden by inheritors if it has some additional
|
|
resources to dispose.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DisposeChildren">
|
|
<summary>
|
|
Disposes all child elements.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InitializeCollections">
|
|
<summary>
|
|
Initializes all collections and variables.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.BeginUpdate">
|
|
<summary>
|
|
Disables event raising by element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.EndUpdate">
|
|
<summary>
|
|
Enables event raising by element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Focus">
|
|
<summary>
|
|
Sets input focus to the element.
|
|
</summary>
|
|
<returns>True if the input focus request was successful; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ApplyFormat(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Applies the specified format to the element.
|
|
</summary>
|
|
<param name="format">Format to be attached to the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseRuntimeAttributeChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the RuntimeAttributeChanged event.
|
|
</summary>
|
|
<param name="name">Name of the attribute.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the ParentChanged event on parent property value change.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseAccessKeyChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the AccesssKeysChange event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseUniqueIDChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the UniqueIDChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseInnerHTMLChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the InnerHTMLChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseFormatChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the FormatChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseBeforeStyleCalculated(Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs)">
|
|
<summary>
|
|
Raises the BeforeStyleCalculated event.
|
|
</summary>
|
|
<param name="args">PreStyleCalculatedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseSizeCalculated(System.EventArgs)">
|
|
<summary>
|
|
Raises the SizeCalculated event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseLocationCalculated(System.EventArgs)">
|
|
<summary>
|
|
Raises the LocationCalculated event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseOnPaint(Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs)">
|
|
<summary>
|
|
Raises the OnPaint event.
|
|
</summary>
|
|
<param name="args">Paint arguments.</param>
|
|
<returns>True if someone is subscribed on this event; otherwise False.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseBubblingEvent(System.Delegate,System.String,System.EventArgs,System.Boolean)">
|
|
<summary>
|
|
Raises events on inherited elements.
|
|
</summary>
|
|
<param name="evnt">Event delegate.</param>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
<param name="bBubble">Indicates whether to bubble event to the top.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseBubblingEvent(System.Delegate,System.String,System.EventArgs)">
|
|
<summary>
|
|
Raises events on inherited elements.
|
|
</summary>
|
|
<param name="evnt">Event delegate.</param>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseClickEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Click event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseDoubleClickEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Double Click event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseMouseMoveEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Move event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseMouseEnterEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Enter event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseMouseLeaveEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Leave event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseMouseDownEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Mouse Move Down event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseKeyDownEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Down event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseKeyUpEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Up event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseKeyPressEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Key Press event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseGotFocusEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the GotFocus event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseLeaveEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the Leave event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseTabIndexChangedEvent(System.EventArgs)">
|
|
<summary>
|
|
Raises the TabIndexChanged event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseQuietModeChangedEvent">
|
|
<summary>
|
|
Raises the Quite Mode Changed event when mode changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RaiseBeforeDisposing(System.EventArgs)">
|
|
<summary>
|
|
Raises the BeforeDisposing event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.LeaveFocus">
|
|
<summary>
|
|
Raises the Leave Focus event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SupportedEvents">
|
|
<summary>
|
|
Gets the list of events supported by the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Returns an instance of the event class with the specified name. Name is previously checked
|
|
if it is supported or not.
|
|
</summary>
|
|
<param name="name">Name of the event. Case insensitive.</param>
|
|
<returns>Instance of the event class.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateSizeInternal">
|
|
<summary>
|
|
Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateFormatInternal">
|
|
<summary>
|
|
Calculates the format of the element from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculatePositionInternal">
|
|
<summary>
|
|
Calculates the element's position for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RuntimeAttributes">
|
|
<summary>
|
|
Gets a list of attributes which is known to the element as
|
|
run-time properties.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CreateEvent(System.String)">
|
|
<summary>
|
|
Creates an instance of the event class which knows how to attach
|
|
user delegates to the element internal event.
|
|
</summary>
|
|
<param name="name">Name of the event. Case insensitive.</param>
|
|
<returns>NULL if event is not supported; instance of the event class otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnRuntimeAttributeChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises RuntimeAttributeChanged event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnParentChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Called by parent property set part. This is best place for
|
|
any logic which must control parent property changes (for inheritors).
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnAccessKeyChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Called when AccessKey property changes. This is the best
|
|
place for custom logic.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnUniqueIDChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Called when UniqueID property is changed. This is the best place for
|
|
custom logic.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnInnerHTMLChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
When InnerHTML property changes, this method will be called in the
|
|
ReparseInnerHTML class method, which makes all others work for you.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnFormatChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises the FormatChanged event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnBeforeStyleCalculated(Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs)">
|
|
<summary>
|
|
Raises the BeforeStyleCalculated event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnSizeCalculated(System.EventArgs)">
|
|
<summary>
|
|
Raises the SizeCalculated event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnLocationCalculated(System.EventArgs)">
|
|
<summary>
|
|
Raises the LocationCalculated event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnPaint(Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs)">
|
|
<summary>
|
|
Raises the Paint event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
<returns>True if someone is subscribed on this event; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnQuietModeChanged">
|
|
<summary>
|
|
Raised when QuietMode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnBeforeDisposing(System.EventArgs)">
|
|
<summary>
|
|
Raises the BeforeDisposing event.
|
|
</summary>
|
|
<param name="args">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateInnerHTML">
|
|
<summary>
|
|
Builds the string which represents InnerHTML of the current element.
|
|
</summary>
|
|
<returns>Inner XML content.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReparseInnerHTML(System.String)">
|
|
<summary>
|
|
When InnerHTML changes, this method code reparses the InnerHTML string and
|
|
builds a new sub-elements tree.
|
|
</summary>
|
|
<param name="htmlToParse">Here we put HTML which must be first converted to XHTML and
|
|
then set as InnerXML of the current storage.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReConvertInnerHTML(System.Xml.XmlElement,Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Reconverts all children to tree of objects.
|
|
</summary>
|
|
<param name="xmlCurrent">Current XML element.</param>
|
|
<param name="elementParent">Parent HTML element object.</param>
|
|
<returns>Created HTML element object.</returns>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ElementOpenPart">
|
|
<summary>
|
|
Gets the declaration of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ElementAttributesPart">
|
|
<summary>
|
|
Gets the declaration of attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ElementClosePart">
|
|
<summary>
|
|
Gets the close part of the HTML element tag.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InfillFromXMLElement(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl,System.Xml.XmlElement)">
|
|
<summary>
|
|
Converts from XML element to our own elements.
|
|
</summary>
|
|
<param name="control">HTMLUI control</param>
|
|
<param name="element">XmlElement instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MeasureString(System.String,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.Int32)">
|
|
<summary>
|
|
Overloaded. Calculates the size of the rectangle which is needed to output the string text.
|
|
</summary>
|
|
<param name="str">String for measuring.</param>
|
|
<param name="format">Format object.</param>
|
|
<param name="maxLength">Max length for the string.</param>
|
|
<returns>Size for this text.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MeasureString(System.String,System.Drawing.Font)">
|
|
<summary>
|
|
Calculates the size of rectangle which is needed to output the string text.
|
|
</summary>
|
|
<param name="str">String to be measured.</param>
|
|
<param name="font">Font object.</param>
|
|
<returns>Size for this text.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MeasureString(System.String,System.Drawing.Font,System.Int32)">
|
|
<summary>
|
|
Calculates the size of rectangle which is needed to output the string text.
|
|
</summary>
|
|
<param name="str">String to be measured.</param>
|
|
<param name="font">Font object.</param>
|
|
<param name="maxLength">Max length of the text.</param>
|
|
<returns>Size for this text.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetRealMaxWidth(System.String,System.Int32,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Returns the real max size of the string.
|
|
</summary>
|
|
<param name="str">String text.</param>
|
|
<param name="max">Max width.</param>
|
|
<param name="format">Format object.</param>
|
|
<returns>Real max width for the text.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Changes its parent current position.Needed if element makes space before itself.
|
|
</summary>
|
|
<param name="currentPos">Global current position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Changes its parent current position. Needed if element makes space after itself.
|
|
</summary>
|
|
<param name="currentPos">Global current position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InitializeElement">
|
|
<summary>
|
|
Virtual method for initialization of the element. It is invoked after element creating.
|
|
By overriding this method, element can initialize its special properties.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.FocusElementInternal">
|
|
<summary>
|
|
Focuses the element.
|
|
</summary>
|
|
<returns>True if the input focus request was successful; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetParentForEvent(System.String)">
|
|
<summary>
|
|
Returns the parent element which supports the specified event.
|
|
</summary>
|
|
<param name="eventName">Name of the event.</param>
|
|
<returns>Parent element for the event.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsEventSupported(System.String)">
|
|
<summary>
|
|
Indicates whether the specified name belongs to the list of supported events.
|
|
</summary>
|
|
<param name="name">Name which must be checked. Case insensitive.</param>
|
|
<returns>True if event is supported; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsAttributeRuntime(System.String)">
|
|
<summary>
|
|
Indicates whether the specified name of the attribute belongs to list of run-time attributes.
|
|
</summary>
|
|
<param name="name">Name which must be checked. Case insensitive.</param>
|
|
<returns>True if attribute with specified name is a run-time attribute;
|
|
false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetElementLevel(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the element level in the current document.
|
|
</summary>
|
|
<param name="element">Element whose level is needed.</param>
|
|
<returns>Level of element in the document tree.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateFormat">
|
|
<summary>
|
|
Calculates the format of elements from an array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculatePosition">
|
|
<summary>
|
|
Calculates the position of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetArray(System.Collections.Hashtable)">
|
|
<summary>
|
|
Returns an array of formats by its Unique ID.
|
|
</summary>
|
|
<param name="formatsHash">Hash of formats.</param>
|
|
<returns>Array of formats by UniqueID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetOwnFormat(System.Collections.ArrayList,System.Collections.Hashtable)">
|
|
<summary>
|
|
Inserts own format into the format array.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
<param name="formatsHash">Hashtable of formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DefaultCalculateFormatInternal">
|
|
<summary>
|
|
Calculates the format of the element from array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetFirstFormat(System.Collections.ArrayList)">
|
|
<summary>
|
|
Inserts the first format in the collection.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ShowToolTip">
|
|
<summary>
|
|
Shows ToolTip on the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.HideToolTip">
|
|
<summary>
|
|
Hides ToolTip on the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetWidthFromParent">
|
|
<summary>
|
|
Returns the width of the first nearest parent which has a block structure (IsBlock == True).
|
|
</summary>
|
|
<returns>Width according to parent width.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetHeightFromParent">
|
|
<summary>
|
|
Returns the height of the first nearest parent which has a block structure (IsBlock == True).
|
|
</summary>
|
|
<returns>Height of the element according to height of parent.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetInnerWidthFromParent">
|
|
<summary>
|
|
Returns the inner width of the first nearest parent which has a block structure (IsBlock == True).
|
|
</summary>
|
|
<returns>Width according to parent width.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetInnerHeightFromParent">
|
|
<summary>
|
|
Returns the height of the first nearest parent which has a block structure (IsBlock == True).
|
|
</summary>
|
|
<returns>Height of the element according to height of parent.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MakeTopIndent(System.Int32)">
|
|
<summary>
|
|
Makes indent above the element.
|
|
</summary>
|
|
<param name="height">Height of block height.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MakeBottomIndent(System.Int32)">
|
|
<summary>
|
|
Makes indent below the element.
|
|
</summary>
|
|
<param name="height">Height value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetFormatFromAttributes">
|
|
<summary>
|
|
If element has attributes, attaches it to the formats.
|
|
</summary>
|
|
<returns>HTMLUIFormat object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SyncTabStopCollection(System.Int32)">
|
|
<summary>
|
|
Adds / removes element from TabStop collection depending on
|
|
TabStop value assigned.
|
|
</summary>
|
|
<param name="tabIndex">TabIndex of element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetFormat(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Sets the format to the element.
|
|
</summary>
|
|
<param name="format">HTMLUIFormat instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetBlockParent">
|
|
<summary>
|
|
Searches the block parent element for the current element.
|
|
</summary>
|
|
<returns>Block parent for element if it exists; Null otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetInheritedFormat">
|
|
<summary>
|
|
Returns cloned format with inherited options.
|
|
</summary>
|
|
<returns>Cloned format with inherited options.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateSize">
|
|
<summary>
|
|
Calculates the size of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DefGetSize">
|
|
<summary>
|
|
Calculates the size of the element without border and spacing values.
|
|
</summary>
|
|
<returns>Size of the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DefGetSizeInTable">
|
|
<summary>
|
|
Calculates the size of the element without border and spacing values.
|
|
Element is inside table.
|
|
</summary>
|
|
<returns>Size of element in the table.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DefGetSizeWithAttributes">
|
|
<summary>
|
|
Calculates the size of the element with borders, spaces, etc.
|
|
</summary>
|
|
<returns>Size of element with borders, etc.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DefaultCalculateSizeInternal">
|
|
<summary>
|
|
Calculates the max size of the element by default (with borders, paddings, etc.).
|
|
</summary>
|
|
<returns>Default max size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InFillTextSizeHash">
|
|
<summary>
|
|
Overloaded. Infills hash with each text block of the element as key
|
|
and the size of the block as value.
|
|
</summary>
|
|
<returns>Size of the max text in the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InFillTextSizeHash(System.Xml.XmlNode,System.Int32)">
|
|
<summary>
|
|
Infills hash with each text block of the element as key
|
|
and the size of the block as value. Maximum length is defined.
|
|
</summary>
|
|
<param name="text">XmlNode instance</param>
|
|
<param name="maxLength">Maximum length</param>
|
|
<returns>Size of the max text in the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetWidthValue(Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx@)">
|
|
<summary>
|
|
Returns the value of the width attribute of the element.
|
|
</summary>
|
|
<param name="widthType">Width value</param>
|
|
<returns>Width of the element if successful; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetHeightValue(Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx@)">
|
|
<summary>
|
|
Returns the value of the height attribute of the element.
|
|
</summary>
|
|
<param name="heightType">Height value</param>
|
|
<returns>Height of the element if successful; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetFinalSizeInternal(System.Drawing.Size)">
|
|
<summary>
|
|
Compares max size of the child elements with own attributes
|
|
in style, attribute width and height parameters with width and height attributes
|
|
of the element.
|
|
</summary>
|
|
<param name="testSize">Size for checking and comparing.</param>
|
|
<returns>Final size after comparing.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetElementStyle">
|
|
<summary>
|
|
Sets the element's style to FixedSize if width or height attributes have been defined.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetMaxWidth">
|
|
<summary>
|
|
Returns the width of the area in which an element can be drawn.
|
|
</summary>
|
|
<returns>Width of the area in which an element can be drawn.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetWidthType">
|
|
<summary>
|
|
Returns the type of the width CSS attribute.
|
|
</summary>
|
|
<returns>Type of the width CSS attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetHeightType">
|
|
<summary>
|
|
Returns the type of the height CSS attribute.
|
|
</summary>
|
|
<returns>Type of the height CSS attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetResizableWidth">
|
|
<summary>
|
|
Returns the width of the element if its size depends on parent's size.
|
|
</summary>
|
|
<returns>Width of the element if its size depends on parent's size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetResizableHeight">
|
|
<summary>
|
|
Returns the height of the element if its size depends on parent's size.
|
|
</summary>
|
|
<returns>Height of the element if its size depends on parent's size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetResizableInnerWidth">
|
|
<summary>
|
|
Returns the inner width of the element if its size depends on parent's size.
|
|
</summary>
|
|
<returns>Inner width of the element if its size depends on parent's size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetResizableInnerHeight">
|
|
<summary>
|
|
Returns the inner height of the element if its size depends on parent's size.
|
|
</summary>
|
|
<returns>Inner height of the element if its size depends on parent's size.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetBlockElementHeight">
|
|
<summary>
|
|
Returns the height of the block element.
|
|
</summary>
|
|
<returns>Height of the block element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetMaxWidthForTextSizing">
|
|
<summary>
|
|
Returns the maximum width for the element when the size of text is being calculated
|
|
inside the element. Used during sizing only.
|
|
</summary>
|
|
<returns>Maximum width for the element when the size of text is being calculated
|
|
inside the element. Used during sizing only.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Calculates the positions of each child of the element.
|
|
</summary>
|
|
<param name="curPosition">Position of the cursor</param>
|
|
<param name="bounds">Rectangle bounds</param>
|
|
<returns>BlockCollection instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateTextPos(Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Calculates the position of the text element.
|
|
</summary>
|
|
<param name="node">Text element node.</param>
|
|
<param name="block">Current block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateElementPos(System.Int32,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Calculates the position of the HTML element.
|
|
</summary>
|
|
<param name="count">Index of the child element.</param>
|
|
<param name="block">Current block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateChildPosFromType(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Detects the type of the child element and invokes corresponding method to calculate position.
|
|
</summary>
|
|
<param name="child">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateInlineChildPos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the inline child element.
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockChildPos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Detects the type of the block element and invokes the corresponding method.
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockFixedSizePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockFixedSize".
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockNewLineFixedSizePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockNewLineFixedSize".
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockSimplePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockSimplePos".
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockNewLineSimplePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockNewLineSimple".
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockNewLineResizablePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockNewLineResizable".
|
|
</summary>
|
|
<param name="element">Chile element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateBlockResizablePos(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Calculates the position for the child element with type "BlockResizable".
|
|
</summary>
|
|
<param name="element">Child element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.AddBlocksToMain(Syncfusion.Windows.Forms.HTMLUI.BaseElement,Syncfusion.Windows.Forms.HTMLUI.Block,Syncfusion.Windows.Forms.HTMLUI.BlocksCollection)">
|
|
<summary>
|
|
Adds each block from an array of blocks to the main block.
|
|
</summary>
|
|
<param name="element">Current element object.</param>
|
|
<param name="mainBlock">Main block container.</param>
|
|
<param name="blocks">Blocks for inserting into the main block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsGoodWidth(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32,System.Int32)">
|
|
<summary>
|
|
Indicates whether the width of the child is larger than the element width.
|
|
</summary>
|
|
<param name="block">Block in which we want to insert the element.</param>
|
|
<param name="curX">Current X coordinate.</param>
|
|
<param name="elementWidth">Width of the element.</param>
|
|
<returns>True if free space is suitable for the block.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.BreakText(Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Breaks the string text into two parts. First is in the same line, another into a new line.
|
|
</summary>
|
|
<param name="node">Text which must be broken and inserted in two lines.</param>
|
|
<param name="block">First block (for first part of text).</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InsertText(Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Size)">
|
|
<summary>
|
|
Inserts the text node into the block element.
|
|
</summary>
|
|
<param name="node">Current text node.</param>
|
|
<param name="block">Current block.</param>
|
|
<param name="size">Size of the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SplitText(System.String,System.Int32,System.Collections.ArrayList@)">
|
|
<summary>
|
|
Breaks the text into two parts by word and length (if all text can't be in bounds element).
|
|
</summary>
|
|
<param name="str">String text.</param>
|
|
<param name="length">Length which remains in first line</param>
|
|
<param name="tokens">Array of the remaining words.</param>
|
|
<returns>Array of two parts of the string.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SplitTextToLines(System.Collections.ArrayList,System.Int32,System.Collections.ArrayList@)">
|
|
<summary>
|
|
Splits the string represented by an array into lines of text whose length is less
|
|
than defined.
|
|
</summary>
|
|
<param name="tokens">Array of words.</param>
|
|
<param name="length">Max width of the line.</param>
|
|
<param name="sizes">Array of sizes of those lines.</param>
|
|
<returns>Array of lines.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.AddElement(Syncfusion.Windows.Forms.HTMLUI.Block,System.Object,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Adds element to the block and moves if needed all previous elements in the block.
|
|
</summary>
|
|
<param name="block">Block element.</param>
|
|
<param name="key">Element for adding to the block.</param>
|
|
<param name="value">Rectangle which key reserves.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetFreeWidthInLine(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32)">
|
|
<summary>
|
|
Returns the amount of free space in current line.
|
|
Free space depends on current X pos and horizontal alignment.
|
|
</summary>
|
|
<param name="block">Block instance</param>
|
|
<param name="curX">Current X coordinate on the line.</param>
|
|
<returns>Width in the current line.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetRemainderWidth(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32)">
|
|
<summary>
|
|
Returns the remainder which is in bounds in the current line when horizontal align is left.
|
|
</summary>
|
|
<param name="block">Current block.</param>
|
|
<param name="curWidth">Current width of the block.</param>
|
|
<returns>Remaining width in the block.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetWidthToBorder(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32)">
|
|
<summary>
|
|
Calculates the width from the current position to the control depending on alignment.
|
|
</summary>
|
|
<param name="block">Current block.</param>
|
|
<param name="curWidth">Current width of the block.</param>
|
|
<returns>Width of current point to border of the block.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CreateBlock(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Creates a new block, resizes the element and changes the start position of the new block.
|
|
</summary>
|
|
<param name="oldBlock">Current active block.</param>
|
|
<returns>Block which is created.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ResizeElement">
|
|
<summary>
|
|
Resizes the element if inside blocks are bigger than the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ChangeStartPosition(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Overloaded. Defines the start position for the block.
|
|
</summary>
|
|
<param name="block">Block which was filled (may be NULL if there are no filled blocks).</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ChangeStartPosition(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Defines the start position for the block if we want to add a new child TAG element.
|
|
</summary>
|
|
<param name="childRect">Rectangle for changing position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetIncreaseValue">
|
|
<summary>
|
|
Returns the Y value by which we must increase the current Y coordinate.
|
|
</summary>
|
|
<returns>Y increases value for new line.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.InFillBlocks(System.String)">
|
|
<summary>
|
|
Divides the string into words and returns an array of words.
|
|
</summary>
|
|
<param name="str">Regex pattern.</param>
|
|
<returns>Collection of results.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ElementInSameBlock(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Indicates whether the child element is located in the current block of the current element.
|
|
</summary>
|
|
<param name="childRect">Rectangle of the child block.</param>
|
|
<returns>True if child element is located in the current block of the current element; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetLastCurrentPosition">
|
|
<summary>
|
|
Sets the current position of the element after its positioning.
|
|
Needed for its parent element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SetAttributes">
|
|
<summary>
|
|
Sets the location of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReduceBounds(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Reduces the rectangle by space of the element.
|
|
</summary>
|
|
<param name="rect">Rectangle for bounds reducing.</param>
|
|
<returns>Rectangle with new attributes.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReduceLocation(System.Drawing.Point)">
|
|
<summary>
|
|
Shifts the location by element's space to the right / bottom.
|
|
</summary>
|
|
<param name="location">Point structure object.</param>
|
|
<returns>Shifted location.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReduceWidth(System.Int32)">
|
|
<summary>
|
|
Reduces the width by space of the element.
|
|
</summary>
|
|
<param name="width">Width of the block.</param>
|
|
<returns>New width value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReduceHeight(System.Int32)">
|
|
<summary>
|
|
Reduces the height by space of the element.
|
|
</summary>
|
|
<param name="height">Width of the block.</param>
|
|
<returns>Height after reducing.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ExpandBounds(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Expands the rectangle by space of the element.
|
|
</summary>
|
|
<param name="rect">Rectangle for expanding.</param>
|
|
<returns>Expanded rectangle.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ExpandLocation(System.Drawing.Point)">
|
|
<summary>
|
|
Shifts the location by element's space to the left / top.
|
|
</summary>
|
|
<param name="location">Point structure object.</param>
|
|
<returns>Shifted location.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ExpandWidth(System.Int32)">
|
|
<summary>
|
|
Expands the width by space of the element.
|
|
</summary>
|
|
<param name="width">Width of the block.</param>
|
|
<returns>New width value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ExpandHeight(System.Int32)">
|
|
<summary>
|
|
Reduces the height by space of the element.
|
|
</summary>
|
|
<param name="height">Width of the block.</param>
|
|
<returns>Height after expanding.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ShiftStartPos(System.Drawing.Point)">
|
|
<summary>
|
|
Shifts the start position of the element.
|
|
</summary>
|
|
<param name="position">Start position.</param>
|
|
<returns>Point instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProhibitSpaceBefore">
|
|
<summary>
|
|
Sets the value indicating whether trailing whitespace must be allowed at the beginning of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProhibitSpaceAfter">
|
|
<summary>
|
|
Sets the value indicating whether trailing whitespace must be allowed after element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.IsValidText(System.Xml.XmlNode)">
|
|
<summary>
|
|
Indicates whether the node is text and has some non-empty value.
|
|
</summary>
|
|
<param name="node">Node object.</param>
|
|
<returns>True if node is text and has some non-empty value; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.NeedCalculate(Syncfusion.Windows.Forms.HTMLUI.Text)">
|
|
<summary>
|
|
Indicates whether the text object needs to be calculated and positioned.
|
|
</summary>
|
|
<param name="text">Text object.</param>
|
|
<returns>True if text object needs to be calculated and positioned; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.PreparePositioning(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Prepares the element to position it's content.
|
|
</summary>
|
|
<param name="currentPosition">Current start position for this element.</param>
|
|
<param name="bounds">Bound for this element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.NoWrapEnabled">
|
|
<summary>
|
|
Indicates whether the nowrap attribute is enabled.
|
|
</summary>
|
|
<returns>True if the attribute is set; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.SplitToken(System.String,System.Collections.ArrayList,System.Int32,System.Int32)">
|
|
<summary>
|
|
Splits one token if it's longer than length into smaller pieces.
|
|
</summary>
|
|
<param name="line">Token string.</param>
|
|
<param name="tokens">Array of tokens.</param>
|
|
<param name="i">Index of the token in the array.</param>
|
|
<param name="length">Max length of the line.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawElement(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Draws an element.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawElementInternal(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Checks whether the element must be redrawn. If element must be drawn, the method draws it.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Draw(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Draws an element.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawBlock(Syncfusion.Windows.Forms.HTMLUI.Block,System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Raises the event before block painting and if there are no event handlers,
|
|
raises the default painting.
|
|
</summary>
|
|
<param name="block">Block for drawing.</param>
|
|
<param name="e">Paint arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProcessDrawBlock(Syncfusion.Windows.Forms.HTMLUI.Block,System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Draws data in block which represents a single line.
|
|
</summary>
|
|
<param name="block">Current block.</param>
|
|
<param name="e">Paint arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawText(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Draws text in the element.
|
|
</summary>
|
|
<param name="g">Graphics context.</param>
|
|
<param name="rect">Rectangle for output.</param>
|
|
<param name="text">Text object.</param>
|
|
<param name="parent">Parent block for the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawChildsOf(Syncfusion.Windows.Forms.HTMLUI.Block,System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Draws all childs elements of the current block.
|
|
</summary>
|
|
<param name="block">Current block for drawing.</param>
|
|
<param name="e">Paint event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawText(System.Drawing.Graphics,System.Drawing.Brush,System.Drawing.Font,System.String,System.Drawing.RectangleF)">
|
|
<summary>
|
|
Draw text with specified settings.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="brush">Brush for text drawing.</param>
|
|
<param name="font">Font object.</param>
|
|
<param name="text">Text data.</param>
|
|
<param name="bound">Bound for the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawSelectedText(System.Drawing.Graphics,System.Drawing.Rectangle,Syncfusion.Windows.Forms.HTMLUI.Text,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Draws selected text in the block.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="rect">Bound for the text.</param>
|
|
<param name="text">Text data.</param>
|
|
<param name="parent">Parent block for the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawSelectionRectangle(System.Drawing.Graphics,System.Drawing.RectangleF)">
|
|
<summary>
|
|
Draws selection rectangle.
|
|
</summary>
|
|
<param name="g">Graphics object.</param>
|
|
<param name="rect">Selection rectangle.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ClientToGlobal(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overloaded. Translates logical rectangle to client rectangle.
|
|
</summary>
|
|
<param name="rect">Rectangle for converting attributes.</param>
|
|
<returns>Changed rectangle.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GlobalToClient(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overloaded. Translates client rectangle to global rectangle.
|
|
</summary>
|
|
<param name="rect">Rectangle for converting attributes.</param>
|
|
<returns>Changed rectangle.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ClientToGlobal(System.Drawing.RectangleF)">
|
|
<summary>
|
|
Translates logical rectangle to client rectangle.
|
|
</summary>
|
|
<param name="rect">Rectangle for converting attributes.</param>
|
|
<returns>Changed rectangle.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GlobalToClient(System.Drawing.RectangleF)">
|
|
<summary>
|
|
Translates client rectangle to global rectangle.
|
|
</summary>
|
|
<param name="rect">Rectangle for converting attributes.</param>
|
|
<returns>Changed rectangle.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawBgColor(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Graphics)">
|
|
<summary>
|
|
Draws background.
|
|
</summary>
|
|
<param name="block">Current block.</param>
|
|
<param name="g">Graphics context.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawBorders(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Graphics)">
|
|
<summary>
|
|
Draw borders for the element.
|
|
</summary>
|
|
<param name="block">Block Instance</param>
|
|
<param name="g">Graphics context.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawBorder(System.Drawing.Graphics,Syncfusion.Windows.Forms.HTMLUI.Border,System.Drawing.Point,System.Drawing.Point)">
|
|
<summary>
|
|
Draws border for the element.
|
|
</summary>
|
|
<param name="g">Graphics context.</param>
|
|
<param name="border">Border instance.</param>
|
|
<param name="startP">Start point.</param>
|
|
<param name="endP">End point.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MustDrawBlock(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Indicates whether the block is inside ClipRectangle which must be repainted.
|
|
</summary>
|
|
<param name="block">Current block object.</param>
|
|
<param name="clipRect">Clip rectangle.</param>
|
|
<returns>True if block must be drawn.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProcessAlignment(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Changes positions of the elements in the block depending on the alignment.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProcessHAlignment(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Shifts all elements depending on horizontal alignment.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveElementsInInlineBlock(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Moves all elements in simple inline block.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block after alignment.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveElementsInMainBlock(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Moves all elements inside the main block.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block after alignment.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveElementsHorizontal(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32)">
|
|
<summary>
|
|
Move all elements in block by the specified shiftValue in right.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<param name="shiftValue">Value on which block must be shifted.</param>
|
|
<returns>Block after alignment.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProcessVAlignment(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Shifts all elements in the bloack depending on vertical alignment.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block after aligning.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetFreeWidth(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Returns the value for shifting elements in the block.
|
|
</summary>
|
|
<param name="block">Block instance</param>
|
|
<returns>Free width value.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetFreeWidthInMainBlock(Syncfusion.Windows.Forms.HTMLUI.Block,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Returns the free width between the main block and child block.
|
|
</summary>
|
|
<param name="mainBlock">Main block.</param>
|
|
<param name="childBlock">Current child block.</param>
|
|
<returns>Free space in main block.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveToVCenter(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Shifts all elements in block corresponding to the middle vertical position.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block after aligning.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ShiftVertical(Syncfusion.Windows.Forms.HTMLUI.Block,System.Int32)">
|
|
<summary>
|
|
Shifts all elements inside the block by the defined value.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<param name="shiftVal">Value by which all elements in block must be shifted down.</param>
|
|
<returns>Block after aligning.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.MoveToVBottom(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Shifts all elements in block corresponding to bottom vertical position.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<returns>Block after aligning.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawBgImage(Syncfusion.Windows.Forms.HTMLUI.Block,System.Drawing.Graphics)">
|
|
<summary>
|
|
Draws background image for the element.
|
|
</summary>
|
|
<param name="block">Block for its content alignment.</param>
|
|
<param name="g">Graphic context.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.DrawImg(System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Draws an image.
|
|
</summary>
|
|
<param name="g">Graphic context.</param>
|
|
<param name="destRect">Destination rectangle for output.</param>
|
|
<param name="srcRect">Rectangle of image to draw.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ProcessSelection">
|
|
<summary>
|
|
Processes the selection algorithm.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.GetSelectedRect(Syncfusion.Windows.Forms.HTMLUI.Block,Syncfusion.Windows.Forms.HTMLUI.Text)">
|
|
<summary>
|
|
Calculates the rectangle which suits the selected text in the block.
|
|
</summary>
|
|
<param name="block">Block containing selected text.</param>
|
|
<param name="text">Current text object.</param>
|
|
<returns>Rectangle which suits the selected text in the block.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateSelectionText(Syncfusion.Windows.Forms.HTMLUI.Text,System.Drawing.Graphics,System.Drawing.Rectangle,System.Drawing.Font)">
|
|
<summary>
|
|
Calculates all data regarding the selection of text in the document.
|
|
</summary>
|
|
<param name="text">Text object.</param>
|
|
<param name="g">Graphics context.</param>
|
|
<param name="clientRect">Rectangle of the text in the document.</param>
|
|
<param name="textFont">Font of the text.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RegisterSelectedElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Adds the element to the collection of selected elements.
|
|
</summary>
|
|
<param name="element">Element is selected.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateInnerTextIndexes">
|
|
<summary>
|
|
Calculates the start / end indices of the text inside the element.
|
|
</summary>
|
|
<returns>Point instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateInnerText">
|
|
<summary>
|
|
Calculates the text inside the element.
|
|
</summary>
|
|
<returns>Inner text for the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.CalculateSelectedText">
|
|
<summary>
|
|
Calculates the selected text for the element.
|
|
</summary>
|
|
<returns>Selected text for the element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Clone">
|
|
<summary>
|
|
Clone class members.
|
|
</summary>
|
|
<returns>Returns a new instance of the class with the same parameters set.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ClearEvents(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Clears all events.
|
|
</summary>
|
|
<param name="element">New cloned object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.Attributes_Changed(System.Object,Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs)">
|
|
<summary>
|
|
Runs when attributes have been changed. In some cases, control must react on this.
|
|
</summary>
|
|
<param name="sender">Sender of changed event.</param>
|
|
<param name="e">Additional parameters.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReCalculateDocument">
|
|
<summary>
|
|
Recalculates the document and repaints the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReFormatMergeElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Re-merges the format for the element.
|
|
</summary>
|
|
<param name="element">Element for remerging formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReFormatMergElmAndReCalcDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Recalculates the format for the element and recalculates the current document.
|
|
</summary>
|
|
<param name="element">Element for which attribute has been changed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReFormatCrtElmAndReCalcDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Creates the format for the element and recalculates the current document.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReFormatCrtDocAndReCalcDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Recreates the formats for the document and recalculates the current document.
|
|
</summary>
|
|
<param name="element">Element where event has been raised.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RePaintDocument">
|
|
<summary>
|
|
Repaints the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RePaintElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Repaints the element.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RePositionDocument">
|
|
<summary>
|
|
Recalculates the position of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.RePositionElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Recalculates the position of the element.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ChildrenFormatMergeAndRepaintDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Re-merges the formats for all children of the element and repaints the document.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ChildrenFormatMerge(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Boolean)">
|
|
<summary>
|
|
Re-merges the formats for all the children of the element.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
<param name="bMergeOfElement">If True - merges format of element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ChildrenFormatMergeAndRecalcDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Re-merges all the children formats and recalculates the document.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.ReFormatMergElmAndChildrenAndReCalcDoc(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Re-merges the format of element and its children and recalculates the document.
|
|
</summary>
|
|
<param name="element">Element for reaction performing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BaseElement.OnFormatChanged(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Raised when format of the element has been changed.
|
|
</summary>
|
|
<param name="element">Parent element of formats.</param>
|
|
<param name="oldFormat">Old format.</param>
|
|
<param name="newFormat">New format.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory">
|
|
<summary>
|
|
Factory for tag elements. Creates classes, responsible for HTML tags.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.DEF_RESERVE_SIZE">
|
|
<summary>
|
|
Max number of such classes, responsible for tags.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.m_dict">
|
|
<summary>
|
|
Holds class instances, responsible for HTML tags.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.#cctor">
|
|
<summary>
|
|
Initializes static members of the ElementsFactory class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Adds the specified custom element to the factory of known elements.
|
|
</summary>
|
|
<param name="customElement">Instance of the element.</param>
|
|
<returns>True if element was successfully added to factory;
|
|
False if element with such name already exists.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Removes the specified element from the factory of known elements.
|
|
</summary>
|
|
<param name="customElement">Instance of such custom tag element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.GetElement(System.String)">
|
|
<summary>
|
|
Returns an instance of the element with the specified tag name.
|
|
</summary>
|
|
<param name="tagName">Name of the tag.</param>
|
|
<returns>Created element object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.ConvertTo(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl,System.Xml.XmlElement)">
|
|
<summary>
|
|
Converts XML element.
|
|
</summary>
|
|
<param name="control">Control object.</param>
|
|
<param name="element">XML element which represents the element.</param>
|
|
<returns>Converted element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementsFactory.CreateElements">
|
|
<summary>
|
|
Creates instances of the elements.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents">
|
|
<summary>
|
|
Class that supports connection events for their owners (HTML elements).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.m_eventsHash">
|
|
<summary>
|
|
Holds all events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.Event">
|
|
<summary>
|
|
Gets the event information
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.RaiserMethod">
|
|
<summary>
|
|
Gets the method information
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Collections.Hashtable,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the HashElementEvents class
|
|
</summary>
|
|
<param name="parent">Parent element object.</param>
|
|
<param name="events">Supported events.</param>
|
|
<param name="name">Name of the event.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.AttachEventInternal(System.EventHandler)">
|
|
<summary>
|
|
Overridden. Attaches events to the object.
|
|
</summary>
|
|
<param name="handler">Event handler.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.DetachEventInternal(System.EventHandler)">
|
|
<summary>
|
|
Overridden. Detaches event from the object.
|
|
</summary>
|
|
<param name="handler">Event handler.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.RaiseEvent(System.EventArgs)">
|
|
<summary>
|
|
Overridden. Overloaded. Raises event on the object.
|
|
</summary>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HashElementEvents.RaiseEvent(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Raises event on the object.
|
|
</summary>
|
|
<param name="parent">Parent of the event.</param>
|
|
<param name="e">Event parameters.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ListElement">
|
|
<summary>
|
|
Base class for list element holders like UL, OL elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_TAG_NAME">
|
|
<summary>
|
|
Name of the tag this class indicates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_MARKER_SQUARE">
|
|
<summary>
|
|
Square marker for item drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_MARKER_CIRCLE">
|
|
<summary>
|
|
Circle marker for item drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_MARKER_DISC">
|
|
<summary>
|
|
Disc marker for item drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_XSLT_PARAM_NAME">
|
|
<summary>
|
|
Name of the parameter in xslt template.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_BULLET_FONT_NAME">
|
|
<summary>
|
|
Name of the bullet font.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_MARKER_INDENT">
|
|
<summary>
|
|
Amount of space added to the width of the marker for each item.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_reactionType">
|
|
<summary>
|
|
Holds the type of reaction on attribute changing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.DEF_SUPP_EVENTS">
|
|
<summary>
|
|
Supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_eventHash">
|
|
<summary>
|
|
Holds all events which this class supports.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_unorderedFormat">
|
|
<summary>
|
|
Format for unordered marker drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_orderedFormat">
|
|
<summary>
|
|
Format for ordered marker drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_bulletFont">
|
|
<summary>
|
|
Font in unordered marker item style.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListElement.m_indent">
|
|
<summary>
|
|
Indent from the left of the element. List has space from the left.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.SupportedEvents">
|
|
<summary>
|
|
Returns an array of the supported events.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.DefaultStyle">
|
|
<summary>
|
|
Gets the default item style in the list.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.Reaction">
|
|
<summary>
|
|
Returns the hashtable of names of attributes as keys and type of reaction
|
|
changes as value.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.BulletFont">
|
|
<summary>
|
|
Gets the font for markers drawing when item has bullet style.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.Indent">
|
|
<summary>
|
|
Gets or sets the indent from the left of the element. List has space from the left.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ListElement.StyleOrdered">
|
|
<summary>
|
|
Gets a value indicating whether the element has ordered style.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.ReDefineReactions">
|
|
<summary>
|
|
Redefines some attribute reaction of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.#cctor">
|
|
<summary>
|
|
Initializes static members of the ListElement class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the ListElement class
|
|
</summary>
|
|
<param name="parent">Parent element of this object.</param>
|
|
<param name="name">Name of the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.OnDispose">
|
|
<summary>
|
|
Overridden. Disposes element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetItemStyle(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Returns the marker style of the item.
|
|
</summary>
|
|
<param name="item">Item of the list.</param>
|
|
<returns>Marker style of the item.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CreateEventInternal(System.String)">
|
|
<summary>
|
|
Overridden. Returns an instance of the event.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>Event object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CalculatePositionInternal">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the position of the element for rendering.
|
|
</summary>
|
|
<param name="curPosition">Point instance</param>
|
|
<param name="bounds">Rectangle instance</param>
|
|
<returns>BlockCollection object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CalculateFormatInternal">
|
|
<summary>
|
|
Overridden. Calculates the format of element from the array of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.MoveFinalCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves current position of the parent element down after this element.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.MoveStartCurPos(System.Drawing.Point@)">
|
|
<summary>
|
|
Overridden. Moves current position of the parent element down before.
|
|
</summary>
|
|
<param name="currentPos">Current global position.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.DrawBlock(Syncfusion.Windows.Forms.HTMLUI.Block,System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element on the control.
|
|
</summary>
|
|
<param name="block">Current block.</param>
|
|
<param name="e">Paint arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.InitializeElement">
|
|
<summary>
|
|
Overridden. Initializes an element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.DefFormatFontChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raised when default font is changed.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetItemRectangle(Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Returs rectangle of the block, where data are located.
|
|
</summary>
|
|
<param name="parent">Parent main block.</param>
|
|
<returns>Rectangle of the block, where data are located.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetMarker(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Returns the string marker of item in the list.
|
|
</summary>
|
|
<param name="item">Item element in the list.</param>
|
|
<returns>String marker of the item in the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetUnorderedMarker(Syncfusion.Windows.Forms.HTMLUI.ListItemType)">
|
|
<summary>
|
|
Returns the marker in the specified type.
|
|
</summary>
|
|
<param name="type">Type of numbering.</param>
|
|
<returns>Marker by its type.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetOrderedMarker(Syncfusion.Windows.Forms.HTMLUI.ListItemType,System.Int32)">
|
|
<summary>
|
|
Returns marker of numbered item.
|
|
</summary>
|
|
<param name="type">Type of item.</param>
|
|
<param name="itemNumber">Item number.</param>
|
|
<returns>Marker of numbered item.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetListStyle">
|
|
<summary>
|
|
Returns the style of the items numbering in the list.
|
|
</summary>
|
|
<returns>Style of items numbering in the list.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.CalculateIndent">
|
|
<summary>
|
|
Calculates the offset from the left of the list.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetMarkerSize(System.String,System.Drawing.Font)">
|
|
<summary>
|
|
Overloaded. Calculates the size of the marker.
|
|
</summary>
|
|
<param name="marker">string value</param>
|
|
<param name="font">Font object</param>
|
|
<returns>Size of the marker.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetMarkerSize(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Calculates the size of the marker for the specified item.
|
|
</summary>
|
|
<param name="item">Item element.</param>
|
|
<returns>Size of the marker for item.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetMarkerFont(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Returns the font object by which marker will be calculated.
|
|
</summary>
|
|
<param name="item">Item element.</param>
|
|
<returns>Font of the marker.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.IndexOf(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Returns the index of the item in the items holder.
|
|
</summary>
|
|
<param name="item">Item in the list.</param>
|
|
<returns>Index of item in the list if found; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ListElement.GetItemNumber(Syncfusion.Windows.Forms.HTMLUI.LIElementImpl)">
|
|
<summary>
|
|
Calculates number of item.
|
|
</summary>
|
|
<param name="item">Item of the list.</param>
|
|
<returns>Number of the item.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase">
|
|
<summary>
|
|
Base class of custom tags containing custom controls.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.#ctor(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.String)">
|
|
<summary>
|
|
Initializes a new instance of the UserControlHolderBase class
|
|
</summary>
|
|
<param name="parent">Parent element for this custom tag.</param>
|
|
<param name="name">Name of the custom tag.</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.UserControl">
|
|
<summary>
|
|
Gets an instance of the custom control wrapper.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.CalculateSizeInternal">
|
|
<summary>
|
|
Overridden. Calculates the size of the element for rendering.
|
|
</summary>
|
|
<returns>Size object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.CalculateChildPositions(System.Drawing.Point,System.Drawing.Rectangle)">
|
|
<summary>
|
|
Overridden. Calculates the position of the element.
|
|
</summary>
|
|
<param name="curPosition">Current position.</param>
|
|
<param name="bounds">Bounds for the element.</param>
|
|
<returns>Array of the blocks.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.FocusElementInternal">
|
|
<summary>
|
|
Overridden. Indicates whether its control is active.
|
|
</summary>
|
|
<returns>True if the input focus request was successful; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.ClearBlocks">
|
|
<summary>
|
|
Detaches events and clears blocks.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.Block_LocationChanged(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Changes location of the control.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.OnLocationCalculated(System.EventArgs)">
|
|
<summary>
|
|
Overridden. Raises the LocationCalculated Event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.SetSize">
|
|
<summary>
|
|
Calculates the size depending on settings.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.UserControlHolderBase.ProcessDrawBlock(Syncfusion.Windows.Forms.HTMLUI.Block,System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Overridden. Draws an element.
|
|
</summary>
|
|
<param name="block">Block to be painted.</param>
|
|
<param name="e">Paint arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ParseException">
|
|
<summary>
|
|
This exception is thrown by CSS and HTML parsers when finding a problem
|
|
in a document which cannot be resolved by the parser internally.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ParseException.DEF_MESSAGE">
|
|
<summary>
|
|
Default text used by this exception when the message is not specified by user.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ParseException.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the ParseException class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ParseException.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the ParseException class
|
|
</summary>
|
|
<param name="message">Message of exception.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ParseException.#ctor(System.Exception)">
|
|
<summary>
|
|
Initializes a new instance of the ParseException class
|
|
</summary>
|
|
<param name="inner">Inner exception.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ParseException.#ctor(System.String,System.Exception)">
|
|
<summary>
|
|
Initializes a new instance of the ParseException class
|
|
</summary>
|
|
<param name="message">Specified by user message.</param>
|
|
<param name="inner">Exception on which this instance of exception class is based.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FormatManager">
|
|
<summary>
|
|
Class which is responsible for creating formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_STYLE_ATTR_FORMAT">
|
|
<summary>
|
|
Suffix name of the CSS in style attribute in HTML elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_FORMAT_NAME">
|
|
<summary>
|
|
Default format name.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_ID_PREFIX">
|
|
<summary>
|
|
Prefix of format's name by element id.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_PSEUDO_LINK">
|
|
<summary>
|
|
Name of pseudo-class :link.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_PSEUDO_HOVER">
|
|
<summary>
|
|
Name of pseudo-class :hover.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DEF_PSEUDO_VISITED">
|
|
<summary>
|
|
Name of pseudo-class :visited.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_formatsCollection">
|
|
<summary>
|
|
Collection of formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_document">
|
|
<summary>
|
|
Holds the CSS in XML document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_control">
|
|
<summary>
|
|
Instance of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_formatsByName">
|
|
<summary>
|
|
Holds arrays of formats by their name.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_formatIndex">
|
|
<summary>
|
|
Index for each format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_bDisposed">
|
|
<summary>
|
|
Indicates whether we were disposed once.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatManager.m_defaultFormat">
|
|
<summary>
|
|
Default format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Formats">
|
|
<summary>
|
|
Gets the collection of formats.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Document">
|
|
<summary>
|
|
Gets the XML storage of the CSS elements.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Control">
|
|
<summary>
|
|
Gets an instance of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DefaultFormat">
|
|
<summary>
|
|
Gets the default format of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the FormatManager class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Initializes a new instance of the FormatManager class
|
|
</summary>
|
|
<param name="control">HTMLUI control</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.LoadCss(System.String)">
|
|
<summary>
|
|
Overloaded. Builds formats from file with specified FileName.
|
|
</summary>
|
|
<param name="fileName">Path to the file with CSS.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.LoadCss(System.IO.Stream)">
|
|
<summary>
|
|
Builds formats from specified Stream.
|
|
</summary>
|
|
<param name="stream">Source stream.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AppendCss(System.String)">
|
|
<summary>
|
|
Overloaded. Builds formats from file with specified FileName and appends XML nodes to the existing XML document.
|
|
</summary>
|
|
<param name="fileName">Path to the file with CSS.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AppendCss(System.IO.Stream)">
|
|
<summary>
|
|
Builds formats from specified Stream and merges XML documents.
|
|
</summary>
|
|
<param name="stream">Source stream.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Removes format from the collection.
|
|
</summary>
|
|
<param name="format">Format which should be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Element_HasCss(System.Object,Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs)">
|
|
<summary>
|
|
Invoked when HasCSS event is raised by the HTMLUIParser.
|
|
</summary>
|
|
<param name="sender">Event sender.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.InFillFormatsHash(System.Collections.Hashtable,Syncfusion.Windows.Forms.HTMLUI.IHTMLElement,System.Boolean)">
|
|
<summary>
|
|
Infills the specified hash by creating formats for the defined element.
|
|
</summary>
|
|
<param name="hash">Dictionary for format's infilling.</param>
|
|
<param name="element">Owner of formats.</param>
|
|
<param name="bCalcChildren">Indicates whether to infill formats of children.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetDefaultFormat(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Sets the format manager with the specified default format.
|
|
</summary>
|
|
<param name="defaultFormat">New default format object for the format manager.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.MergeFormatsCollections(System.Collections.IList)">
|
|
<summary>
|
|
Merges formats.
|
|
</summary>
|
|
<param name="formats">Collection of formats for merging.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.BuildFormatsCollection(System.Xml.XmlDocument,System.Collections.IList)">
|
|
<summary>
|
|
Builds collection of formats.
|
|
</summary>
|
|
<param name="document">XmlDocument instance</param>
|
|
<param name="formats">IList instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.BuildFormat(System.Xml.XmlElement)">
|
|
<summary>
|
|
Builds new format from the specified XML data.
|
|
</summary>
|
|
<param name="element">XML data.</param>
|
|
<returns>HTMLFormat instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetProperty(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.Xml.XmlElement)">
|
|
<summary>
|
|
Sets the specified properties for the specified format.
|
|
</summary>
|
|
<param name="format">Format class for which properties must be set.</param>
|
|
<param name="element">Element which contains format property value.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.FromString(System.String)">
|
|
<summary>
|
|
Builds format from the specified string.
|
|
</summary>
|
|
<param name="css">CSS data in string.</param>
|
|
<returns>Format if OK; otherwise NULL.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.InFillFormatsByName(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Infills hash with an array of formats by their names (CSS names cought be complex value).
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AddFormatsByName(System.Collections.ArrayList,System.String,Syncfusion.Windows.Forms.HTMLUI.FormatType)">
|
|
<summary>
|
|
Adds formats to the specified array.
|
|
</summary>
|
|
<param name="array">Reference to the array to which the formats must be added.</param>
|
|
<param name="name">Name by which formats will be found. Cannot be empty.</param>
|
|
<param name="type">FormatType instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.DeletePreffix(System.String)">
|
|
<summary>
|
|
Deletes the point character if the name of the format begins with it.
|
|
</summary>
|
|
<param name="name">Name to correct. Name cannot be empty.</param>
|
|
<returns>New corrected name.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.GetFormatType(System.String)">
|
|
<summary>
|
|
Returns the type of format by format name.
|
|
</summary>
|
|
<param name="name">Name used to detect the CSS format type.</param>
|
|
<returns>FormatType instance</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AttachBodyFormat(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Collections.ArrayList)">
|
|
<summary>
|
|
Adds body format if needed (if current element is BODY element).
|
|
</summary>
|
|
<param name="element">Reference to the element.</param>
|
|
<param name="array">Array assigned to the element CSS formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AttachClassFormat(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Collections.ArrayList,System.String)">
|
|
<summary>
|
|
Adds format by class name.
|
|
</summary>
|
|
<param name="tagElement">Reference to the element.</param>
|
|
<param name="array">Array assigned to the element CSS formats.</param>
|
|
<param name="sufix">Suffix for style's name.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AttachIDFormat(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Collections.ArrayList,System.String)">
|
|
<summary>
|
|
Adds format by ID of the element (<td id="someId" > #someId { ... })
|
|
</summary>
|
|
<param name="element">Reference to the element.</param>
|
|
<param name="array">Array assigned to the element CSS formats.</param>
|
|
<param name="sufix">Suffix for the style's name.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AttachStyleFormat(Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.Collections.ArrayList)">
|
|
<summary>
|
|
Adds format from style attribute if it exists.
|
|
</summary>
|
|
<param name="element">Reference to the element.</param>
|
|
<param name="array">Array assigned to the element CSS formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AttachLinkFormats(System.Collections.Hashtable,Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Searches for additional formats for link elements and stores it to the specified hash.
|
|
</summary>
|
|
<param name="hash">Hash for storing formats.</param>
|
|
<param name="element">Element for formats calculation.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.AddToCollection(System.Collections.ArrayList,Syncfusion.Windows.Forms.HTMLUI.BaseElement,System.String)">
|
|
<summary>
|
|
Searches different types of styles for element and adds it to the specified array.
|
|
</summary>
|
|
<param name="formatsList">Formats storage.</param>
|
|
<param name="element">Parent format's element.</param>
|
|
<param name="sufix">String suffix for the format names.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetForeColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the forecolor for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the format.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBackgroundColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the background color for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the color.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetHorizontalAlign(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the HorizontalAlign for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the align.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetVerticalAlign(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the VerticalAlign for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the align.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetCursor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the cursor for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the cursor.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetPadding(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Overloaded. Sets the padding for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the padding.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetPadding(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String,System.Int32)">
|
|
<summary>
|
|
Sets the padding for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of padding.</param>
|
|
<param name="order">Side of padding.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBorder(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String,System.String)">
|
|
<summary>
|
|
Sets the border for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of border.</param>
|
|
<param name="toWhat">Target side of border.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBorderStyle(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String,System.String)">
|
|
<summary>
|
|
Sets the border style for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the Border style.</param>
|
|
<param name="toWhat">Target side of border style.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBorderWidth(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String,System.String)">
|
|
<summary>
|
|
Sets the border width for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of the border width.</param>
|
|
<param name="toWhat">Target side of border width.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBorderColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String,System.String)">
|
|
<summary>
|
|
Sets the border color for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of border color.</param>
|
|
<param name="toWhat">Target side.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetFontFamily(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the font family for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String value of font family.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetFontStyle(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the font style for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of font style.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetFontWeight(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the font weight for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of font weight.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetFontSize(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Adds font size to format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of font size.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetTextDecoration(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the text decoration for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of text decoration.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetWidth(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the width for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of width.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetHeight(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the height for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of height.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBackgroundImage(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the background image for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of background image.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetBackgroundRepeat(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the background repeat property for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">String representation of background repeat.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.SetDisplay(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,System.String)">
|
|
<summary>
|
|
Sets the value of 'display' CSS attribute for the format.
|
|
</summary>
|
|
<param name="format">Format object.</param>
|
|
<param name="value">Value of 'display' attribute.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.Dispose">
|
|
<summary>
|
|
Clears all resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FormatManager.CursorChanged(System.Object,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Handles cursor changinf of default format.
|
|
</summary>
|
|
<param name="sender">Sender of the event.</param>
|
|
<param name="e">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx">
|
|
<summary>
|
|
Represents type of width and height properties.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx.Unknown">
|
|
<summary>
|
|
Unknown type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx.Number">
|
|
<summary>
|
|
Number's type of size (px, em, etc...).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.SizeTypeEx.Percent">
|
|
<summary>
|
|
Percentage type of width and height properties.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle">
|
|
<summary>
|
|
Indicates which type of background image is in format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle.Unknown">
|
|
<summary>
|
|
Unknown type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle.Repeat">
|
|
<summary>
|
|
Image repeats by X and by Y.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle.RepeatX">
|
|
<summary>
|
|
Image repeats by X.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle.RepeatY">
|
|
<summary>
|
|
Image repeats by Y.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.RepeatStyle.NoRepeat">
|
|
<summary>
|
|
Image does not repeat.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat">
|
|
<summary>
|
|
Implementation of the HTMLFormat interface.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.DEF_COMPARER">
|
|
<summary>
|
|
Default case insensitive comparer for internal use.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bSkipEvents">
|
|
<summary>
|
|
Indicates whether skip event is raised.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_FormatParent">
|
|
<summary>
|
|
Format which was inherited by this format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_storage">
|
|
<summary>
|
|
XML storage of the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_type">
|
|
<summary>
|
|
Type of the format.
|
|
Indicates in what manner the format is connected to the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_index">
|
|
<summary>
|
|
Index of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_Name">
|
|
<summary>
|
|
Name of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_Font">
|
|
<summary>
|
|
Font of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_ForeColor">
|
|
<summary>
|
|
Foreground color of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_BgColor">
|
|
<summary>
|
|
Background color of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bgImage">
|
|
<summary>
|
|
Background image for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bgRepeat">
|
|
<summary>
|
|
Type of drawing background image.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_HAligment">
|
|
<summary>
|
|
Horizontal aligment of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_VAligment">
|
|
<summary>
|
|
Vertical aligment of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_cursor">
|
|
<summary>
|
|
Cursor for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_BorderLeft">
|
|
<summary>
|
|
Left border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_BorderRight">
|
|
<summary>
|
|
Right border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_BorderTop">
|
|
<summary>
|
|
Top border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_BorderBottom">
|
|
<summary>
|
|
Bottom border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_Padding">
|
|
<summary>
|
|
Rectangle which holds all paddings (top, left, right, bottom).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_enMerge">
|
|
<summary>
|
|
Mask enumeration for merging elements of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_width">
|
|
<summary>
|
|
Holds the width of the element region.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_height">
|
|
<summary>
|
|
Holds the height of the element region.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_widthType">
|
|
<summary>
|
|
Type of the width.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_heightType">
|
|
<summary>
|
|
Type of the height.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bDisposed">
|
|
<summary>
|
|
Indicates whether the object was disposed before.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_fontStyle">
|
|
<summary>
|
|
FontStyle property value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_fontWeight">
|
|
<summary>
|
|
FontWeight property value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_textDecoration">
|
|
<summary>
|
|
TextDecoration property value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_fontFamily">
|
|
<summary>
|
|
Family of the font for the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_fontSize">
|
|
<summary>
|
|
Size of the font for the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bIsMerged">
|
|
<summary>
|
|
Indicates whether the format is already merged.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bIsFontCreated">
|
|
<summary>
|
|
Indicates whether the font is created after format merging.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_unit">
|
|
<summary>
|
|
Graphical units for the font size.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bDisplayNone">
|
|
<summary>
|
|
Indicates whether the 'display' attribute was none.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.m_bDisposeWithElement">
|
|
<summary>
|
|
Indicates whether the format should be disposed when the parent HTML element is being disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FormatParent">
|
|
<summary>
|
|
Gets the format from which this format is inherited.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Index">
|
|
<summary>
|
|
Gets the index of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Name">
|
|
<summary>
|
|
Gets or sets the name of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Type">
|
|
<summary>
|
|
Gets or sets the manner in which the format is to be connected to the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Font">
|
|
<summary>
|
|
Gets or sets the font of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ForeColor">
|
|
<summary>
|
|
Gets or sets the foreground color for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundColor">
|
|
<summary>
|
|
Gets or sets the background color of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.VerticalAlign">
|
|
<summary>
|
|
Gets or sets the vertical alignment of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.HorizontalAlign">
|
|
<summary>
|
|
Gets or sets the horizontal alignment of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Left">
|
|
<summary>
|
|
Gets or sets the left border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Right">
|
|
<summary>
|
|
Gets or sets the right border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Top">
|
|
<summary>
|
|
Gets or sets the top border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Bottom">
|
|
<summary>
|
|
Gets or sets the bottom border of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Cursor">
|
|
<summary>
|
|
Gets or sets the cursor of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Padding">
|
|
<summary>
|
|
Gets or sets the paddings for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.PaddingLeft">
|
|
<summary>
|
|
Gets or sets the left padding for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.PaddingTop">
|
|
<summary>
|
|
Gets or sets the top padding for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.PaddingRight">
|
|
<summary>
|
|
Gets or sets the right padding for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.PaddingBottom">
|
|
<summary>
|
|
Gets or sets the bottom padding for the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Width">
|
|
<summary>
|
|
Gets or sets the width of the element region.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Height">
|
|
<summary>
|
|
Gets or sets the height of the element region.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundImage">
|
|
<summary>
|
|
Gets or sets the background image of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundImageRepeat">
|
|
<summary>
|
|
Gets or sets the background repeat property of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsDisposed">
|
|
<summary>
|
|
Gets a value indicating whether the instance is already disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.WidthType">
|
|
<summary>
|
|
Gets or sets the type of the width attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.HeightType">
|
|
<summary>
|
|
Gets or sets the type of the height attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Merge">
|
|
<summary>
|
|
Gets or sets the merge mask to be used for merge style operation. This cannot be
|
|
modified by the user directly.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Storage">
|
|
<summary>
|
|
Gets or sets the XML storage of the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.DisposeWithElement">
|
|
<summary>
|
|
Gets or sets a value indicating whether the format should be disposed when the
|
|
parent HTML element is being disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsWidthDefault">
|
|
<summary>
|
|
Gets a value indicating whether the width of the format has default values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsHeightDefault">
|
|
<summary>
|
|
Gets a value indicating whether the height of the format has default values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.LeftSpace">
|
|
<summary>
|
|
Gets the left space to the content.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.TopSpace">
|
|
<summary>
|
|
Gets the top space to the content.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RightSpace">
|
|
<summary>
|
|
Gets the right space to the content.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BottomSpace">
|
|
<summary>
|
|
Gets the bottom space to the content.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FontStyle">
|
|
<summary>
|
|
Gets or sets the FontStyle property of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FontWeight">
|
|
<summary>
|
|
Gets or sets the FontWeight property of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.TextDecoration">
|
|
<summary>
|
|
Gets or sets the TextDecoration property of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FontFamilyName">
|
|
<summary>
|
|
Gets or sets the family of the font for the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FontSize">
|
|
<summary>
|
|
Gets or sets the size of the font for the current format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Unit">
|
|
<summary>
|
|
Gets or sets the graphical unit for the font size.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsFontCreated">
|
|
<summary>
|
|
Gets or sets a value indicating whether the font has been created after merging the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsMerged">
|
|
<summary>
|
|
Gets or sets a value indicating whether the format is already merged.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether the format is in quiet mode, skip event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.DisplayNone">
|
|
<summary>
|
|
Gets or sets a value indicating whether 'display' attribute was set to none.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.QuietModeChanged">
|
|
<summary>
|
|
Delegate. Raised when quiet mode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnChanged">
|
|
<summary>
|
|
Utility event. Raised on property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ParentChanged">
|
|
<summary>
|
|
Utility event. Raised on FormatParent property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.NameChanged">
|
|
<summary>
|
|
Utility event. Raised on Name property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.FontChanged">
|
|
<summary>
|
|
Utility event. Raised on Font property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ForeColorChanged">
|
|
<summary>
|
|
Utility event. Raised on ForeColor property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundColorChanged">
|
|
<summary>
|
|
Utility event. Raised on Background property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundImageChanged">
|
|
<summary>
|
|
Utility event. Raised on Background image property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BackgroundImageRepeatChanged">
|
|
<summary>
|
|
Utility event. Raised on Background repeat property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.VerticalAlignChanged">
|
|
<summary>
|
|
Utility event. Raised on VerticalAlign property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.HorizontalAlignChanged">
|
|
<summary>
|
|
Utility event. Raised on HorizontalAlign property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.LeftChanged">
|
|
<summary>
|
|
Utility event. Raised on Left property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RightChanged">
|
|
<summary>
|
|
Utility event. Raised on Right property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.TopChanged">
|
|
<summary>
|
|
Utility event. Raised on Top property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.BottomChanged">
|
|
<summary>
|
|
Utility event. Raised on Bottom property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.CursorChanged">
|
|
<summary>
|
|
Utility event. Raised on Cursor property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.PaddingChanged">
|
|
<summary>
|
|
Utility event. Raised on Padding property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.WidthChanged">
|
|
<summary>
|
|
Utility event. Raised on Width property change.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.HeightChanged">
|
|
<summary>
|
|
Utility event. Raised on Height property change.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormat class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormat class
|
|
</summary>
|
|
<param name="name">Name of the format.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.#ctor(System.String,System.Int64)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormat class
|
|
</summary>
|
|
<param name="name">Name of the format.</param>
|
|
<param name="index">Index of the format.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.#ctor(System.String,System.Int64,Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormat class
|
|
</summary>
|
|
<param name="name">string name value</param>
|
|
<param name="index">index value</param>
|
|
<param name="parent">IHTMLFormat instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLFormat class
|
|
</summary>
|
|
<param name="info">Serialization info.</param>
|
|
<param name="ctxt">Serialization context.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Finalize">
|
|
<summary>
|
|
Finalizes an instance of the HTMLFormat class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Dispose">
|
|
<summary>
|
|
Disposes objects and frees its resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ToString">
|
|
<summary>
|
|
Overridden. Returns the string representation of the object.
|
|
</summary>
|
|
<returns>String representation of the object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.System#Runtime#Serialization#ISerializable#GetObjectData(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>
|
|
Serializes object.
|
|
</summary>
|
|
<param name="info">Serialization info.</param>
|
|
<param name="context">Serialization context.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseQuietModeChangedEvent">
|
|
<summary>
|
|
Raises event when mode changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseOnChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises event if any format property has been changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseParentChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises ParentChanged event if parent property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseNameChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises NameChanged event if name property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseFontChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises FontChanged event if font property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseForeColorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises ForeColorChanged event if ForeColor property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseBackgroundColorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises BackgroundColorChanged event if BackgroundColor property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseBackgroundImageChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises BackgroundImageChanged event if BackgroundImage
|
|
property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseBackgroundImageRepeatChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises BackgroundImageTypeChanged event if BackgroundImageType
|
|
property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseVerticalAlignChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises VerticalAlignChanged event if VerticalAlign property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseHorizontalAlignChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises HorizontalAlignChanged event if HorizontalAlign property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseLeftChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises LeftChanged event if Left property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseRightChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises RightChanged event if Right property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseTopChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises TopChanged event if Top property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseBottomChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises BottomChanged event if Bottom property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseCursorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises CursorChanged event if Cursor property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaisePaddingChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises PaddingChanged event if Padding property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseWidthChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises WidthChanged event if Width property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.RaiseHeightChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises HeightChanged event if Height property value is changed.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnQuietModeChanged">
|
|
<summary>
|
|
Raised when Quiet Mode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnParentChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Parent property set part. This is the best place for
|
|
any logic which must control the Parent property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnNameChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Name property set part. This is the best place for
|
|
any logic which must control the Name property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnFontChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Font property set part. This is the best place for
|
|
any logic which must control the Font property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnForeColorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by ForeColor property set part. This is the best place for
|
|
any logic which must control the ForeColor property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnBackgroundColorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by BackgroundColor property set part. This is the best place for
|
|
any logic which must control the BackgroundColor property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnBackgroundImageChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by BackgroundImage property set part. This is the best place for
|
|
any logic which must control the BackgroundImage property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnBackgroundImageRepeatChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by BackgroundImageRepeat property set part. This is the best place for
|
|
any logic which must control the BackgroundImageRepeat property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnVerticalAlignChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by VerticalAlign property set part. This is the best place for
|
|
any logic which must control the VerticalAlign property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnHorizontalAlignChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by HorizontalAlign property set part. This is the best place for
|
|
any logic which must control the HorizontalAlign property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnLeftChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Left property set part. This is the best place for
|
|
any logic which must control the Left property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnRightChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Right property set part. This is the best place for
|
|
any logic which must control the Right property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnTopChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Top property set part. This is the best place for
|
|
any logic which must control the Top property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnBottomChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Bottom property set part. This is the best place for
|
|
any logic which must control the Bottom property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnCursorChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Cursor property set part. This is the best place for
|
|
any logic which must control the Cursor property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnPaddingChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Padding property set part. This is the best place for
|
|
any logic which must control the Padding property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnWidthChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Width property set part. This is the best place for
|
|
any logic which must control the Width property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.OnHeightChanged(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Method called by Height property set part. This is thebest place for
|
|
any logic which must control Height property changes (for inheritors).
|
|
</summary>
|
|
<param name="name">String name value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.IsMergeFlagSet(Syncfusion.Windows.Forms.HTMLUI.MergeMask)">
|
|
<summary>
|
|
Indicates whether the specified attribute is set.
|
|
</summary>
|
|
<param name="flag">Attribute type.</param>
|
|
<returns>True if yes; otherwise False.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.SetFontPropertiesFrom(System.Drawing.Font)">
|
|
<summary>
|
|
Sets the font properties from the specified font.
|
|
</summary>
|
|
<param name="font">Font object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFormats(System.Collections.ArrayList,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges formats from an array of possible formats.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
<param name="inputFormat">First format object.</param>
|
|
<param name="default">Default format object.</param>
|
|
<returns>Format after merging.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeTwoFormats(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges two formats and returns the final format from them.
|
|
</summary>
|
|
<param name="oldFormat">First format object.</param>
|
|
<param name="newFormat">Second format object.</param>
|
|
<returns>Format after merging.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeForeColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the forecolor of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBgColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the background color of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeHAlign(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the horizontal align of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeVAlign(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the vertical align of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeCursor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the cursor of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergePaddingAll(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the padding of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergePaddingLeft(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the left padding of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergePaddingTop(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the top padding of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergePaddingRight(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the right padding of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergePaddingBottom(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the bottom padding of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBorderStyle(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the border style of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBorderWidth(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the border width of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBorderColor(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the border color of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFontFamily(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the font family of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFontStyle(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the font style of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFontWeight(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the font weight of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeTextDecoration(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the text decoration of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFontStyleFinal(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the final font style of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format for merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeFontSize(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the font size of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeWidth(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the width of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeHeight(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the height of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBgImage(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the background image of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeBgRepeat(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the background repeat of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.MergeDisplay(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat,Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Merges the display attribute of formats.
|
|
</summary>
|
|
<param name="finalFormat">Format after merging.</param>
|
|
<param name="newFormat">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.System#ICloneable#Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.GetInheritedFormat">
|
|
<summary>
|
|
Returns the format from parent element with inherited and not inherited options.
|
|
</summary>
|
|
<returns>New object with inherited cloned options.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ClearEvents(Syncfusion.Windows.Forms.HTMLUI.HTMLFormat)">
|
|
<summary>
|
|
Clears all events for the specified format object.
|
|
</summary>
|
|
<param name="format">New format object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeLeft">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeTop">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeRight">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeBottom">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeWidth">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeHeight">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeVerticalAlign">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeHorizontalAlign">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeForeColor">
|
|
<summary>
|
|
Indicates whether the forecolor property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeBackgroundColor">
|
|
<summary>
|
|
Indicates whether the background color property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeFont">
|
|
<summary>
|
|
Indicates whether the font property is serialized.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeCursor">
|
|
<summary>
|
|
Serialization helper property. It indicates when the cursor property value
|
|
must be serialized into code.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializePadding">
|
|
<summary>
|
|
Serialization helper property. It indicates when the padding
|
|
property must be serialized into code.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLFormat.ShouldSerializeBackgroundImage">
|
|
<summary>
|
|
Serialization helper property. It indicates when the BackgroundImage
|
|
property must be serialized into code.
|
|
</summary>
|
|
<returns>bool value</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLScript">
|
|
<summary>
|
|
Inherits Script class. The Script class encapsulates the script source
|
|
code, the reference and global items (the IVsaItem instances)
|
|
that the .NET script engine expects to be initialized with.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.DEF_VAR_NAME">
|
|
<summary>
|
|
Name of the document variable in scripts.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.DEF_DOC_NAMESPACE">
|
|
<summary>
|
|
Namespace of the document instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.DEF_ASSEMBLIES">
|
|
<summary>
|
|
List of assemblies attached automatically to the engine on execution.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.m_element">
|
|
<summary>
|
|
Element-owner of current script.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.m_bSourceChanged">
|
|
<summary>
|
|
Indicates whether source was changed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.AxecAsmName">
|
|
<summary>
|
|
Gets the name of the executing assembly.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.Owner">
|
|
<summary>
|
|
Gets or sets the owner of the current script.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.SourceChanged">
|
|
<summary>
|
|
Gets a value indicating whether the source text was changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the HTMLScript class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.#ctor(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLScript class
|
|
</summary>
|
|
<param name="element">Owner of the script code.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.#ctor(System.Runtime.Serialization.SerializationInfo,System.Runtime.Serialization.StreamingContext)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLScript class
|
|
</summary>
|
|
<param name="info">Holds all data for serialization / deserialization object.</param>
|
|
<param name="context">Describes source and destination of serialization.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScript.OnSourceTextChanged(Syncfusion.Scripting.ScriptEventArgs)">
|
|
<summary>
|
|
Overridden. Triggers when the source is changed.
|
|
</summary>
|
|
<param name="evtArgs">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite">
|
|
<summary>
|
|
Inherits ScriptSite class from Scripting for returning by application
|
|
provided event source and global instance objects whenever the script
|
|
engine calls for it through the equivalent IVsaSite method.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.m_control">
|
|
<summary>
|
|
Control instance.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.Document">
|
|
<summary>
|
|
Gets the parent document for this script site.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLScriptSite class from being created.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLUIControl)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLScriptSite class
|
|
</summary>
|
|
<param name="control">Control instance.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.GetEventSourceInstance(System.String,System.String)">
|
|
<summary>
|
|
Overridden. Returns a reference to an event source previously added to a script engine using
|
|
the IVsaCodeItem.AddEventSource method.
|
|
</summary>
|
|
<param name="itemName">Name of the object.</param>
|
|
<param name="eventSourceName">Name of the variable, registered previously
|
|
by AddEventSource method.</param>
|
|
<returns>Object from your host to user's script.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite.GetGlobalInstance(System.String)">
|
|
<summary>
|
|
Overridden. Returns a reference to a global item such as the host-provided application object.
|
|
</summary>
|
|
<param name="globInstanceName">Name of the variable, registered previously
|
|
by AddGlobalInstance method.</param>
|
|
<returns>Global object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.InputHTML">
|
|
<summary>
|
|
Class which is between the control and the HTMLParser.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DEF_SIZE">
|
|
<summary>
|
|
Default size of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DEF_XINDENT">
|
|
<summary>
|
|
Default indent by X coordinate from the sides of the control to the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_hashElementByUniqueID">
|
|
<summary>
|
|
Holds all elements by its unique ID.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_hashElementsByName">
|
|
<summary>
|
|
Holds an array of elements by their name.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_hashElementByUserId">
|
|
<summary>
|
|
Holds elements by their id attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_hashFormatsByUniqueID">
|
|
<summary>
|
|
Holds an array of formats by Unique ID (formats belong to element with such unique ID).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_formatManager">
|
|
<summary>
|
|
Instance to the Format Manager.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_document">
|
|
<summary>
|
|
XML document of our HTML document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_root">
|
|
<summary>
|
|
Root element of our HTML element tree.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_body">
|
|
<summary>
|
|
Instance on body element in the elements tree.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_bDisposed">
|
|
<summary>
|
|
Indicates that we were or were not disposed once.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_userControls">
|
|
<summary>
|
|
Contains all WinForms controls in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_autoScrollMinSize">
|
|
<summary>
|
|
Holds the virtual size of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_autoScrollPosition">
|
|
<summary>
|
|
Scroll position offset.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_searcher">
|
|
<summary>
|
|
Searches and gets the element in which the defined point is located.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_clientRect">
|
|
<summary>
|
|
Client rectangle for this document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_visibleVirtualRect">
|
|
<summary>
|
|
Visible part of the document in virtual coordinates.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_imgCache">
|
|
<summary>
|
|
Cache of images in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_compileErrors">
|
|
<summary>
|
|
Collection of script compile errors.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_bQuietMode">
|
|
<summary>
|
|
Indicates the status of quiet mode of the document.
|
|
Used for interactivity events. If quiet mode is enabled, all changes are
|
|
without any reaction.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_reaction">
|
|
<summary>
|
|
Type of reaction after disabling QuietMode.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_bDestroyControls">
|
|
<summary>
|
|
Indicates whether we must recreate user controls.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_loadException">
|
|
<summary>
|
|
Exception which occurs while loading document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_tabManager">
|
|
<summary>
|
|
Controls the element's focus changing in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_prvElement">
|
|
<summary>
|
|
Instance on Tag element on which the mouse Event occurs.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_originalText">
|
|
<summary>
|
|
Original text of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_startDrawElement">
|
|
<summary>
|
|
Holds the element from which drawing starts.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_bWasDrawn">
|
|
<summary>
|
|
Indicates whether element was drawn after recalculating.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_bIsPrinting">
|
|
<summary>
|
|
Indicates whether document is printing now.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_margins">
|
|
<summary>
|
|
Margins for the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_dataSource">
|
|
<summary>
|
|
Object containing data about the source of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.InputHTML.m_textRegionManager">
|
|
<summary>
|
|
Controls primitives flow during printing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.IsFileName">
|
|
<summary>
|
|
Gets a value indicating whether the input HTML document is loaded from file.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.IsUri">
|
|
<summary>
|
|
Gets a value indicating whether the input HTML document is loaded by Uri.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.IsStream">
|
|
<summary>
|
|
Gets a value indicating whether the input HTML document is loaded from stream.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.FileName">
|
|
<summary>
|
|
Gets the path to the HTML document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Uri">
|
|
<summary>
|
|
Gets the URI to the HTML document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Stream">
|
|
<summary>
|
|
Gets the HTML document stream.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Document">
|
|
<summary>
|
|
Gets the HTML document after transformation.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Root">
|
|
<summary>
|
|
Gets the root element of the HTML elements tree.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RenderRoot">
|
|
<summary>
|
|
Gets an instance of the body tag element.
|
|
</summary>
|
|
<remarks>This element is the root for rendering.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ElementsByUniqueID">
|
|
<summary>
|
|
Gets an hash of elements by their unique ID.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ElementsByUserID">
|
|
<summary>
|
|
Gets an hash of elements by their User ID.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ElementsByTagName">
|
|
<summary>
|
|
Gets an hash of elements by their Tag name.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ElementFormatsByUniqueID">
|
|
<summary>
|
|
Gets an hash of formats by their unique ID.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.IsDisposed">
|
|
<summary>
|
|
Gets a value indicating whether an instance is already disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClientSize">
|
|
<summary>
|
|
Gets or sets the client size of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.AutoScrollMinSize">
|
|
<summary>
|
|
Gets or sets the virtual size of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.AutoScrollPosition">
|
|
<summary>
|
|
Gets or sets the scroll offset position.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.CurrentDirectory">
|
|
<summary>
|
|
Gets or sets the current directory for this document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.CompileErrors">
|
|
<summary>
|
|
Gets an array of script compile errors.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether the status of quiet mode of document.
|
|
If True, all interactivity changes are done without any reaction.
|
|
Turn on this mode before multiple changes and turn off after all.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RenderException">
|
|
<summary>
|
|
Gets the exception object which occured while document parsing and rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Formats">
|
|
<summary>
|
|
Gets the format manager object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.StartPoint">
|
|
<summary>
|
|
Gets or sets the start point to calculate position of elements.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Margins">
|
|
<summary>
|
|
Gets the margins for the document being displayed.
|
|
</summary>
|
|
<remarks>This property exposes leftmargin, topmargin, rightmargin and bottommargin
|
|
of the BODY tag.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.UserControls">
|
|
<summary>
|
|
Gets the list of user control wrappers in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.X">
|
|
<summary>
|
|
Gets or sets the X coordinate for the client position of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Y">
|
|
<summary>
|
|
Gets or sets the Y coordinate for the client position of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClientWidth">
|
|
<summary>
|
|
Gets or sets the client width of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClientHeight">
|
|
<summary>
|
|
Gets or sets the client height of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Searcher">
|
|
<summary>
|
|
Gets the searcher which searches element that contains the defined point.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClientRectangle">
|
|
<summary>
|
|
Gets or sets the client rectangle for the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.VisibleRectangle">
|
|
<summary>
|
|
Gets the visible part of the document in virtual coordinates.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ImageCache">
|
|
<summary>
|
|
Gets the cache of all images in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Reaction">
|
|
<summary>
|
|
Gets or sets the type of document's reaction after disabling quiet mode.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DestroyControls">
|
|
<summary>
|
|
Gets or sets a value indicating whether the user controls in the document must be recreated.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.FocusManager">
|
|
<summary>
|
|
Gets the object that controls the element's focus being changed in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.PrevElement">
|
|
<summary>
|
|
Gets or sets the instance of the Tag element on which the mouse Event occurs.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.OriginalText">
|
|
<summary>
|
|
Gets or sets the original input text of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.WasPainted">
|
|
<summary>
|
|
Gets or sets a value indicating whether element was drawn after position recalculation.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.IsPrinting">
|
|
<summary>
|
|
Gets or sets a value indicating whether the document is printing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.TextRegionManager">
|
|
<summary>
|
|
Gets or sets object managing the objects flow during printing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DataSource">
|
|
<summary>
|
|
Gets the object containing data about the source of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.InputHTML.QuietModeChanged">
|
|
<summary>
|
|
Delegate. Raised when quiet mode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(Syncfusion.Windows.Forms.HTMLUI.FormatManager)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class
|
|
</summary>
|
|
<param name="manager">FormatManager instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.String,Syncfusion.Windows.Forms.HTMLUI.FormatManager)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class
|
|
</summary>
|
|
<param name="filename">string filename</param>
|
|
<param name="manager">FormatManager instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.String,Syncfusion.Windows.Forms.HTMLUI.FormatManager,System.Xml.XmlDocument)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class
|
|
</summary>
|
|
<param name="filename">Path to the source of the HTML data.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
<param name="output">XML document which represents the HTML data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.Uri,Syncfusion.Windows.Forms.HTMLUI.FormatManager)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class
|
|
</summary>
|
|
<param name="uri">Unique Resource identifier (URI) of the HTML document.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.Uri,Syncfusion.Windows.Forms.HTMLUI.FormatManager,System.Xml.XmlDocument)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class. Requires URI to file.
|
|
</summary>
|
|
<param name="uri">Unique Resource identifier (URI) of the HTML document.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
<param name="output">XML storage of the HTML data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.IO.Stream,Syncfusion.Windows.Forms.HTMLUI.FormatManager)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class. Requires the stream of the document.
|
|
</summary>
|
|
<param name="stream">Source stream of the data.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.#ctor(System.IO.Stream,Syncfusion.Windows.Forms.HTMLUI.FormatManager,System.Xml.XmlDocument)">
|
|
<summary>
|
|
Initializes a new instance of the InputHTML class. Requires the stream of the document.
|
|
</summary>
|
|
<param name="stream">Source stream of the data.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
<param name="output">XML document of the HTML document.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.FromString(System.String,Syncfusion.Windows.Forms.HTMLUI.FormatManager)">
|
|
<summary>
|
|
Creates document from string.
|
|
</summary>
|
|
<param name="html">Html data.</param>
|
|
<param name="manager">Format manager object.</param>
|
|
<returns>New document instance.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Dispose">
|
|
<summary>
|
|
Clears all resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DisposeCollection(System.Collections.ArrayList@)">
|
|
<summary>
|
|
Overloaded. Clears and destroys the ArrayList collection.
|
|
</summary>
|
|
<param name="coll">Collection to dispose.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DisposeCollection(System.Collections.Hashtable@)">
|
|
<summary>
|
|
Clears and destroys an Hashtable collection.
|
|
</summary>
|
|
<param name="coll">Collection to dispose.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.DisposeControls">
|
|
<summary>
|
|
Disposes control resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementsByUniqueIdHash">
|
|
<summary>
|
|
Returns the hash of elements by unique ID.
|
|
</summary>
|
|
<returns>Dictionary of elements with keys - UniqueID of elements.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementsByNameHash">
|
|
<summary>
|
|
Returns the hash of elements by name.
|
|
</summary>
|
|
<returns>Dictionary of elements with keys - names of elements.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementsByUserIdHash">
|
|
<summary>
|
|
Returns the hash of elements by ID attribute.
|
|
</summary>
|
|
<returns>Dictionary of elements with keys - user ids.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetCSSFormatsToElementHash">
|
|
<summary>
|
|
Overloaded. Holds an array of formats by Unique ID of element.
|
|
</summary>
|
|
<returns>Dictionary of formats of element by uniqueID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetCSSFormatsToElementHash(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Holds an array of formats by unique ID of element.
|
|
</summary>
|
|
<param name="element">Element from which format calculation starts.</param>
|
|
<returns>Dictionary of formats for element.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementByUniqueId(System.String)">
|
|
<summary>
|
|
Returns the HTML element by its unique ID, if such exists; NULL otherwise.
|
|
</summary>
|
|
<param name="uniqueID">UniqueID of element.</param>
|
|
<returns>Element object by its UniqueID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementByUserId(System.String)">
|
|
<summary>
|
|
Returns the HTML element by its user ID, defined in the HTML document if such exists;
|
|
NULL - otherwise.
|
|
</summary>
|
|
<param name="userID">ID defined in HTML document.</param>
|
|
<returns>Element object by its user ID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetElementsByName(System.String)">
|
|
<summary>
|
|
Returns an array of elements with the specified tag name.
|
|
</summary>
|
|
<param name="name">Name of the tag.</param>
|
|
<returns>Array of elements with the specified name; NULL otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GetControlByElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the custom control by its parent tag element.
|
|
</summary>
|
|
<param name="parent">Parent element containing custom control.</param>
|
|
<returns>Control contained by the parent element if it exists; NULL otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClientToGlobal(System.Drawing.Point)">
|
|
<summary>
|
|
Converts the point from client coordinates to global coordinates.
|
|
</summary>
|
|
<param name="point">Point in client coordinates.</param>
|
|
<returns>Point in global coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.GlobalToClient(System.Drawing.Point)">
|
|
<summary>
|
|
Converts point from global coordinates to client coordinates.
|
|
</summary>
|
|
<param name="point">Point in global coordinates.</param>
|
|
<returns>Point in client coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Draw(System.Windows.Forms.PaintEventArgs,System.Drawing.Point)">
|
|
<summary>
|
|
Draws document to defined region.
|
|
</summary>
|
|
<param name="e">Graphics context.</param>
|
|
<param name="location">Start location for the drawing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Recalculate">
|
|
<summary>
|
|
Recalculates document corresponding to the defined properties.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.BeginUpdate">
|
|
<summary>
|
|
Disables momentary reaction of document to some attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.EndUpdate">
|
|
<summary>
|
|
Enables momentary reaction of document to some attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.OnQuietModeChanged">
|
|
<summary>
|
|
Raised when quiet mode property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RaiseQuietModeChangedEvent">
|
|
<summary>
|
|
Raised event when quiet mode changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RecreateFormatElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Recreates format for this element and recalculates the document.
|
|
</summary>
|
|
<param name="element">Element for recalculating.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.SetCompileErrors(System.Collections.ArrayList)">
|
|
<summary>
|
|
Sets an array of compile errors.
|
|
</summary>
|
|
<param name="errors">Array of compile errors.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.AddCompileError(System.String)">
|
|
<summary>
|
|
Adds compile error message to errors storage.
|
|
</summary>
|
|
<param name="message">Error message to be stored.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RemoveElement(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Removes the specified element from all collections.
|
|
</summary>
|
|
<param name="element">Element to be removed from the document.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.SetError(System.Exception)">
|
|
<summary>
|
|
Sets the loading exception.
|
|
</summary>
|
|
<param name="exception">Rendering exception object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.SetRootElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Sets the root element for the document.
|
|
</summary>
|
|
<param name="root">IHTMLElement instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClearRectSearcher">
|
|
<summary>
|
|
Clears the Rect searcher storage.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.SetStartDrawElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Sets the element from which drawing must be started.
|
|
</summary>
|
|
<param name="startElement">Element from which drawing must be started.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ClearPendingReactions">
|
|
<summary>
|
|
Clears the cache of pending reactions stored as a result of some changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ConvertOriginalText(System.Text.Encoding)">
|
|
<summary>
|
|
Converts the original text of the document using right encoding.
|
|
</summary>
|
|
<param name="encoding">Encoding object</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.PerformChanges">
|
|
<summary>
|
|
Reacts to changes, based on changes.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ReFormatsCreate">
|
|
<summary>
|
|
Creates all formats to elements and recalculates the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ReFormatsMerge">
|
|
<summary>
|
|
Merges formats for all elements and recalculates the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ReCalculateDoc">
|
|
<summary>
|
|
Recalculates the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.RePaintDoc">
|
|
<summary>
|
|
Repaints the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.ProcessDraw(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Starts the drawing of the document from the start element.
|
|
</summary>
|
|
<param name="e">Paint event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.CheckLocation">
|
|
<summary>
|
|
Checks the location of the client rectangle.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.UpdateClientRectangle">
|
|
<summary>
|
|
Updates the client rectangle according to the document size and scroll position.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.SearchRoot">
|
|
<summary>
|
|
Searches for root element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Parse(Syncfusion.HTMLUI.Base.HTMLUIParser)">
|
|
<summary>
|
|
Parses the document from html to xhtml using the specified parser.
|
|
</summary>
|
|
<param name="parser">Parser object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.System#ICloneable#Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.InputHTML.Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx">
|
|
<summary>
|
|
Class that controls one block of script.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.DEF_CLASS_NAME">
|
|
<summary>
|
|
Name of the class after script compiling.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.DEF_CONFIG_NAME">
|
|
<summary>
|
|
Config file extension.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.DEF_SCRIPT_CATEGORY">
|
|
<summary>
|
|
Category at the designer.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_autoRun">
|
|
<summary>
|
|
Indicates whether script must run just after compilation.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_isEmbeded">
|
|
<summary>
|
|
Indicates whether script source is embedded or a separate file.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_fileName">
|
|
<summary>
|
|
Path to file with script code.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_langType">
|
|
<summary>
|
|
Type object for ScriptLanguage enum type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_bFromFile">
|
|
<summary>
|
|
Indicates whether script code is from external file.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.m_bQuietMode">
|
|
<summary>
|
|
Indicates whether the object is in Quite mode.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.AutoRun">
|
|
<summary>
|
|
Gets or sets a value indicating whether the script must be run just after compilation.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.IsEmbeded">
|
|
<summary>
|
|
Gets or sets a value indicating whether the script source is embedded or a separate file.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.File">
|
|
<summary>
|
|
Gets or sets the path to file with script code.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether the Quiet mode for the object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.LangType">
|
|
<summary>
|
|
Gets the type of the ScriptLanguage class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.Path">
|
|
<summary>
|
|
Sets the path to the script file.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.LanguageStr">
|
|
<summary>
|
|
Gets the string representation of the active language.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ScriptManagerEx class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.#ctor(Syncfusion.Windows.Forms.HTMLUI.HTMLScriptSite,Syncfusion.Windows.Forms.HTMLUI.HTMLScript)">
|
|
<summary>
|
|
Initializes a new instance of the ScriptManagerEx class
|
|
</summary>
|
|
<param name="scriptSite">Script site object.</param>
|
|
<param name="script">Owner of the current script.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.Compile">
|
|
<summary>
|
|
Compiles script and runs script if property 'AutoRun' is enabled.
|
|
</summary>
|
|
<returns>Returns True if script was successfully compiled; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.OnScriptChanged(Syncfusion.Scripting.ScriptEventArgs)">
|
|
<summary>
|
|
Overridden. Raised when script has been chnged.
|
|
</summary>
|
|
<param name="evtArgs">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.OnCompileError(Syncfusion.Scripting.VsaErrorEventArgs)">
|
|
<summary>
|
|
Overridden. Raises event that compiles error occured and infills collection of errors.
|
|
</summary>
|
|
<param name="evtArgs">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.ScriptCodeChanged(System.String)">
|
|
<summary>
|
|
Sets the script code to source of script.
|
|
</summary>
|
|
<param name="code">code source.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.SaveToFile(System.String)">
|
|
<summary>
|
|
Saves script code to file.
|
|
</summary>
|
|
<param name="code">Code source.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.SaveToElement(System.String)">
|
|
<summary>
|
|
Saves script to script owner or to a new element.
|
|
</summary>
|
|
<param name="code">Code source.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.InitializeObject">
|
|
<summary>
|
|
Initializes an object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ScriptManagerEx.LoadFromFile(System.String)">
|
|
<summary>
|
|
Loads script code from the file.
|
|
</summary>
|
|
<param name="path">Path to the file with source code.</param>
|
|
<returns>Full path to the file if it exists; empty string otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Block">
|
|
<summary>
|
|
Class for containing elements used for drawing (Text elements or BaseElements).
|
|
One object represents one line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_width">
|
|
<summary>
|
|
Width of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_height">
|
|
<summary>
|
|
Height of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_container">
|
|
<summary>
|
|
Container of elements as keys and rectangles with coordinates as values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_owner">
|
|
<summary>
|
|
Reference to the element which contains this block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_keys">
|
|
<summary>
|
|
Contains all keys (Needed for running through keys in order).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_posX">
|
|
<summary>
|
|
Block left position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_posY">
|
|
<summary>
|
|
Block top position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_hShifted">
|
|
<summary>
|
|
Indicates whether block was horizontally aligned.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_vShifted">
|
|
<summary>
|
|
Indicates whether block was vertically aligned.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_drawProperties">
|
|
<summary>
|
|
Indicates whether to draw borders, backgrounds, etc. for this block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_isFixedX">
|
|
<summary>
|
|
Indicates whether block X coordinate is hard defined.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_isFixedY">
|
|
<summary>
|
|
Indicates whether block Y coordinate is hard defined.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_isMain">
|
|
<summary>
|
|
Indicates whether current block is main for its owner.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_finalWidth">
|
|
<summary>
|
|
Final width of the block. Must be defined after block is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_finalHeight">
|
|
<summary>
|
|
Final height of the block. Must be defined after block is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_rect">
|
|
<summary>
|
|
Rectangle of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_bQuietMode">
|
|
<summary>
|
|
Indicates the quiet mode for events.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Block.m_bWasDrawn">
|
|
<summary>
|
|
Indicates whether block was drawn at first.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Bounds">
|
|
<summary>
|
|
Gets the bounds of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsMain">
|
|
<summary>
|
|
Gets or sets a value indicating whether the block is main for its owner element which has a block structure.
|
|
</summary>
|
|
<remarks>Only elements with block structure have main block containing whole element.
|
|
Inline elements do not have main blocks.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Width">
|
|
<summary>
|
|
Gets or sets the width of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.FinalWidth">
|
|
<summary>
|
|
Gets or sets the final width of the block (depends of style width of the element).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.FinalHeight">
|
|
<summary>
|
|
Gets or sets the final height of the block (depends of style width of the element).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Height">
|
|
<summary>
|
|
Gets or sets the height of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Containter">
|
|
<summary>
|
|
Gets or sets the hash that contains elements for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.First">
|
|
<summary>
|
|
Gets the first element in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.X">
|
|
<summary>
|
|
Gets or sets the X coordinate of the location block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Y">
|
|
<summary>
|
|
Gets or sets the Y coordinate of location block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Owner">
|
|
<summary>
|
|
Gets the tag element which contains this block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsFixedLeftPos">
|
|
<summary>
|
|
Gets a value indicating whether the fixed left position is defined.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsFixedTopPos">
|
|
<summary>
|
|
Gets a value indicating whether the fixed top position is defined.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Item(System.Object)">
|
|
<summary>
|
|
Gets or sets the values to the container.
|
|
(Text or blocks as keys and rectangle as values).
|
|
</summary>
|
|
<param name="key">Any object representing key value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Item(System.Int32)">
|
|
<summary>
|
|
Returns the object in the block with the specified index.
|
|
</summary>
|
|
<param name="index">Interger index value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsEmpty">
|
|
<summary>
|
|
Gets a value indicating whether the block is empty.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsHShifted">
|
|
<summary>
|
|
Gets or sets a value indicating whether the block was horizontally shifted (aligned).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.IsVShifted">
|
|
<summary>
|
|
Gets or sets a value indicating whether the block was vertically shifted (aligned).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Rectangle">
|
|
<summary>
|
|
Gets or sets the bounds of rectangle for the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.DrawProperties">
|
|
<summary>
|
|
Gets or sets a value indicating whether we can draw borders, backgrounds, etc. for this block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.Count">
|
|
<summary>
|
|
Gets the number of elements in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.QuietMode">
|
|
<summary>
|
|
Gets or sets a value indicating whether the quiet mode for the block object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Block.WasDrawn">
|
|
<summary>
|
|
Gets or sets a value indicating whether the block was drawn.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.Block.LocationChanged">
|
|
<summary>
|
|
Event. Raised when location of block is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the Block class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.#ctor(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Initializes a new instance of the Block class
|
|
</summary>
|
|
<param name="owner">Owner of the block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.Add(System.Object,System.Object)">
|
|
<summary>
|
|
Adds an element to the block.
|
|
</summary>
|
|
<param name="key">Key for adding to the block.</param>
|
|
<param name="value">Value for adding to the block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.Insert(System.Int32,System.Object,System.Object)">
|
|
<summary>
|
|
Inserts element to the specified position.
|
|
</summary>
|
|
<param name="index">Index where the insert is to occur.</param>
|
|
<param name="key">Key for adding to the block.</param>
|
|
<param name="value">Value for adding to the block.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.Clear">
|
|
<summary>
|
|
Clears all content of the block.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.Remove(System.Object)">
|
|
<summary>
|
|
Removes element from the block.
|
|
</summary>
|
|
<param name="key">Key by which element will be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.Contains(System.Object)">
|
|
<summary>
|
|
Indicates whether the key exists in the hashtable.
|
|
</summary>
|
|
<param name="key">Key by which element will be searched in the hashtable.</param>
|
|
<returns>True if element exists; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.RaiseLocationChanged(System.EventArgs)">
|
|
<summary>
|
|
Raises LocationChanged event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.OnLocationChanged(System.EventArgs)">
|
|
<summary>
|
|
Raises LocationChanged event.
|
|
</summary>
|
|
<param name="args">Event arguments.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.ClearEvents">
|
|
<summary>
|
|
Clears event handlers for this block.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.RaiseEvents">
|
|
<summary>
|
|
Raises LocationChanged event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.ResetRectCache">
|
|
<summary>
|
|
Resets and renews cached Rectangle value.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Block.GetEnumerator">
|
|
<summary>
|
|
Returns the enumerator for this object.
|
|
</summary>
|
|
<returns>Enumerator object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage">
|
|
<summary>
|
|
Class that represents exporting support in the HTMLUIControl.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.m_oldDocSize">
|
|
<summary>
|
|
Size of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.m_oldMargins">
|
|
<summary>
|
|
Start point of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.m_oldDocScrollPos">
|
|
<summary>
|
|
Scroll position of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.m_numExported">
|
|
<summary>
|
|
Indicates number of pages already exported.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.m_bFirstImage">
|
|
<summary>
|
|
Indicates whether first page is printed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.GetExportedImages(Syncfusion.Windows.Forms.HTMLUI.IInputHTML,System.Drawing.Size)">
|
|
<summary>
|
|
Creates an array of images where the document will be printed.
|
|
</summary>
|
|
<param name="document">Document object to be exported.</param>
|
|
<param name="imageSize">Size of the images where the document will be printed.</param>
|
|
<returns>Image array</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.SaveImage(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.Drawing.Image,System.Drawing.Size)">
|
|
<summary>
|
|
Prints document to image.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
<param name="img">Image where document will be printed.</param>
|
|
<param name="imageSize">Size of the image.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.PrepareDocument(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.Drawing.Size)">
|
|
<summary>
|
|
Prepares document for exporting.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
<param name="imageSize">Size of the image.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.CalculateClipRegion(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.Drawing.Size)">
|
|
<summary>
|
|
Calculates the clip rectangle for the document in the current page.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
<param name="imageSize">Size of the image.</param>
|
|
<returns>Clip rectangle for the current image.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.GetImagesCount(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.Drawing.Size)">
|
|
<summary>
|
|
Calculates the number of images in the document.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
<param name="imageSize">Size of the image.</param>
|
|
<returns>Count of images in the document.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.GetEachImageBound(System.Drawing.Size)">
|
|
<summary>
|
|
Calculates the printable area of the image.
|
|
</summary>
|
|
<param name="imageSize">Size of the image.</param>
|
|
<returns>Printable area of the image.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.SaveBounds(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Stores the current bounds of the document.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.RestoreBounds(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Restores the bounds of the document.
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIExportImage.DrawToImages(Syncfusion.Windows.Forms.HTMLUI.InputHTML,System.Drawing.Size)">
|
|
<summary>
|
|
Method that supports printing the document to Images
|
|
</summary>
|
|
<param name="document">Document containing the data to be printed to images.</param>
|
|
<param name="imageSize">Size of the images.</param>
|
|
<returns>Array of images containing the document.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PathType">
|
|
<summary>
|
|
Type of path in history.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PathType.Unknown">
|
|
<summary>
|
|
Type is unknown.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PathType.File">
|
|
<summary>
|
|
Document is local file.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PathType.Uri">
|
|
<summary>
|
|
Document is Uri resource.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.History">
|
|
<summary>
|
|
Class that represents the history of loaded HTML documents for the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_historyIndex">
|
|
<summary>
|
|
Index of current position in the history stack.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_PathIndex">
|
|
<summary>
|
|
Holds path of the document as key and the history index of this path as value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_IndexPath">
|
|
<summary>
|
|
Holds the path of document as value and the history index of this path as key.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_indexType">
|
|
<summary>
|
|
Holds the type of path. FileName or Uri.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_visitedLinks">
|
|
<summary>
|
|
Array holding all visited links of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.History.m_bDisposed">
|
|
<summary>
|
|
Indicates whether the object has been disposed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.History.Count">
|
|
<summary>
|
|
Gets the number of items in the history.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.History.CurrentIndex">
|
|
<summary>
|
|
Gets the current index in the history.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.History.Item(System.Int32)">
|
|
<summary>
|
|
Gets the type of path for the document with the specified index.
|
|
</summary>
|
|
<param name="index">Integer index value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the History class
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.Push(System.String,Syncfusion.Windows.Forms.HTMLUI.PathType)">
|
|
<summary>
|
|
Pushes the path to the document in the history.
|
|
</summary>
|
|
<param name="path">String path for history inserting.</param>
|
|
<param name="type">Type of path.</param>
|
|
<returns>Integer value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.Pop(System.Int32)">
|
|
<summary>
|
|
Returns the path from history stack container according to the defined deep value.
|
|
If step is greater than stack capacity, it returns an empty string.
|
|
</summary>
|
|
<param name="deep">Index in history for getting the path.</param>
|
|
<returns>History item.</returns>
|
|
<remarks>Deep value must be less than or equal to zero.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.GetAt(System.Int32)">
|
|
<summary>
|
|
Returns the path from history stack container according to the defined deep value.
|
|
If step is greater than stack capacity, it returns an empty string.
|
|
</summary>
|
|
<param name="deep">Index in history for getting path.</param>
|
|
<returns>History item.</returns>
|
|
<remarks>Deep value must be less than or equal to zero.
|
|
This method does not remove any elements from the history stack.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether the specified path already exists in the history.
|
|
</summary>
|
|
<param name="path">Path for searching.</param>
|
|
<returns>True if history already contains such path; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.ResetVisited">
|
|
<summary>
|
|
Resets the list of visited links.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.ExcludeFromVisited(Syncfusion.Windows.Forms.HTMLUI.AElementImpl)">
|
|
<summary>
|
|
Excludes the link element from the list of visited links.
|
|
</summary>
|
|
<param name="linkElement">Element for excluding from visited list.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.History.Dispose">
|
|
<summary>
|
|
Disposes object.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HistoryPair">
|
|
<summary>
|
|
Class that represents pairs of history data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.m_key">
|
|
<summary>
|
|
Key of the history.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.m_tag">
|
|
<summary>
|
|
Type of the item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.Key">
|
|
<summary>
|
|
Gets or sets the key in the history.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.Tag">
|
|
<summary>
|
|
Gets or sets the type of the item in the history.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.KeyChanged">
|
|
<summary>
|
|
Event. Raised when key has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.TagChanged">
|
|
<summary>
|
|
Event. Raised when type of item has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.RaiseKeyChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises KeyChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.RaiseTagChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises TagChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.#ctor(System.String,Syncfusion.Windows.Forms.HTMLUI.PathType)">
|
|
<summary>
|
|
Initializes a new instance of the HistoryPair class
|
|
</summary>
|
|
<param name="key">String key value</param>
|
|
<param name="tag">PathType instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.OnKeyChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises KeyChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HistoryPair.OnTagChanged(Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Raises TagChanged event.
|
|
</summary>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Margins">
|
|
<summary>
|
|
Utility class representing margins support in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Margins.m_body">
|
|
<summary>
|
|
Body tag element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Margins.Left">
|
|
<summary>
|
|
Gets or sets the left margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Margins.Top">
|
|
<summary>
|
|
Gets or sets the top margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Margins.Right">
|
|
<summary>
|
|
Gets or sets the right margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Margins.Bottom">
|
|
<summary>
|
|
Gets or sets the bottom margin attribute for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Margins.Body">
|
|
<summary>
|
|
Gets the body tag element containing margins values.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Margins.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the Margins class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Margins.#ctor(Syncfusion.Windows.Forms.HTMLUI.BODYElementImpl)">
|
|
<summary>
|
|
Initializes a new instance of the Margins class
|
|
</summary>
|
|
<param name="body">Body tag element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument">
|
|
<summary>
|
|
Class that represents printing support in the HTMLUIControl.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.DEF_MEASURE_FACTOR">
|
|
<summary>
|
|
Measure factor.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_document">
|
|
<summary>
|
|
Document object to be printed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_oldMargins">
|
|
<summary>
|
|
Start point of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_oldDocSize">
|
|
<summary>
|
|
Size of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_oldDocScrollPos">
|
|
<summary>
|
|
Scroll position of the document before printing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_curPage">
|
|
<summary>
|
|
Index of the currently printing page.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_curCopy">
|
|
<summary>
|
|
Indicates the current copy of the page.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_numPrinted">
|
|
<summary>
|
|
Indicates the number of pages already printed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_bFirstPage">
|
|
<summary>
|
|
Indicates whether the first page is printed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_nextScrollPosition">
|
|
<summary>
|
|
Current scroll position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_oldGraphics">
|
|
<summary>
|
|
Contains original graphics of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.m_pages">
|
|
<summary>
|
|
Array of pages.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the HTMLUIPrintDocument class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.#ctor(Syncfusion.Windows.Forms.HTMLUI.IInputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the HTMLUIPrintDocument class
|
|
</summary>
|
|
<param name="document">Document object to be printed.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.Dispose(System.Boolean)">
|
|
<summary>
|
|
Disposes the document.
|
|
</summary>
|
|
<param name="disposing">True to dispose all resources, False - to unmanaged resources only.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.OnBeginPrint(System.Drawing.Printing.PrintEventArgs)">
|
|
<summary>
|
|
Overridden. Raised before the document prints.
|
|
</summary>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.OnEndPrint(System.Drawing.Printing.PrintEventArgs)">
|
|
<summary>
|
|
Overridden. Raised when printing is finished.
|
|
</summary>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.OnPrintPage(System.Drawing.Printing.PrintPageEventArgs)">
|
|
<summary>
|
|
Overridden. Prints the page on the printer.
|
|
</summary>
|
|
<param name="e">Event data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.PrepareDocument">
|
|
<summary>
|
|
Prepares the document for printing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.CheckForMorePages(System.Drawing.Printing.PrintPageEventArgs)">
|
|
<summary>
|
|
Checks if there are any pages to be printed next.
|
|
</summary>
|
|
<param name="e">Printing data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.SetNextPage">
|
|
<summary>
|
|
Sets the index of next printed page.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.IsPagePrintable">
|
|
<summary>
|
|
Indicates whether the current page must be printed.
|
|
</summary>
|
|
<returns>True if page is printable; False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.GetFrom">
|
|
<summary>
|
|
Returns the index of the first printing page.
|
|
</summary>
|
|
<returns>Index of the first printing page.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.GetTo">
|
|
<summary>
|
|
Returns the index of the last printing page if it's set by user.
|
|
</summary>
|
|
<returns>Index of the last printing page.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.GetPagesInDocument">
|
|
<summary>
|
|
Calculates the number of pages in the document.
|
|
</summary>
|
|
<returns>Count of pages in the document.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.CalculateCopies">
|
|
<summary>
|
|
Calculates the number of copies of the pages printed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.SetFirstPage">
|
|
<summary>
|
|
Sets the index of the first printed page.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.GetPageMarginBound">
|
|
<summary>
|
|
Calculates the printable area of the page.
|
|
</summary>
|
|
<returns>Printable area of the page.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.GetNonPrintableSize(System.Drawing.Graphics)">
|
|
<summary>
|
|
Returns the nonprintable area for the printer.
|
|
</summary>
|
|
<param name="g">Device context.</param>
|
|
<returns>Nonprintable area for the printer.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.SaveBounds">
|
|
<summary>
|
|
Stores the current bounds of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.RestoreBounds">
|
|
<summary>
|
|
Restores the bounds of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.CalculateScrollPosition(System.Drawing.Rectangle)">
|
|
<summary>
|
|
Calculates current scroll position.
|
|
</summary>
|
|
<param name="marginBounds">Page bounds.</param>
|
|
<returns>The height of the page.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.HasMorePages">
|
|
<summary>
|
|
Checks whether there are any unprinted pages.
|
|
</summary>
|
|
<returns>True - if there are any unprinted pages, False otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HTMLUIPrintDocument.RenderPages(System.Drawing.Printing.PrintPageEventArgs)">
|
|
<summary>
|
|
Renders the pages into the array of bitmaps.
|
|
</summary>
|
|
<param name="e">Page print arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Space">
|
|
<summary>
|
|
Structure which contains space around the tag elements such as paddings, borders, etc...
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Space.m_parent">
|
|
<summary>
|
|
Parent element for this structure.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Space.Left">
|
|
<summary>
|
|
Gets the left indent space for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Space.Top">
|
|
<summary>
|
|
Gets the top indent space for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Space.Right">
|
|
<summary>
|
|
Gets the right indent space for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Space.Bottom">
|
|
<summary>
|
|
Gets the bottom indent space for the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Space.#ctor(Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Initializes a new instance of the Space struct
|
|
</summary>
|
|
<param name="element">Parent element for this object.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Text">
|
|
<summary>
|
|
Class which represents string in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Text.m_node">
|
|
<summary>
|
|
Text in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Text.m_bCalculated">
|
|
<summary>
|
|
Indicates whether the content of this object is calculated for selecting.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Text.m_startNumber">
|
|
<summary>
|
|
Indicates the number from which the symbol of the element in this object starts.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Text.m_symbols">
|
|
<summary>
|
|
Collection of symbols in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.Text.m_parent">
|
|
<summary>
|
|
Parent block containing this text object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Text.Value">
|
|
<summary>
|
|
Gets or sets the string text in the block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Text.IsCalculated">
|
|
<summary>
|
|
Gets or sets a value indicating whether the content of this object is calculated for selecting.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Text.StartNumber">
|
|
<summary>
|
|
Gets or sets the number from which the symbol of the element in this object starts.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Text.Symbols">
|
|
<summary>
|
|
Gets the collection of symbols in the text object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Text.Parent">
|
|
<summary>
|
|
Gets or sets the parent block containing this text object.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Text.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the Text class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Text.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the Text class
|
|
</summary>
|
|
<param name="value">String text data.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Text.System#ICloneable#Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Text.Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs">
|
|
<summary>
|
|
Message class used for sending to user the old and new values of
|
|
property. It simply gives access to the new and old values and does
|
|
not allow user to change them.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs._empty">
|
|
<summary>
|
|
Instance of the class which must be used as Empty analog for this class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.Empty">
|
|
<summary>
|
|
Gets an instance of the class which is detected as an empty / NULL value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.m_old">
|
|
<summary>
|
|
Storage of old value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.m_new">
|
|
<summary>
|
|
Storage of new value.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.NewValue">
|
|
<summary>
|
|
Gets the newly set value.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.OldValue">
|
|
<summary>
|
|
Gets the old value that was replaced by a new one.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ValueChangedEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs.#ctor(System.Object,System.Object)">
|
|
<summary>
|
|
Initializes a new instance of the ValueChangedEventArgs class
|
|
</summary>
|
|
<param name="old">Old value</param>
|
|
<param name="newValue">new value</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs">
|
|
<summary>
|
|
Message class which can be sent to the user before property
|
|
value changes. On sending the class, the property must not be changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs._empty">
|
|
<summary>
|
|
Empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.Empty">
|
|
<summary>
|
|
Gets an empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.m_name">
|
|
<summary>
|
|
Name of property which will be changed soon.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.m_values">
|
|
<summary>
|
|
Storage of new and old values.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.Name">
|
|
<summary>
|
|
Gets the name of the property which will be changed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.Values">
|
|
<summary>
|
|
Gets the old and new value. Old value of property is still not replaced by
|
|
message class sender.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the BeforeValueChangedEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangedEventArgs.#ctor(System.String,Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventArgs)">
|
|
<summary>
|
|
Initializes a new instance of the BeforeValueChangedEventArgs class
|
|
</summary>
|
|
<param name="name">string value</param>
|
|
<param name="args">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs">
|
|
<summary>
|
|
Class which is used for sending messages between the collection and the user.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs._empty">
|
|
<summary>
|
|
Empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.Empty">
|
|
<summary>
|
|
Gets an empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.m_bCancel">
|
|
<summary>
|
|
Storage of the Cancel property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.m_iIndex">
|
|
<summary>
|
|
Storage of the Index property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.m_value">
|
|
<summary>
|
|
Storage of the Value property.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.m_oldValue">
|
|
<summary>
|
|
Storage of the OldValue property.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.Cancel">
|
|
<summary>
|
|
Gets or sets a value indicating whether class will skip call to base Collection method; False indicates that the
|
|
CollectionBase's class override method will be called.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.Index">
|
|
<summary>
|
|
Gets the index of the item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.Value">
|
|
<summary>
|
|
Gets the value of the item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.OldValue">
|
|
<summary>
|
|
Gets the old value of the property.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the CollectionEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.#ctor(System.Int32,System.Object)">
|
|
<summary>
|
|
Initializes a new instance of the CollectionEventArgs class
|
|
</summary>
|
|
<param name="index">Index of the item.</param>
|
|
<param name="value">Value - reference to the collection item.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.CollectionEventArgs.#ctor(System.Int32,System.Object,System.Object)">
|
|
<summary>
|
|
Initializes a new instance of the CollectionEventArgs class
|
|
</summary>
|
|
<param name="index">Index of the item.</param>
|
|
<param name="value">Value - reference to the collection item.</param>
|
|
<param name="old">Old value of the item.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs">
|
|
<summary>
|
|
Message / Data sender class. Class allows user to cancel action in which it was used
|
|
as message sender class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs._empty">
|
|
<summary>
|
|
Empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.Empty">
|
|
<summary>
|
|
Gets an empty instance of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.m_bCancel">
|
|
<summary>
|
|
Indicates whether to cancel the current action.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.m_key">
|
|
<summary>
|
|
Key value of the dictionary item.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.m_value">
|
|
<summary>
|
|
Dictionary item.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.m_oldValue">
|
|
<summary>
|
|
On Replace, get the dictionary item which will be replaced.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.Cancel">
|
|
<summary>
|
|
Gets or sets a value indicating whether to cancel the current action.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.Key">
|
|
<summary>
|
|
Gets the key value of the dictionary item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.Value">
|
|
<summary>
|
|
Gets the dictionary item.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.OldValue">
|
|
<summary>
|
|
Gets the dictionary item which will be replaced.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the DictionaryEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.#ctor(System.Object,System.Object)">
|
|
<summary>
|
|
Initializes a new instance of the DictionaryEventArgs class
|
|
</summary>
|
|
<param name="key">Key of object.</param>
|
|
<param name="value">Value of object.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventArgs.#ctor(System.Object,System.Object,System.Object)">
|
|
<summary>
|
|
Initializes a new instance of the DictionaryEventArgs class
|
|
</summary>
|
|
<param name="key">Key of object.</param>
|
|
<param name="value">Value of object.</param>
|
|
<param name="old">Old value of the object.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs">
|
|
<summary>
|
|
Event Arguments is used to delegate XML document with CSS data.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs._empty">
|
|
<summary>
|
|
An instance of the class which must be used as an empty analog for this class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.Empty">
|
|
<summary>
|
|
Gets an instance of class which is detected as empty / NULL value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.m_document">
|
|
<summary>
|
|
Writes XHTML document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.m_element">
|
|
<summary>
|
|
HTML Element which has CSS.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.XmlStorge">
|
|
<summary>
|
|
Gets the old value that is replaced by a new one.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.Element">
|
|
<summary>
|
|
Gets the HTML Element which contains CSS.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ElementHasCssEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementHasCssEventArgs.#ctor(System.Xml.XmlDocument,Syncfusion.Windows.Forms.HTMLUI.BaseElement)">
|
|
<summary>
|
|
Initializes a new instance of the ElementHasCssEventArgs class
|
|
</summary>
|
|
<param name="document">XmlDocument instance</param>
|
|
<param name="element">BaseElement instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs">
|
|
<summary>
|
|
Event Arguments for Tag elements. We can set flag delegate event to parent.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.m_bBubbling">
|
|
<summary>
|
|
Indicates whether to delegate event to other elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.m_inherit">
|
|
<summary>
|
|
Standard event arguments.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.m_firstSender">
|
|
<summary>
|
|
Holds the first sender of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.Bubbling">
|
|
<summary>
|
|
Gets or sets a value indicating whether to delegate event to other elements.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.EventArgs">
|
|
<summary>
|
|
Gets the standard event arguments.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.RootSender">
|
|
<summary>
|
|
Gets the first sender of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.BubblingEventArgs.#ctor(System.Object,System.EventArgs)">
|
|
<summary>
|
|
Initializes a new instance of the BubblingEventArgs class
|
|
</summary>
|
|
<param name="firstSender">Source of the event</param>
|
|
<param name="inherit">Event arguments.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs">
|
|
<summary>
|
|
Event arguments for Tag elements. We can set flag delegate event to parent.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs.m_stream">
|
|
<summary>
|
|
Stream for image.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs.m_key">
|
|
<summary>
|
|
Key for image cache.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs.Stream">
|
|
<summary>
|
|
Gets or sets the image stream.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs.Key">
|
|
<summary>
|
|
Gets or sets the unique key for image cache.
|
|
If key is NULL, image will not be inserted into the cache.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.NoImageEventArgs.#ctor">
|
|
<summary>
|
|
Initializes a new instance of the NoImageEventArgs class
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs">
|
|
<summary>
|
|
Event arguments for Tag elements. We can set flag delegate event to parent.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs.m_document">
|
|
<summary>
|
|
New document which was just created.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs.Document">
|
|
<summary>
|
|
Gets the image stream.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentArgs.#ctor(Syncfusion.Windows.Forms.HTMLUI.InputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the PreRenderDocumentArgs class
|
|
</summary>
|
|
<param name="document">Document which is going to be rendered.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs">
|
|
<summary>
|
|
Event argument for user control tag elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs.m_event">
|
|
<summary>
|
|
Event instance.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs.m_strName">
|
|
<summary>
|
|
Name of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs.Name">
|
|
<summary>
|
|
Gets the name of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs.Event">
|
|
<summary>
|
|
Gets or sets the event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventArgs.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the EnhanceEventsEventArgs class
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs">
|
|
<summary>
|
|
Arguments for event before the format of element is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs.m_styles">
|
|
<summary>
|
|
Hashtable of styles for merging.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs.Styles">
|
|
<summary>
|
|
Gets the collection of IHTMLFormat objects from which the final style of element
|
|
would be calculated. Significance of styles raises from the beginning to the end.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs.Item(System.Int32)">
|
|
<summary>
|
|
Returns the IHTMLFormat object from collection by its index.
|
|
</summary>
|
|
<param name="index">index value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the PreStyleCalculatedEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventArgs.#ctor(System.Collections.ArrayList)">
|
|
<summary>
|
|
Initializes a new instance of the PreStyleCalculatedEventArgs class
|
|
</summary>
|
|
<param name="styles">Collection of IHTMLFormat objects.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs">
|
|
<summary>
|
|
Class of arguments for raising OnPaint event of the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.m_args">
|
|
<summary>
|
|
Paint arguments for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.m_block">
|
|
<summary>
|
|
Block for painting.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.m_bCancel">
|
|
<summary>
|
|
Indicates whether painting should be cancelled.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.PaintingBlock">
|
|
<summary>
|
|
Gets the block of element which is to be painted.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.Graphics">
|
|
<summary>
|
|
Gets the graphics context of the element for drawing.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.Cancel">
|
|
<summary>
|
|
Gets or sets a value indicating whether painting of the block should be cancelled.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the ElementPaintEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.#ctor(System.Windows.Forms.PaintEventArgs,Syncfusion.Windows.Forms.HTMLUI.Block)">
|
|
<summary>
|
|
Initializes a new instance of the ElementPaintEventArgs class
|
|
</summary>
|
|
<param name="e">Event arguments for drawing.</param>
|
|
<param name="block">Block which is going to be drawn.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventArgs.DrawDefault">
|
|
<summary>
|
|
Invokes default drawing of the element by control.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs">
|
|
<summary>
|
|
Class corresponding to arguments in a document that renders error.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs.m_document">
|
|
<summary>
|
|
Document object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs.Document">
|
|
<summary>
|
|
Gets the document on which rendering error has occurred.
|
|
</summary>
|
|
<remarks>For more details, see RenderException property of document.</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs.#ctor">
|
|
<summary>
|
|
Prevents a default instance of the LoadErrorEventArgs class from being created
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventArgs.#ctor(Syncfusion.Windows.Forms.HTMLUI.IInputHTML)">
|
|
<summary>
|
|
Initializes a new instance of the LoadErrorEventArgs class
|
|
</summary>
|
|
<param name="document">Document on which rendering error has occurred.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs">
|
|
<summary>
|
|
Class corresponding to 'Find' event in FindDialog class.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.m_text">
|
|
<summary>
|
|
Text for searching.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.m_index">
|
|
<summary>
|
|
Start index for text searching.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.m_bForward">
|
|
<summary>
|
|
Indicates whether searching is forward.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.m_bMatchCase">
|
|
<summary>
|
|
Indicates whether search should match case.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.Text">
|
|
<summary>
|
|
Gets the text for searching.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.StartIndex">
|
|
<summary>
|
|
Gets or sets the index from which searching starts.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.IsForward">
|
|
<summary>
|
|
Gets a value indicating whether the order of searching is forward.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.MatchCase">
|
|
<summary>
|
|
Gets a value indicating whether search should match case.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.FindTextEventArgs.#ctor(System.String,System.Int32,System.Boolean,System.Boolean)">
|
|
<summary>
|
|
Initializes a new instance of the FindTextEventArgs class
|
|
</summary>
|
|
<param name="text">String text for searching.</param>
|
|
<param name="startIndex">Index from which to start text searching.</param>
|
|
<param name="isForward">Indicates whether order of searching is forward.</param>
|
|
<param name="matchCase">Indicates whether search should match case.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs">
|
|
<summary>
|
|
Event arguments for event raised by
|
|
element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs.m_path">
|
|
<summary>
|
|
Path to the resource.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs.m_bCancel">
|
|
<summary>
|
|
Indicates whether default processing should be cancelled.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs.Path">
|
|
<summary>
|
|
Gets or sets the path to the resource that is to be loaded.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs.Cancel">
|
|
<summary>
|
|
Gets or sets a value indicating whether default processing of resource loading should
|
|
be cancelled.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventArgs.#ctor(System.String)">
|
|
<summary>
|
|
Initializes a new instance of the LinkForwardEventArgs class
|
|
</summary>
|
|
<param name="path">Path to the resource.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BeforeValueChangeEventHandler">
|
|
<summary>
|
|
Delegate used before value is changed.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">BeforeValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ValueChangedEventHandler">
|
|
<summary>
|
|
Delegate used after value is changed.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">ValueChangedEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.CollectionEventHandler">
|
|
<summary>
|
|
Delegate used by collection to send messages to user throwing events.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">CollectionEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.DictionaryEventHandler">
|
|
<summary>
|
|
Delegate which is used for throwing events.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">DictionaryEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HasCssEventHandler">
|
|
<summary>
|
|
Delegate which is used for throwing events.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">ElementHasCssEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.EnhanceEventsEventHandler">
|
|
<summary>
|
|
Delegate which is used for creating special events in user controls.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">EnhanceEventsEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.NoImageEventHandler">
|
|
<summary>
|
|
Delegate which is used for defining image by user when image by src
|
|
attribute could not be found.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">NoImageEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PreRenderDocumentEventHandler">
|
|
<summary>
|
|
Delegate which is used for event raising when document has been created but
|
|
its size and location of elements are not yet.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">PreRenderDocumentArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.PreStyleCalculatedEventHandler">
|
|
<summary>
|
|
Delegate which is used for event raising just before formats merge for the
|
|
element.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">PreStyleCalculatedEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementPaintEventHandler">
|
|
<summary>
|
|
Delegate which is used for invoking events before the HTML element's block painting.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">ElementPaintEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LoadErrorEventHandler">
|
|
<summary>
|
|
Delegate which is used for raising an event if exception occurs while rendering a document.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e"> LoadErrorEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FindTextEventHandler">
|
|
<summary>
|
|
Delegate which is used for raising 'the FindText' event by FindDialog.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">FindTextEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.LinkForwardEventHandler">
|
|
<summary>
|
|
Delegate which is used for raising
|
|
element.
|
|
</summary>
|
|
<param name="sender">Source of the event</param>
|
|
<param name="e">LinkForwardEventArgs instance</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.AttributeToken">
|
|
<summary>
|
|
Tokens which represent attribute values.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Empty">
|
|
<summary>
|
|
Default value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Integer">
|
|
<summary>
|
|
Value is an integer type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Percent">
|
|
<summary>
|
|
Value is in percentage form.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Bool">
|
|
<summary>
|
|
Value is a Boolean type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.String">
|
|
<summary>
|
|
Value has a string type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Point">
|
|
<summary>
|
|
Value has a point form (Integer, Integer).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Float">
|
|
<summary>
|
|
Value has a float type.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Triangle">
|
|
<summary>
|
|
Value has a triangle form (Integer, Integer, Integer).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Rectangle">
|
|
<summary>
|
|
Value has a rectangle form (Integer, Integer, Integer, Integer).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Font">
|
|
<summary>
|
|
Value has font names.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Color_Hex">
|
|
<summary>
|
|
Value is a color represented by hash value (#XXXXXX).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Color_rgb">
|
|
<summary>
|
|
Value is a color represented by RGB values (rgb(XX, XX, XX)).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Color_Word">
|
|
<summary>
|
|
Value is a color represented by name (black, white, cyan, etc ...).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Uri">
|
|
<summary>
|
|
Value is a URI.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.BorderStyle">
|
|
<summary>
|
|
Value is a border style.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.FontFamily">
|
|
<summary>
|
|
Value is a font family.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.FontStyle">
|
|
<summary>
|
|
Value is a font style.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.FontWeight">
|
|
<summary>
|
|
Value is a font weight.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.FontSize">
|
|
<summary>
|
|
Value is a font size.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.TextDecoration">
|
|
<summary>
|
|
Value is a text decoration.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.AttributeToken.Complex">
|
|
<summary>
|
|
Value has a complex form (consists of a few tokens).
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ListItemType">
|
|
<summary>
|
|
Specifies the type of the list item.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType._1">
|
|
<summary>
|
|
Default. Associate numbers with each item in an ordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.a">
|
|
<summary>
|
|
Associate lowercase letters with each item in an ordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.A">
|
|
<summary>
|
|
Associate uppercase letters with each item in an ordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.i">
|
|
<summary>
|
|
Associate small Roman numerals with each item in an ordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.I">
|
|
<summary>
|
|
Associate large Roman numerals with each item in an ordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.disc">
|
|
<summary>
|
|
Associate a solid disc with each item in an unordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.circle">
|
|
<summary>
|
|
Associate a hollow circle with each item in an unordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ListItemType.square">
|
|
<summary>
|
|
Associate a solid square with each item in an unordered list.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ReactType">
|
|
<summary>
|
|
Enum type which describes the type of the reaction when some attributes
|
|
of an element changes.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.None">
|
|
<summary>
|
|
No reaction on changing attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.RePaintElement">
|
|
<summary>
|
|
Element must be repainted.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.RePaintDocument">
|
|
<summary>
|
|
All documents must be repainted.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.RePositionElement">
|
|
<summary>
|
|
Element must recalculate its position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.RePositionDocument">
|
|
<summary>
|
|
Document must recalculate its position.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReCalculatingDocument">
|
|
<summary>
|
|
Document must recalculate including size, position and redrawing.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReFormatMergingElement">
|
|
<summary>
|
|
Format for the element must be re-merged.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReFormatMergElmAndReCalcDoc">
|
|
<summary>
|
|
Format for the element must be re-merged and the document must be recalculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReFormatMergElmAndChildrenAndReCalcDoc">
|
|
<summary>
|
|
Format for the element must be re-merged and all of its children and documents must be recalculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReFormatCrtElmAndReCalcDoc">
|
|
<summary>
|
|
Format for the element must be created and the document must be recalculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReFormatCrtDocAndReCalcDoc">
|
|
<summary>
|
|
Format for the document must be recreated and the document must be recalculated.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReChildrenFormatMerge">
|
|
<summary>
|
|
Inherited item of format is changed. Recalculate format for all child elements.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactType.ReChildrenFormatMergeAndRecalcDoc">
|
|
<summary>
|
|
Inherited item of format is changed. Recalculate format for all child elements
|
|
and recalculate the document.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ReactLevel">
|
|
<summary>
|
|
Specifies the level of the document's reaction after disabling QuietMode.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactLevel.None">
|
|
<summary>
|
|
No reaction.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactLevel.RePaintdoc">
|
|
<summary>
|
|
Repaint document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactLevel.ReCalculateDoc">
|
|
<summary>
|
|
Recalculate document.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactLevel.ReMergeFormats">
|
|
<summary>
|
|
Merge all formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ReactLevel.ReFormatsCreate">
|
|
<summary>
|
|
Create all formats.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ElementType">
|
|
<summary>
|
|
Specifies the type of the element from which depends the position of element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.Unknown">
|
|
<summary>
|
|
Type is unknown.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.InLine">
|
|
<summary>
|
|
Element is inline (font, span, etc.).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockFixedSize">
|
|
<summary>
|
|
Element has a hard defined fixed size. It has a block structure.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockResizable">
|
|
<summary>
|
|
Element has a block structure, but its size is not hard defined.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineFixedSize">
|
|
<summary>
|
|
Element is always postponed on new line and has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineResizable">
|
|
<summary>
|
|
Element is always postponed on new line and is resizable (hr, div).
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineResizableIndent">
|
|
<summary>
|
|
Spaces must be inserted before and after element and the element is resizable.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineFixedSizeIndent">
|
|
<summary>
|
|
Spaces must be inserted before and after element and the element has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineSimple">
|
|
<summary>
|
|
Element has a block structure and its size depends on its inner content.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockSimple">
|
|
<summary>
|
|
Element has a block structure, not in a new line and its size depends on its inner content.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.InLineNewLine">
|
|
<summary>
|
|
Element must be postponed onto a new line, but it is linear.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.Block">
|
|
<summary>
|
|
Element has a block structure.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLine">
|
|
<summary>
|
|
Element is always postponed on a new line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockNewLineIndent">
|
|
<summary>
|
|
Spaces must be inserted before and after element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.BlockFixed">
|
|
<summary>
|
|
Element has fixed size.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.ElementType.NewLine">
|
|
<summary>
|
|
Element must be postponed onto a new line.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.MergeMask">
|
|
<summary>
|
|
Enum indicates which properties of the format are redefined and must be changed.
|
|
Used in merging of formats.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.None">
|
|
<summary>
|
|
Nothing is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.ForeColor">
|
|
<summary>
|
|
Forecolor property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BgColor">
|
|
<summary>
|
|
BgColor property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.VAlignmnet">
|
|
<summary>
|
|
Vertical Alignment property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.HAlignment">
|
|
<summary>
|
|
Horizontal Alignment property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.FontFamily">
|
|
<summary>
|
|
Font Family property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.FontSize">
|
|
<summary>
|
|
Font Size property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.FontStyle">
|
|
<summary>
|
|
Font Style property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.Cursor">
|
|
<summary>
|
|
Cursor property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.PaddingLeft">
|
|
<summary>
|
|
Padding left property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.PaddingTop">
|
|
<summary>
|
|
Padding top property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.PaddingRight">
|
|
<summary>
|
|
Padding right property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.PaddingBottom">
|
|
<summary>
|
|
Padding bottom property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderStyle">
|
|
<summary>
|
|
Border Style property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderColor">
|
|
<summary>
|
|
Border Color property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderWidth">
|
|
<summary>
|
|
Border Width property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderLeft">
|
|
<summary>
|
|
Left Border property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderTop">
|
|
<summary>
|
|
Top Border property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderRight">
|
|
<summary>
|
|
Right Border property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderBottom">
|
|
<summary>
|
|
Border Bottom property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BgImage">
|
|
<summary>
|
|
Bg Image property has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BgRepeat">
|
|
<summary>
|
|
Bg Repeat Style property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderLeftColor">
|
|
<summary>
|
|
Border Left Color property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.Width">
|
|
<summary>
|
|
Width property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.Height">
|
|
<summary>
|
|
Height property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.FontWeight">
|
|
<summary>
|
|
Font Weight property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.TextDecoration">
|
|
<summary>
|
|
Text Decorarion property is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.FontAll">
|
|
<summary>
|
|
All Font properties are changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.BorderAll">
|
|
<summary>
|
|
All Border properties are changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.AlignmentAll">
|
|
<summary>
|
|
Vertical and Horizontal Alignment properties are changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.PaddingAll">
|
|
<summary>
|
|
All Padding properties are changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.All">
|
|
<summary>
|
|
All properties are changed.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.MergeMask.Inherit">
|
|
<summary>
|
|
Parameters are inherited by default.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection">
|
|
<summary>
|
|
Collection that stores and provides access to HTML element attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the attribute with the specified index. Type safe override.
|
|
</summary>
|
|
<param name="index">Index value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the attribute with the specified name. Name is case insensitive.
|
|
</summary>
|
|
<param name="name">string value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Adds an attribute to the collection.
|
|
</summary>
|
|
<param name="attr">Reference to the attribute.</param>
|
|
<returns>Index of the attribute in array.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Add(System.String,System.String)">
|
|
<summary>
|
|
Creates the attribute, adds it to the collection and returns a reference on it.
|
|
</summary>
|
|
<param name="name">Name of the attribute. Case insensitive.</param>
|
|
<param name="value">Value of the attribute.</param>
|
|
<returns>Reference of the created attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Add(System.String)">
|
|
<summary>
|
|
Creates an attribute with the specified name and returns a reference on it.
|
|
</summary>
|
|
<param name="name">Name of the attribute. Case insensitive.</param>
|
|
<returns>Reference of the created attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute[])">
|
|
<summary>
|
|
Adds a range of attributes to the collection.
|
|
</summary>
|
|
<param name="attributes">Array of attributes.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Overloaded. Indicates whether the collection contains the specified attribute.
|
|
</summary>
|
|
<param name="attr">Attribute reference for check.</param>
|
|
<returns>TRUE if the collection contains the attribute; FALSE otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether the collection contains the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute.</param>
|
|
<returns>TRUE if the collection contains the attribute; FALSE otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Overloaded. Returns the index of the attribute. If the collection does not contain the attribute
|
|
-1 is returned.
|
|
</summary>
|
|
<param name="attr">Attribute whose index is needed.</param>
|
|
<returns>Zero based index of the attribute; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.IndexOf(System.String)">
|
|
<summary>
|
|
Returns the index of the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute.</param>
|
|
<returns>Zero based index of the attribute; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute)">
|
|
<summary>
|
|
Overloaded. Removes the attribute from collection if it belongs to it.
|
|
</summary>
|
|
<param name="attr">Attribute whose reference must be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttributesCollection.Remove(System.String)">
|
|
<summary>
|
|
Removes the attribute with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the attribute which must be removed.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection">
|
|
<summary>
|
|
Interface which is responsible for the collection of HTML elements.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the element with the specified index.
|
|
</summary>
|
|
<param name="index">index value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Item(System.String)">
|
|
<summary>
|
|
Returns the child element with the specified unique ID if such element exists; NULL otherwise.
|
|
</summary>
|
|
<param name="uniqueID">An unique string value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Adds an element to the collection.
|
|
</summary>
|
|
<param name="element">Element for adding to the collection.</param>
|
|
<returns>Index in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Add(System.String)">
|
|
<summary>
|
|
Creates an element from it's string representation and adds it to the collection.
|
|
</summary>
|
|
<param name="outerHtml">String representation of the element.</param>
|
|
<returns>Index of the element in the collection if created; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement[])">
|
|
<summary>
|
|
Adds a range of elements to the collection.
|
|
</summary>
|
|
<param name="values">Array of elements for adding to the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Indicates whether such element already exists in the collection.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
<returns>TRUE if element exists in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the index of the specified element in the collection.
|
|
</summary>
|
|
<param name="element">Element object.</param>
|
|
<returns>Index of the element in the collection.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Insert(System.Int32,Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Overloaded. Inserts the specified element into the collection in the specified index.
|
|
</summary>
|
|
<param name="index">Index of the element.</param>
|
|
<param name="element">Element for adding to the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Insert(System.Int32,System.String)">
|
|
<summary>
|
|
Creates the element from it's string representation and inserts it
|
|
into the specified index.
|
|
</summary>
|
|
<param name="index">Index where the element must be placed.</param>
|
|
<param name="outerHtml">String representation of the element.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Removes the specified element from the collection.
|
|
</summary>
|
|
<param name="element">Element for removing from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.GetElementsByName(System.String)">
|
|
<summary>
|
|
Overloaded. Returns an array of elementswith the specified name.
|
|
</summary>
|
|
<param name="name">Name of the element.</param>
|
|
<returns>Array of elements.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.GetElementsByName(System.String[])">
|
|
<summary>
|
|
Returns an array of elements with the specified names.
|
|
</summary>
|
|
<param name="names">Array of names.</param>
|
|
<returns>Array of elements by names.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.GetElementByID(System.String)">
|
|
<summary>
|
|
Returns an array of elements with the specified user ID.
|
|
</summary>
|
|
<param name="id">ID of the element defined in the HTML document.</param>
|
|
<returns>Element object by ID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElementsCollection.GetElementByUniqueID(System.String)">
|
|
<summary>
|
|
Returns an array of elements with the specified unique ID.
|
|
</summary>
|
|
<param name="id">Unique ID of the element.</param>
|
|
<returns>Element by its unique ID.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection">
|
|
<summary>
|
|
Collection that stores and provides access to the events of the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.Item(System.String)">
|
|
<summary>
|
|
Returns the event interface with the specified name. Name is case insensitive.
|
|
</summary>
|
|
<param name="name">Name value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.AttachEvent(System.String,System.EventHandler)">
|
|
<summary>
|
|
Attaches user delegate to the specified event. If event does not exists in the collection
|
|
and element supports such an event then it will create a new instance
|
|
of the event class to which the delegate will be attached.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handler">Delegete to attach.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.AttachEvent(System.String,System.EventHandler[])">
|
|
<summary>
|
|
Attaches user delegates to the specified event. If event does not exists in the collection
|
|
and element supports such an event then it will create a new instance
|
|
of the event class to which the delegate will be attached.
|
|
</summary>
|
|
<param name="name">Event name</param>
|
|
<param name="handlers">Array of delegates.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.DetachEvent(System.String,System.EventHandler)">
|
|
<summary>
|
|
Detaches delegete of the specified event.
|
|
</summary>
|
|
<param name="name">Event name.</param>
|
|
<param name="handler">Delegate to detach.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.DetachEvent(System.String,System.EventHandler[])">
|
|
<summary>
|
|
Detach delegetes of specified event.
|
|
</summary>
|
|
<param name="name">event name</param>
|
|
<param name="handlers">array of delegates</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEventsCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether the event with the specified name is supported by the element.
|
|
</summary>
|
|
<param name="name">Name of the event.</param>
|
|
<returns>TRUE if element exists in collection.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection">
|
|
<summary>
|
|
An interface IHTMLFormatsCollection.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Item(System.Int32)">
|
|
<summary>
|
|
Gets or sets the format for the specified index. Type safe override.
|
|
</summary>
|
|
<param name="index">index value</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the format for the specified element name. Name is case insensitive.
|
|
</summary>
|
|
<param name="name">string name value</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Add(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Adds the format to the collection.
|
|
</summary>
|
|
<param name="format">Reference to the format.</param>
|
|
<returns>Index of the format in the array.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.AddRange(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat[])">
|
|
<summary>
|
|
Adds the array of formats to the collection.
|
|
</summary>
|
|
<param name="formats">Array of formats.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Contains(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Overloaded. Indicates whether the collection contains the specified format.
|
|
</summary>
|
|
<param name="format">Format reference for check.</param>
|
|
<returns>TRUE if collection contains the format; FALSE otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Contains(System.String)">
|
|
<summary>
|
|
Indicates whether the collection contains the format with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the format.</param>
|
|
<returns>TRUE if collection contains the format; FALSE otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.IndexOf(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Overloaded. Returns the index of the format. If the collection does not contain the format
|
|
-1 is returned.
|
|
</summary>
|
|
<param name="format">Format whose index is needed.</param>
|
|
<returns>Zero based index of format; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.IndexOf(System.String)">
|
|
<summary>
|
|
Returns the index of the format with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the format.</param>
|
|
<returns>Zero based index of the format; -1 otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Remove(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Overloaded. Removes the format from the collection, if it belongs to it.
|
|
</summary>
|
|
<param name="format">Format whose reference must be removed from the collection.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormatsCollection.Remove(System.String)">
|
|
<summary>
|
|
Removes the format with the specified name.
|
|
</summary>
|
|
<param name="name">Case insensitive name of the format which must be removed.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLCollection">
|
|
<summary>
|
|
Interface that declares the properties which are the base for all collections.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLCollection.Parent">
|
|
<summary>
|
|
Gets the parent element of the current collection.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.BordersStyle">
|
|
<summary>
|
|
Specifies the border style of the element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.None">
|
|
<summary>
|
|
No borders.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Dotted">
|
|
<summary>
|
|
Border is a dotted line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Dashed">
|
|
<summary>
|
|
Border is a dashed line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Solid">
|
|
<summary>
|
|
Border is a solid line.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Double">
|
|
<summary>
|
|
Border is a double line drawn on top of the background of the object.
|
|
The sum of the two single lines and the space between them equals the
|
|
border width value. The border width must be at least 3 pixels wide to
|
|
draw a double border.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Groove">
|
|
<summary>
|
|
3-D groove is drawn in colors based on the value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Ridge">
|
|
<summary>
|
|
3-D ridge is drawn in colors based on the value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Inset">
|
|
<summary>
|
|
3-D inset is drawn in colors based on the value.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.BordersStyle.Outset">
|
|
<summary>
|
|
3-D outset is drawn in colors based on the value
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IBorder">
|
|
<summary>
|
|
Interface that provides the properties needed for correct show border lines of
|
|
any element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IBorder.Width">
|
|
<summary>
|
|
Gets or sets the width of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IBorder.Style">
|
|
<summary>
|
|
Gets or sets the style of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IBorder.Color">
|
|
<summary>
|
|
Gets or sets the color of the border line.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IBorder.Clone">
|
|
<summary>
|
|
Clones object.
|
|
</summary>
|
|
<returns>Cloned object.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IControlImpl">
|
|
<summary>
|
|
Interface declaring the main functionality for custom control wrappers.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IControlImpl.Parent">
|
|
<summary>
|
|
Gets Parent INPUT tag element of the class.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IControlImpl.ConfigureControl">
|
|
<summary>
|
|
Configures user control corresponding to the attributes.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase">
|
|
<summary>
|
|
Interface declaring base functionality for custom control wrappers.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.CustomControl">
|
|
<summary>
|
|
Gets the custom control object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.Parent">
|
|
<summary>
|
|
Gets the parent tag element for the custom control.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.DefaultSize">
|
|
<summary>
|
|
Gets or sets the default size of the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.SetLocation">
|
|
<summary>
|
|
Sets the location of the control if location of the custom
|
|
tag has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.InitializeControl">
|
|
<summary>
|
|
Creates an instance of the control and configures it.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.DisposeControl">
|
|
<summary>
|
|
Disposes control and releases all its resources.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.AttachEvents">
|
|
<summary>
|
|
Attaches events to the control.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.DetachEvents">
|
|
<summary>
|
|
Detaches events from the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.ICustomControlBase.OnInitEndCallback">
|
|
<summary>
|
|
Raised when initialization has finished.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IElementHasCss">
|
|
<summary>
|
|
Interface for HTML elements which contain CSS information.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IElementHasCss.CreatedFormats">
|
|
<summary>
|
|
Gets or sets the array of formats created from this element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IElementHasCss.GetCssStream">
|
|
<summary>
|
|
Returns the CSS data from the HTML element.
|
|
</summary>
|
|
<returns>Null if element does not contains any CSS;
|
|
TokenStream with position set to the CSS data otherwise.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute">
|
|
<summary>
|
|
Interface that publishes the logic which specify allowed actions with any
|
|
HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute.ValueChanged">
|
|
<summary>
|
|
Event raised after the attribute value changes. To event handlers
|
|
send new and old value of attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute.Name">
|
|
<summary>
|
|
Gets the name of the attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute.Value">
|
|
<summary>
|
|
Gets or sets the current value of the attribute as variant. NULL if attribute value
|
|
was never set before.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute.Parent">
|
|
<summary>
|
|
Gets the parent of the attribute.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLAttribute.IsRuntimeAttribute">
|
|
<summary>
|
|
Gets a value indicating whether the property runtime must not be serialized to text.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement">
|
|
<summary>
|
|
Interface which publishes to the user the main functionality of each HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Attributes">
|
|
<summary>
|
|
Gets the list of attributes set to the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Events">
|
|
<summary>
|
|
Gets the list of Events supported by the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Children">
|
|
<summary>
|
|
Gets the sub elements of the current HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Item(System.String)">
|
|
<summary>
|
|
Gets or sets the value for the attribute with the specified attribute name.
|
|
</summary>
|
|
<param name="attributeName">String attribute name</param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Parent">
|
|
<summary>
|
|
Gets the parent element of the current element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.UniqueID">
|
|
<summary>
|
|
Gets the unique id of the element. Control guarantees that this id is
|
|
always unique for the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.ID">
|
|
<summary>
|
|
Gets or sets the unique identifier of the HTML element in the HTML elements objects tree. This
|
|
id is specified by the user.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Name">
|
|
<summary>
|
|
Gets the unique name of the HTML element in the HTML elements objects tree.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.AccessKey">
|
|
<summary>
|
|
Gets or sets the hot key which used for fast access of the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.TabIndex">
|
|
<summary>
|
|
Gets or sets the tab index for the HTML element.
|
|
</summary>
|
|
<remarks>
|
|
Objects with a positive TabIndex are selected in increasing order and in source order to resolve duplicates.
|
|
Objects with an TabIndex of zero are selected in source order.
|
|
Objects with a negative TabIndex are omitted from the tabbing order.
|
|
</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Location">
|
|
<summary>
|
|
Gets the real Location of the element after rendering in control client coordinates.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Size">
|
|
<summary>
|
|
Gets the real Size of the element after rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.InnerHTML">
|
|
<summary>
|
|
Gets or sets the HTML inner text of the current HTML element, without the current element declaration.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.OuterHTML">
|
|
<summary>
|
|
Gets the HTML text including the inner and current element text.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Format">
|
|
<summary>
|
|
Gets the formatting of element used for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.IsVisible">
|
|
<summary>
|
|
Gets a value indicating whether the current element's visibility to user.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.IsResizable">
|
|
<summary>
|
|
Gets a value indicating whether the current element is resizable if document is changed.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Control">
|
|
<summary>
|
|
Gets the reference of the control which holds this object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Focused">
|
|
<summary>
|
|
Gets a value indicating whether the element has input focus.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Text">
|
|
<summary>
|
|
Gets the text of the element and its children.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.SelectedText">
|
|
<summary>
|
|
Gets the selected text of the element and its children.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.BeforeStyleCalculated">
|
|
<summary>
|
|
Event. Raised before the CSS style of the element ( Format ) is merged.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Paint">
|
|
<summary>
|
|
Event. Raised before the element or its part is painted.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.SizeCalculated">
|
|
<summary>
|
|
Event. Raised when the size of the element is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.LocationCalculated">
|
|
<summary>
|
|
Event. Raised when the location of the element is calculated.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Click">
|
|
<summary>
|
|
Event. Raised when the mouse is clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.DoubleClick">
|
|
<summary>
|
|
Event. Raised when mouse is double clicked.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.MouseMove">
|
|
<summary>
|
|
Event. Raised when mouse moves.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.MouseEnter">
|
|
<summary>
|
|
Event. Raised when mouse enters.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.MouseLeave">
|
|
<summary>
|
|
Event. Raised when mouse leaves.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.MouseDown">
|
|
<summary>
|
|
Event. Raised when mouse button is down.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.KeyDown">
|
|
<summary>
|
|
Event. Raised when key is down.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.KeyUp">
|
|
<summary>
|
|
Event. Raised when key is up.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.KeyPress">
|
|
<summary>
|
|
Event. Raised when key is pressed.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.GotFocus">
|
|
<summary>
|
|
Event. Raised when the element gets focus.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Leave">
|
|
<summary>
|
|
Event. Raised when the element has lost focus.
|
|
</summary>
|
|
</member>
|
|
<member name="E:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.TabIndexChanged">
|
|
<summary>
|
|
Event. Raised when the TabIndex property value has been changed.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.CalculateFormat">
|
|
<summary>
|
|
Calculates the format from arrays of possible formats.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.CalculateSize">
|
|
<summary>
|
|
Calculates the size of the element from it's content.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.CalculatePosition">
|
|
<summary>
|
|
Calculates the position of the element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.DrawElement(System.Windows.Forms.PaintEventArgs)">
|
|
<summary>
|
|
Draws the element into the control.
|
|
</summary>
|
|
<param name="e">PaintEventArgs instance</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.BeginUpdate">
|
|
<summary>
|
|
Disables event raising by the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.EndUpdate">
|
|
<summary>
|
|
Enables event raising by the element.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.Focus">
|
|
<summary>
|
|
Sets the input focus to the element.
|
|
</summary>
|
|
<returns>True if the input focus request was successful; false otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLElement.ApplyFormat(Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat)">
|
|
<summary>
|
|
Applies the format to the element.
|
|
</summary>
|
|
<param name="format">Format to be attached to the element.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLEvent">
|
|
<summary>
|
|
Interface which publishes the event of the HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLEvent.Parent">
|
|
<summary>
|
|
Gets the Parent element of the current event.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLEvent.Name">
|
|
<summary>
|
|
Gets the name of the event.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEvent.AttachEvent(System.EventHandler)">
|
|
<summary>
|
|
Attaches user method to the current event.
|
|
</summary>
|
|
<param name="handler">User delegate on method which must catch event raising.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IHTMLEvent.DetachEvent(System.EventHandler)">
|
|
<summary>
|
|
Detaches user method to the current event.
|
|
</summary>
|
|
<param name="handler">User delegate on method which must catch event raising.</param>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.FormatType">
|
|
<summary>
|
|
Enum which indicates the type of the format.
|
|
How the format is connected to HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatType.Default">
|
|
<summary>
|
|
Default Format.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatType.Class">
|
|
<summary>
|
|
Format is connected by class attribute ( <td class="someStyle" > )
|
|
.someStyle { ... }.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatType.Id">
|
|
<summary>
|
|
Format is connected through id attribute ( <td id="someStyle" > ).
|
|
#someStyle { ... }
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatType.Name">
|
|
<summary>
|
|
Format is connected by equals of names <someElement>
|
|
someElement { ... }.
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.FormatType.Merged">
|
|
<summary>
|
|
Format is final to the element ( after merging ).
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat">
|
|
<summary>
|
|
Special formatting which is used by the renderer to show the HTML element to the user.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.FormatParent">
|
|
<summary>
|
|
Gets the format which was inherited by this format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Index">
|
|
<summary>
|
|
Gets the index of the format in the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Font">
|
|
<summary>
|
|
Gets or sets the font which must be used for rendering the element of HTML.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.ForeColor">
|
|
<summary>
|
|
Gets or sets the fore color of the HTML element for rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.BackgroundColor">
|
|
<summary>
|
|
Gets or sets the background Color of the HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.VerticalAlign">
|
|
<summary>
|
|
Gets or sets the vertical Alignment of string if HTML element has one.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.HorizontalAlign">
|
|
<summary>
|
|
Gets or sets the horizontal alignment of string in HTML element rectangle.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Left">
|
|
<summary>
|
|
Gets the left border settings of the HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Right">
|
|
<summary>
|
|
Gets the right border settings of the HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Top">
|
|
<summary>
|
|
Gets the top border settings of the HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Bottom">
|
|
<summary>
|
|
Gets the bottom border settings of the HTML Element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Cursor">
|
|
<summary>
|
|
Gets or sets the cursor which must be used by the control on mouse enter into special HTML element.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Padding">
|
|
<summary>
|
|
Gets or sets the amount of space to insert between the left border of the
|
|
object and the content.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Name">
|
|
<summary>
|
|
Gets or sets the unique name of the format ( mostly used for CSS styles declarations ).
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Type">
|
|
<summary>
|
|
Gets the format type of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Width">
|
|
<summary>
|
|
Gets the width of the element block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.Height">
|
|
<summary>
|
|
Gets the height of the element block.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.BackgroundImage">
|
|
<summary>
|
|
Gets or sets the Background Image of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IHTMLFormat.BackgroundImageRepeat">
|
|
<summary>
|
|
Gets or sets the background repeat property of the format.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IInputHTML">
|
|
<summary>
|
|
Interface which is between the Control and the HTMLParser.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.IsFileName">
|
|
<summary>
|
|
Gets a value indicating whether input HTML document is loaded from file.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.IsUri">
|
|
<summary>
|
|
Gets a value indicating whether input HTML document is loaded by Uri.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.IsStream">
|
|
<summary>
|
|
Gets a value indicating whether input HTML document is loaded from stream.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Formats">
|
|
<summary>
|
|
Gets the format manager object.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.FileName">
|
|
<summary>
|
|
Gets the source for parser as file; Null otherwise.
|
|
Property has the higher priority.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Uri">
|
|
<summary>
|
|
Gets the source for parser specified by URI; Null otherwise.
|
|
Second property by priority for source checks.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Stream">
|
|
<summary>
|
|
Gets the source specified as stream; Null otherwise.
|
|
Has the lowest priority.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Document">
|
|
<summary>
|
|
Gets the reference of output document which will be infilled by converted HTML.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Root">
|
|
<summary>
|
|
Gets the root element of the document. In most cases this is HTML tag.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.RenderRoot">
|
|
<summary>
|
|
Gets the instance to the Body tag element.
|
|
</summary>
|
|
<remarks>This element is the root for rendering.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.RenderException">
|
|
<summary>
|
|
Gets the exception object which occurred while document parsing and rendering.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.StartPoint">
|
|
<summary>
|
|
Gets or sets the point where the document will start to paint.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Margins">
|
|
<summary>
|
|
Gets the margins for the document.
|
|
</summary>
|
|
<remarks>This property exposes leftmargin, topmargin, rightmargin and bottommargin
|
|
of the BODY tag.</remarks>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.ClientSize">
|
|
<summary>
|
|
Gets or sets the client size of the document.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.CompileErrors">
|
|
<summary>
|
|
Gets an array of script compile errors.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.CurrentDirectory">
|
|
<summary>
|
|
Gets or sets the current directory for this document.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementsByUniqueIdHash">
|
|
<summary>
|
|
Creates and return the hashtable where key is element's UniqueID and
|
|
value is element reference.
|
|
</summary>
|
|
<returns>Hashtable of output document. UniqueID-to-Element</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementsByNameHash">
|
|
<summary>
|
|
Creates and returns the hashtable where key is Tag Name (Element.Name)
|
|
and value is Array of elements with current name.
|
|
</summary>
|
|
<returns>Hashtable of output document. Element Name-to-Array of Elements</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementsByUserIdHash">
|
|
<summary>
|
|
Creates and returns the hashtable where key is UserID (id attribute
|
|
specified by user for tag) and value is element reference.
|
|
</summary>
|
|
<returns>Hashtable of output document. UserID-to-Element</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetCSSFormatsToElementHash">
|
|
<summary>
|
|
Creates and returns the hashtable where key is UniqueID of element
|
|
and value is Array of Formats which influence on element rendering.
|
|
</summary>
|
|
<returns>Hashtable of output document. UniqueID-to-Array of Formats</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementByUniqueId(System.String)">
|
|
<summary>
|
|
Returns the html element by its unique ID, if such exists; NULL otherwise.
|
|
</summary>
|
|
<param name="uniqueID">Unique ID of the element.</param>
|
|
<returns>Element object by its unique ID.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementByUserId(System.String)">
|
|
<summary>
|
|
Returns the html element by its ID, defined in the HTML document if such exists;
|
|
NULL otherwise.
|
|
</summary>
|
|
<param name="userID">ID defined in the HTML document.</param>
|
|
<returns>Element by its ID defined in HTML document by id attribute.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetControlByElement(Syncfusion.Windows.Forms.HTMLUI.IHTMLElement)">
|
|
<summary>
|
|
Returns the custom control with the specified parent tag element.
|
|
</summary>
|
|
<param name="parent">Parent element containing the custom control.</param>
|
|
<returns>Control contained in the element if it exists; NULL otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GetElementsByName(System.String)">
|
|
<summary>
|
|
Returns an array of elements with the specified tag name.
|
|
</summary>
|
|
<param name="name">Name of the tag.</param>
|
|
<returns>Array of elements with the specified name; NULL otherwise.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.BeginUpdate">
|
|
<summary>
|
|
Disables the momentary reaction of the document on some attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.EndUpdate">
|
|
<summary>
|
|
Enables the momentary reaction of the document on some attributes changing.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Draw(System.Windows.Forms.PaintEventArgs,System.Drawing.Point)">
|
|
<summary>
|
|
Draws the document to the specified region.
|
|
</summary>
|
|
<param name="e">Graphics context.</param>
|
|
<param name="location">Start location for the drawing.</param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.Recalculate">
|
|
<summary>
|
|
Recalculates the document corresponding to the specified properties.
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.ClientToGlobal(System.Drawing.Point)">
|
|
<summary>
|
|
Converts the point from client coordinates to global coordinates.
|
|
</summary>
|
|
<param name="point">Point in client coordinates.</param>
|
|
<returns>Point in global coordinates.</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.IInputHTML.GlobalToClient(System.Drawing.Point)">
|
|
<summary>
|
|
Converts the point from global coordinates to client coordinates.
|
|
</summary>
|
|
<param name="point">Point in global coordinates.</param>
|
|
<returns>Point in client coordinates.</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder">
|
|
<summary>
|
|
Interface for classes which are containers for user controls.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.IUserControlHolder.UserControl">
|
|
<summary>
|
|
Gets an instance of the class which represents the user control.
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HtmlUILocalizationResourceAccessor">
|
|
<inheritdoc cref="T:Syncfusion.Windows.Forms.LocalizationResourceAccessor" />
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HtmlUILocalizationResourceAccessor.Instance">
|
|
<summary>
|
|
Instance of <see cref="T:Syncfusion.Windows.Forms.HTMLUI.HtmlUILocalizationResourceAccessor"/>
|
|
</summary>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HtmlUILocalizationResourceAccessor.GetControlAssembly">
|
|
<inheritdoc cref="M:Syncfusion.Windows.Forms.LocalizationResourceAccessor.GetControlAssembly" />
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.HtmlUILocalizationResourceAccessor.GetControlAssemblyDefaultNamespace">
|
|
<inheritdoc cref="M:Syncfusion.Windows.Forms.LocalizationResourceAccessor.GetControlAssemblyDefaultNamespace" />
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers">
|
|
<summary>
|
|
HTMLUIResourceIdentifiers contains Ids specific to the <see cref="N:Syncfusion.Windows.Forms.HTMLUI"/> namespace
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.FindWhat">
|
|
<summary>
|
|
Gets or sets the text of FindWhat label in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Title">
|
|
<summary>
|
|
Gets or sets the title of the <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.FindNext">
|
|
<summary>
|
|
Gets or sets the text of the Find Next button in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Direction">
|
|
<summary>
|
|
Gets or sets the text of direction in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Up">
|
|
<summary>
|
|
Gets or sets the text of the direction option in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Down">
|
|
<summary>
|
|
Gets or sets the text of the direction option in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Cancel">
|
|
<summary>
|
|
Gets or sets the text of the cancel button in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="F:Syncfusion.Windows.Forms.HTMLUI.HTMLUIResourceIdentifiers.Matchcase">
|
|
<summary>
|
|
Gets or sets the text of Match case option in <see cref="T:Syncfusion.Windows.Forms.HTMLUI.FindDialog"/>
|
|
</summary>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Localization.SR">
|
|
<summary>
|
|
SR provides localized access to string resources specific
|
|
from the assembly manifest Syncfusion.Windows.Forms.HTMLUI.Localization.SR.resources
|
|
</summary>
|
|
<exclude />
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetString(System.Globalization.CultureInfo,System.String,System.Object[])">
|
|
<summary>
|
|
Gets the string.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<param name="args">The args.</param>
|
|
<returns>Returns string value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetString(System.String)">
|
|
<summary>
|
|
Gets the string.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns string value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetString(System.String,System.Object[])">
|
|
<summary>
|
|
Gets the string.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<param name="args">The args.</param>
|
|
<returns>Returns string value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetString(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the string.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns string value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetObject(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the object.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetObject(System.String)">
|
|
<summary>
|
|
Gets the object.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the object</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetBoolean(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the boolean.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetBoolean(System.String)">
|
|
<summary>
|
|
Gets the boolean.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the bool value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetByte(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the byte.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the byte</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetByte(System.String)">
|
|
<summary>
|
|
Gets the byte.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the byte</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetChar(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the char.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the character</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetChar(System.String)">
|
|
<summary>
|
|
Gets the char.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the character</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetDouble(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the double.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns double value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetDouble(System.String)">
|
|
<summary>
|
|
Gets the double.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns double value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetFloat(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the float.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the float value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetFloat(System.String)">
|
|
<summary>
|
|
Gets the float.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the float value</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetInt(System.String)">
|
|
<summary>
|
|
Gets the int.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the number as integer</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetInt(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the int.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the number as integer</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetLong(System.String)">
|
|
<summary>
|
|
Gets the long.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the number as long</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetLong(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the long.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the number as long</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetShort(System.Globalization.CultureInfo,System.String)">
|
|
<summary>
|
|
Gets the short.
|
|
</summary>
|
|
<param name="culture">The culture.</param>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the value as short</returns>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SR.GetShort(System.String)">
|
|
<summary>
|
|
Gets the short.
|
|
</summary>
|
|
<param name="name">The name.</param>
|
|
<returns>Returns the value as short</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Localization.SRCategoryAttribute">
|
|
<summary>
|
|
Specifies the category in which the property or event will be displayed in a visual designer.
|
|
</summary>
|
|
<remarks>
|
|
This is a localized version of CategoryAttribute. The localized string will be loaded from the
|
|
assembly manifest Syncfusion.Windows.Forms.HTMLUI.Localization.SR.resources
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SRCategoryAttribute.#ctor(System.String)">
|
|
<summary>
|
|
SRCategoryAttribute
|
|
</summary>
|
|
<param name="category"></param>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SRCategoryAttribute.GetLocalizedString(System.String)">
|
|
<summary>
|
|
overriding string GetLocalizedString
|
|
</summary>
|
|
<param name="value"></param>
|
|
<returns></returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Localization.SRDescriptionAttribute">
|
|
<summary>
|
|
Specifies a description for a property or event.
|
|
</summary>
|
|
<remarks>
|
|
This is a localized version of DescriptionAttribute. The localized string will be loaded from the
|
|
assembly manifest Syncfusion.Windows.Forms.HTMLUI.Localization.SR.resources
|
|
</remarks>
|
|
</member>
|
|
<member name="M:Syncfusion.Windows.Forms.HTMLUI.Localization.SRDescriptionAttribute.#ctor(System.String)">
|
|
<summary>
|
|
SRDescriptionAttribute
|
|
</summary>
|
|
<param name="description"></param>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.SRDescriptionAttribute.Description">
|
|
<summary>
|
|
Gets the Description value stored in the attribute
|
|
</summary>
|
|
<returns>
|
|
The description stored in this attribute.
|
|
</returns>
|
|
</member>
|
|
<member name="T:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows">
|
|
<summary>
|
|
A strongly-typed resource class, for looking up localized strings, etc.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.ResourceManager">
|
|
<summary>
|
|
Returns the cached ResourceManager instance used by this class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Culture">
|
|
<summary>
|
|
Overrides the current thread's CurrentUICulture property for all
|
|
resource lookups using this strongly typed resource class.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Cancel">
|
|
<summary>
|
|
Looks up a localized string similar to Cancel.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Direction">
|
|
<summary>
|
|
Looks up a localized string similar to Direction.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Down">
|
|
<summary>
|
|
Looks up a localized string similar to &Down.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.FindNext">
|
|
<summary>
|
|
Looks up a localized string similar to &Find Next.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.FindWhat">
|
|
<summary>
|
|
Looks up a localized string similar to Fi&nd what:.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Matchcase">
|
|
<summary>
|
|
Looks up a localized string similar to Match &case.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Title">
|
|
<summary>
|
|
Looks up a localized string similar to Find.
|
|
</summary>
|
|
</member>
|
|
<member name="P:Syncfusion.Windows.Forms.HTMLUI.Localization.Syncfusion_HTMLUI_Windows.Up">
|
|
<summary>
|
|
Looks up a localized string similar to &Up.
|
|
</summary>
|
|
</member>
|
|
</members>
|
|
</doc>
|