LayoutFarm.Demo.HtmlDomExtension.AttachMouseUpEvent C# (CSharp) Method

AttachMouseUpEvent() public static method

public static AttachMouseUpEvent ( this elem, HtmlEventHandler hdl ) : void
elem this
hdl HtmlEventHandler
return void
        public static void AttachMouseUpEvent(this DomElement elem, HtmlEventHandler hdl)
        {
            elem.AttachEvent(UIEventName.MouseUp, hdl);
        }
    }