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

StyleRun() public method

Initializes a new instance of the StyleRun struct.
public StyleRun ( int length, int style )
length int The length of the run.
style int The zero-based index of the style that the run represents.
        public StyleRun(int length, int style)
        {
            this._length = length;
            this._style = style;
        }
StyleRun