Table of Contents

wxArrayString

include file: wxEuphoria


An array of type wxString.

You should pass a sequence of strings:

ex:
constant
myArrayString = create( wxArrayString, { "One", "Two" })
wxArrayStrings are mainly used within the library itself, and you should rarely need to directly create one, unless you are dealing with a class that hasn't been fully wrapped.

  • func arraystring_count( atom array )   
  • func arraystring_item( atom array, integer item )   
  • func get_arraystring( atom array )     
     
    Parent Topics:
  • Classes


    Table of Contents

    [func]
    arraystring_count
    ( atom array )

    Category: wxArrayString

    See Also: arraystring_item, get_arraystring



    Table of Contents

    [func]
    arraystring_item
    ( atom array, integer item )

    Category: wxArrayString

    See Also: arraystring_count, get_arraystring



    Table of Contents

    [func]
    get_arraystring
    ( atom array )

    Category: wxArrayString

    Returns all the strings in the array.

    See Also: arraystring_count, arraystring_item