Documentation for Win32lib v0.60.6
Table of Contents

Types

These are data types defined by Win32Lib.


  • type w32string   Implements an ASCII string.

    Documentation for Win32lib v0.60.6
    Table of Contents

    [type]
    w32string

    Implements an ASCII string.

    Category: Types

    Identifiers declared as type w32string are sequences that can only contain integers in the range 0 to 255 inclusive.

    Example:

      w32string Name
      Name = "abc" -- Okay.
      Name = 12 -- Fails
      Name = {'a', 'b', 'c'} -- Okay
      Name = {'a', 'b', 12.3} -- Fails
      Name = {"abc", "def"} -- Fails.
    
    -------------------------------------