ComponentFactory.Krypton.Toolkit.KryptonRichTextBoxActionList.KryptonRichTextBoxActionList C# (CSharp) Method

KryptonRichTextBoxActionList() public method

Initialize a new instance of the KryptonRichTextBoxActionList class.
public KryptonRichTextBoxActionList ( KryptonRichTextBoxDesigner owner ) : System
owner KryptonRichTextBoxDesigner Designer that owns this action list instance.
return System
        public KryptonRichTextBoxActionList(KryptonRichTextBoxDesigner owner)
            : base(owner.Component)
        {
            // Remember the text box instance
            _richTextBox = owner.Component as KryptonRichTextBox;

            // Cache service used to notify when a property has changed
            _service = (IComponentChangeService)GetService(typeof(IComponentChangeService));
        }