ARCed.Scintilla.LineCollection.GetMaxLineWithState C# (CSharp) Method

GetMaxLineWithState() public method

public GetMaxLineWithState ( ) : Line
return Line
        public Line GetMaxLineWithState()
        {
            int line = NativeScintilla.GetMaxLineState();
            if (line < 0)
                return null;

            return this[line];
        }