 ASPxClientStaticEdit.prototype.RaiseClick=function(htmlElement,htmlEvent){if(!this.Click.IsEmpty()){var args=new ASPxClientEditClickEventArgs(htmlElement,htmlEvent);this.Click.FireEvent(this,args);}}
ASPxClientEditClickEventArgs=_aspxCreateClass(ASPxClientEventArgs,{constructor:function(htmlElement,htmlEvent){this.constructor.prototype.constructor.call(this);this.htmlElement=htmlElement;this.htmlEvent=htmlEvent;}});ASPxClientHyperLink.prototype.GetNavigateUrl=function(){var element=this.GetMainElement();if(_aspxIsExistsElement(element))return element.href;return "";}
ASPxClientHyperLink.prototype.SetNavigateUrl=function(url){var element=this.GetMainElement();if(_aspxIsExistsElement(element))element.href=url;}
ASPxClientHyperLink.prototype.GetText=function(){return this.GetValue();}
ASPxClientHyperLink.prototype.SetText=function(value){this.SetValue(value);}
ASPxClientImage.prototype.GetImageUrl=function(url){return this.GetValue();}
ASPxClientImage.prototype.SetImageUrl=function(url){this.SetValue(url);}
ASPxClientImage.prototype.GetWidth=function(){return this.GetSize(true);}
ASPxClientImage.prototype.GetHeight=function(){return this.GetSize(false);}
ASPxClientImage.prototype.SetSize=function(width,height){var element=this.GetMainElement();if(_aspxIsExistsElement(element)){element.style.width=width+"px";element.style.height=height+"px";}}
ASPxClientImage.prototype.GetSize=function(isWidth){var element=this.GetMainElement();if(_aspxIsExistsElement(element))return(isWidth?element.offsetWidth:element.offsetHeight);return-1;}
ASPxClientLabel.prototype.GetText=function(){return this.GetValue();}
ASPxClientLabel.prototype.SetText=function(value){this.SetValue(value);} 