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

AttachMouseDownEvent() public static method

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