ARCed.Scintilla.LinesNeedShownEventArgs.LinesNeedShownEventArgs C# (CSharp) 메소드

LinesNeedShownEventArgs() 공개 메소드

Initializes a new instance of the LinesNeedShownEventArgs class.
public LinesNeedShownEventArgs ( int startLine, int endLine ) : System
startLine int the first (top) line that needs to be shown
endLine int the last (bottom) line that needs to be shown
리턴 System
        public LinesNeedShownEventArgs(int startLine, int endLine)
        {
            this._firstLine = startLine;
            this._lastLine = endLine;
        }
LinesNeedShownEventArgs