Ignore:
Timestamp:
Mar 31, 2009, 3:12:04 PM (15 years ago)
Author:
イグトランス (egtra)
Message:

GdiPlusEnums.abの列挙体を名前空間System.Drawing以下に配置

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ab5.0/ablib/src/Classes/System/Drawing/misc.ab

    r698 r700  
    6262End Enum
    6363
     64Enum StringFormatFlags
     65    DirectionRightToLeft        = &h00000001
     66    DirectionVertical           = &h00000002
     67    NoFitBlackBox               = &h00000004
     68    DisplayFormatControl        = &h00000020
     69    NoFontFallback              = &h00000400
     70    MeasureTrailingSpaces       = &h00000800
     71    NoWrap                      = &h00001000
     72    LineLimit                   = &h00002000
     73    NoClip                      = &h00004000
     74End Enum
     75
     76Enum StringTrimming
     77    None              = 0
     78    Character         = 1
     79    Word_             = 2
     80    EllipsisCharacter = 3
     81    EllipsisWord      = 4
     82    EllipsisPath      = 5
     83End Enum
     84
     85Enum StringDigitSubstitute
     86    User        = 0
     87    None        = 1
     88    National    = 2
     89    Traditional = 3
     90End Enum
     91
     92Enum StringAlignment
     93    Near   = 0
     94    Center = 1
     95    Far    = 2
     96End Enum
     97
    6498Namespace Detail
    6599    Sub ThrowGdiplusException(status As Status)
Note: See TracChangeset for help on using the changeset viewer.