ARCed.Scintilla.StyleChangedEventArgs.StyleChangedEventArgs C# (CSharp) Method

StyleChangedEventArgs() private method

private StyleChangedEventArgs ( int position, int length, int modificationType )
position int
length int
modificationType int
        internal StyleChangedEventArgs(int position, int length, int modificationType)
            : base(modificationType)
        {
            this._position = position;
            this._length = length;
        }
StyleChangedEventArgs