PrintConverter.st
changeset 3773 7351373f0c28
parent 3721 d6c113e8a8b5
child 3887 75680e93cb48
equal deleted inserted replaced
3772:18f86fffbd1c 3773:7351373f0c28
    38 
    38 
    39 documentation
    39 documentation
    40 "
    40 "
    41     printConverters can be used with labels and editFields to convert 
    41     printConverters can be used with labels and editFields to convert 
    42     an object to/from some printed representation.
    42     an object to/from some printed representation.
    43     Conversion is done via two blocks which can be set at instance
    43     
    44     creation time - either as custom blocks ot to one of the
    44     Conversion is done via two blocks, which can be set at instance
    45     standard conversions. There are a number of standard setups, for
    45     creation time - either as custom blocks or as one of the
    46     common conversions; if none of them fits your needs, create a custom
    46     standard conversions. 
    47     converter, by defining its two conversion blocks.
    47 
       
    48     There are a number of standard setups for common conversions; 
       
    49     if none of them fits your needs, 
       
    50     create a custom converter by defining its two conversion blocks.
    48 
    51 
    49     Notice: this class was implemented using protocol information
    52     Notice: this class was implemented using protocol information
    50     from alpha testers - it may not be complete or compatible to
    53     from alpha testers - it may not be complete or compatible to
    51     the corresponding ST-80 class. If you encounter any incompatibilities,
    54     the corresponding ST-80 class. If you encounter any incompatibilities,
    52     please forward a note to the ST/X team.
    55     please forward a note to the ST/X team.