Ignore:
Timestamp:
Apr 13, 2007, 5:12:31 PM (17 years ago)
Author:
イグトランス (egtra)
Message:

Object.ReferenceEqualsを追加

File:
1 edited

Legend:

Unmodified
Added
Removed
  • Include/Classes/System/Drawing/Font.ab

    r142 r212  
    4646    End Sub
    4747
    48     Sub Font(/*IN const*/ ByRef family As FontFamily, /*IN*/ emSize As Single)
     48    Sub Font(/*IN const*/ family As FontFamily, /*IN*/ emSize As Single)
    4949        Font(family, emSize, FontStyleRegular, UnitPoint)
    5050    End Sub
    5151
    52     Sub Font(/*IN const*/ ByRef family As FontFamily,
     52    Sub Font(/*IN const*/ family As FontFamily,
    5353        /*IN*/ emSize As Single, /*IN*/ style As Long)
    5454
     
    5656    End Sub
    5757
    58     Sub Font(/*IN const*/ ByRef family As FontFamily, /*IN*/ emSize As Single,
     58    Sub Font(/*IN const*/ family As FontFamily, /*IN*/ emSize As Single,
    5959        /*IN*/ style As Long, /*IN*/ unit As GraphicsUnit)
    6060
     
    129129    Sub Font(/*IN const*/ familyName As String, /*IN*/ emSize As Single,
    130130        /*IN*/ style As Long, /*IN*/ unit As GraphicsUnit,
    131         /*IN const*/ ByRef fontCollection As FontCollection)
     131        /*IN const*/ fontCollection As FontCollection)
    132132#ifdef __STRING_IS_NOT_UNICODE
    133133        Dim oldAlloc = _System_AllocForConvertedString
     
    142142    End Sub
    143143
    144     Const Function GetLogFontA(/*IN const*/ ByRef g As Graphics, /*OUT*/ ByRef lf As LOGFONTA) As Status
     144    Const Function GetLogFontA(/*IN const*/ g As Graphics, /*OUT*/ ByRef lf As LOGFONTA) As Status
    145145        Dim nativeGraphics As *GpGraphics
    146146        If VarPtr(g) <> 0 Then
     
    150150    End Function
    151151
    152     Const Function GetLogFontW(/*IN const*/ ByRef g As Graphics, /*OUT*/ ByRef lf As LOGFONTW) As Status
     152    Const Function GetLogFontW(/*IN const*/ g As Graphics, /*OUT*/ ByRef lf As LOGFONTW) As Status
    153153        Dim nativeGraphics As *GpGraphics
    154154        If VarPtr(g) <> 0 Then
     
    158158    End Function
    159159
    160     Const Function GetLogFont(/*IN const*/ ByRef g As Graphics, /*OUT*/ ByRef lf As LOGFONTA) As Status
     160    Const Function GetLogFont(/*IN const*/ g As Graphics, /*OUT*/ ByRef lf As LOGFONT) As Status
    161161        Dim nativeGraphics As *GpGraphics
    162162        If VarPtr(g) <> 0 Then
     
    170170    End Function
    171171
    172     Const Function Clone() As *Font
     172    Const Function Clone() As Font
    173173        Dim cloneFont = 0 As *GpFont
    174174        SetStatus(GdipCloneFont(nativeFont, cloneFont))
     
    210210    End Function
    211211
    212     Const Function GetHeight(/*IN const*/ ByRef g As Graphics) As Single
     212    Const Function GetHeight(/*IN const*/ g As Graphics) As Single
    213213        Dim nativeGraphics As *GpGraphics
    214214        If VarPtr(g) <> 0 Then
     
    311311    End Sub
    312312
    313     Const Sub ToLogFont(ByRef lf As LOGFONT, ByRef g As Graphics)
     313    Const Sub ToLogFont(ByRef lf As LOGFONT, g As Graphics)
    314314        GetLogFont(g, lf)
    315315    End Sub
    316 
    317316
    318317Private
    319318'   Sub Font(ByRef f As Font)
    320     Sub Operator =(ByRef f As Font)
    321         Debug
    322     End Sub
    323319
    324320Protected
Note: See TracChangeset for help on using the changeset viewer.