Novacode.Paragraph.RemoveText C# (CSharp) Method

RemoveText() public method

Removes characters from a Novacode.DocX.Paragraph.
public RemoveText ( int index, bool trackChanges = false ) : void
index int The position to begin deleting characters.
trackChanges bool Track changes
return void
        public void RemoveText(int index, bool trackChanges = false)
        {
            RemoveText(index, Text.Length - index, trackChanges);
        }

Same methods

Paragraph::RemoveText ( int index, int count, bool trackChanges = false ) : void