ListViewItem.this

Creates a ListViewItem with default text formatting and input type.

  1. this(int height, Text[] fields)
  2. this(int height, Field[] fields)
  3. this(int height, dstring[] ds)
  4. this(int height, dstring[] ds, TextInputFieldType[] inputTypes)
    class ListViewItem
    @safe nothrow
    this
    (
    int height
    ,
    dstring[] ds
    ,
    TextInputFieldType[] inputTypes
    )

Parameters

height int

the height of the entry in pixels.

ds dstring[]

a string array containing the text of each field. Default formatting will be used.

inputTypes TextInputFieldType[]

specifies each field's input type. Mus be the same length as parameter ds.

Meta