Skip to main content

SubDocument.RemoveNumberingFromParagraphs(DocumentRange) Method

Obsolete. Remove the numbering or bullet from all paragraphs intersecting the specified range.

Namespace: DevExpress.XtraRichEdit.API.Native

Assembly: DevExpress.RichEdit.v14.2.Core.dll

Declaration

[Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.ParagraphCollection.RemoveNumberingFromParagraphs(DocumentRange range)' method instead.")]
void RemoveNumberingFromParagraphs(
    DocumentRange range
)
<Obsolete("This method has become obsolete. Use the 'DevExpress.XtraRichEdit.API.Native.ParagraphCollection.RemoveNumberingFromParagraphs(DocumentRange range)' method instead.")>
Sub RemoveNumberingFromParagraphs(
    range As DocumentRange
)

Parameters

Name Type Description
range DocumentRange

A DocumentRange object.

Remarks

The RemoveNumberingFromParagraphs method removes a numbering or bulleted style from paragraphs specified by the document range.

To remove numbering from an individual paragraph, use the SubDocument.RemoveNumberingFromParagraph method.

See Also