Alsing.SourceCode.SyntaxDocumentParsers.ParserBase.ParsePreviewLine C# (CSharp) Method

ParsePreviewLine() public method

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