AddAttributesToRender (inherited from Image) |
[To be supplied.] |
BubbleEvent (inherited from Control) |
[To be supplied.] |
BuildProfileTree (inherited from Control) |
[To be supplied.] |
ClearChildViewState (inherited from Control) |
[To be supplied.] |
CreateChildControls (inherited from Control) |
[To be supplied.] |
CreateControlStyle (inherited from WebControl) |
A protected method used to create the style object that is used internally to implement all style related properties. Controls may override to create an appropriate typed style. |
DesignTimeRenderInternal |
At design time, the GetRunTimeHtml() method of the DynamicImageDesigner can use the DesignTimeRenderInternal method to return design time html without modifying ImageUrl. (If the GetRunTimeHtml function is not implemented, then the designer will call Render() on the control to get the design-time HTML; we want to prevent this from happening, since Render() causes the ImageUrl property to be modified. |
Finalize (inherited from Object) |
Allows an Object to attempt to free resources and perform other cleanup operations before the Object is reclaimed by the Garbage Collector (GC). This method may be ignored by the runtime; therefore, necessary cleanup operations should be done elsewhere. |
FindControl (inherited from Control) |
Overloaded. [To be supplied.] |
Init (inherited from Control) |
Used by control developers to initialize child controls. |
InvokeBubbleEvent (inherited from Control) |
[To be supplied.] |
IsLiteralContent (inherited from Control) |
[To be supplied.] |
IsMarked (inherited from Control) |
[To be supplied.] |
LoadState |
Load previously saved state. We write this method specially because the internal implementation of "state persistence" converts all objects to strings before storing them, but there is no internal conversion available for NameValueCollection. So we convert this object to a string and store it along with the rest of the state. The corresponding SaveState() method must save the state in a format identical to the format used by LoadState() to load the state. |
Mark (inherited from WebControl) |
Begin tracking state changes on the control. Any changes made after "mark" will be tracked and saved as part of the control viewstate. |
MaybeCreateControls (inherited from Control) |
[To be supplied.] |
MemberwiseClone (inherited from Object) |
Creates a shallow copy of the current Object. |
OnDataBind (inherited from Control) |
[To be supplied.] |
OnInit (inherited from Control) |
[To be supplied.] |
OnLoad (inherited from Control) |
[To be supplied.] |
OnPreRender (inherited from Control) |
[To be supplied.] |
OnUnload (inherited from Control) |
[To be supplied.] |
PreRender (inherited from Control) |
Performs any prerendering steps necessary prior to saving viewstate and rendering content. |
PreRenderRecursive (inherited from Control) |
[To be supplied.] |
Render |
We want to inherit the rendering behavior of the Image control, except that the ImageUrl property (which already points to the WebMethods file specifying which ImageGenerator to use) should have the function name "GetImage" appended to it, followed by the name/value pairs stored in ImageParams which are passed to the GetImage method. |
RenderChildren (inherited from Control) |
[To be supplied.] |
RenderContents (inherited from WebControl) |
Render the contents of the tag. |
SaveState |
Save any attributes that were modified after "mark". See documentation for "LoadState()" above |