CxXmlDocItemList

Description

sealed class Tinman.Core.Cx.XmlDoc.CxXmlDocItemList

Derived from

CxXmlDocItem abstract

A paragraph content item that represents a list:

<list type="bullet">
  <item>A</item>
  <item>B</item>
  <item>C</item>
</list>
<list type="number">
  <item>A</item>
  <item>B</item>
  <item>C</item>
</list>

Public / Constructors

Cx​Xml​Doc​Item​List


public constructor CxXmlDocItemList → (2)

items opt : IBagConst<CxXmlDocBody> = null

The list of list items or null for an empty list. See Items.

numbered opt : bool = false

See IsNumbered.

Creates a new instance of CxXmlDocItemList.

Public / Attributes

Is​Numbered


[Constant]
public attribute IsNumbered → (get)

value : bool

true if the list has numbered items,
false if the list has bullet item.

Returns whether this list has numbered items.

Items


[Constant]
public attribute Items → (get)

value : IVectorConst<CxXmlDocBody>

[not-null]
The list items.

Returns the list items.