OfficeIMO

API Reference

Struct

WordListEvent

Namespace OfficeIMO.Word
Assembly OfficeIMO.Word
Base ValueType
Modifiers sealed

Represents events emitted while traversing document lists.

Inheritance

  • ValueType
  • WordListEvent

Constructors

public WordListEvent(WordListEventType eventType, Paragraph paragraph, Boolean ordered, Int32 level) #

Initializes a new instance of the WordListEvent struct.

Parameters

eventType OfficeIMO.Word.WordListEventType requiredposition: 0
Type of event being reported.
paragraph DocumentFormat.OpenXml.Wordprocessing.Paragraph requiredposition: 1
Paragraph associated with the event when applicable.
ordered System.Boolean requiredposition: 2
true when the current list is ordered.
level System.Int32 requiredposition: 3
Zero-based nesting level of the list.

Properties

public WordListEventType EventType { get; } #

Type of the emitted event.

public Paragraph Paragraph { get; } #

Paragraph associated with the event when applicable.

public Boolean Ordered { get; } #

Indicates whether the current list is ordered.

public Int32 Level { get; } #

Zero-based nesting level of the list item.