AngleSharp.Html.Dom.Events.CompositionEvent.Init C# (CSharp) Method

Init() private method

private Init ( String type, Boolean bubbles, Boolean cancelable, IWindow view, String data ) : void
type String
bubbles Boolean
cancelable Boolean
view IWindow
data String
return void
        public void Init(String type, Boolean bubbles, Boolean cancelable, IWindow view, String data)
        {
            Init(type, bubbles, cancelable, view, 0);
            Data = data;
        }
CompositionEvent