Alsing.SourceCode.SyntaxDocumentParsers.DefaultParser.ParsePreviewLine C# (CSharp) 메소드

ParsePreviewLine() 공개 메소드

public ParsePreviewLine ( int RowIndex ) : void
RowIndex int
리턴 void
        public void ParsePreviewLine(int RowIndex)
        {
            Row Row = Document[RowIndex];
            Row.Clear();
            Row.Add(Row.Text);
            Row.RowState = RowState.NotParsed;
        }