Page tree
    Created with Raphaël 2.1.0
    Loading...
Skip to end of metadata
Go to start of metadata

Description

Creates and returns an empty List at the end of this Element. By passing a boolean, it can be a numbered list (true) or a bulleted list (false).

C#
public virtual List InsertListAfter(boolean numbered)
vb.net
Public Overridable Function InsertListAfter(ByVal numbered As Boolean) As List

Parameters

numbered

Returns

A List object representing the newly created empty list.

Examples

C#
List lst = e.InsertListAfter(true);
vb.net
Dim lst As List = e.InsertListAfter(True)
  • No labels