Importer.RtfDeltaImporter.Document.IsInserted C# (CSharp) Method

IsInserted() private method

Paragraph has been inserted
private IsInserted ( Paragraph p ) : bool
p Paragraph
return bool
        private bool IsInserted(Paragraph p)
        {
            return p.State == Paragraph.ParagraphState.Inserted && p.Text.Length > 0;
        }