Inheritance diagram for Anthem.Image:
Public Member Functions | |
override void | RenderControl (HtmlTextWriter writer) |
Forces the server control to output content and trace information. | |
Protected Member Functions | |
override void | Render (HtmlTextWriter writer) |
Renders the server control wrapped in an additional element so that the element.innerHTML can be updated after a callback. | |
override void | OnLoad (EventArgs e) |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager. | |
Properties | |
[Category("Anthem")][DefaultValue(false)][Description("True if this control should be updated after each callback.")] virtual bool | AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack. | |
[Browsable(false)][DefaultValue(false)] virtual bool | UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack. | |
override bool | Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility. |
Definition at line 13 of file Image.cs.
override void Anthem.Image.Render | ( | HtmlTextWriter | writer | ) | [protected] |
override void Anthem.Image.OnLoad | ( | EventArgs | e | ) | [protected] |
Raises the System.Web.UI.Control.Load event and registers the control with Anthem.Manager.
e | A System.EventArgs. |
override void Anthem.Image.RenderControl | ( | HtmlTextWriter | writer | ) |
[Category("Anthem")][DefaultValue(false)][Description("True if this control should be updated after each callback.")] virtual bool Anthem.Image.AutoUpdateAfterCallBack [get, set] |
Gets or sets a value indicating whether the control should be updated after each callback. Also see UpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
<anthem:Label id="label" runat="server" AutoUpdateAfterCallBack="true" />
Implements Anthem.IUpdatableControl.
[Browsable(false)][DefaultValue(false)] virtual bool Anthem.Image.UpdateAfterCallBack [get, set] |
Gets or sets a value which indicates whether the control should be updated after the current callback. Also see AutoUpdateAfterCallBack.
true if the the control should be updated; otherwise, false. The default is false.
this.Label = "Count = " + count; this.Label.UpdateAfterCallBack = true;
Implements Anthem.IUpdatableControl.
override bool Anthem.Image.Visible [get, set] |
Overrides the Visible property so that Anthem.Manager can track the visibility.
true if the control is rendered on the client; otherwise false. The default is true.
Definition at line 136 of file Image.cs.
Referenced by Anthem.Image.Render().