-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathViFont.cls
More file actions
29 lines (25 loc) · 755 Bytes
/
ViFont.cls
File metadata and controls
29 lines (25 loc) · 755 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "ViFont"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Attribute VB_Ext_KEY = "SavedWithClassBuilder6" ,"Yes"
Attribute VB_Ext_KEY = "Member0" ,"Colour"
Attribute VB_Ext_KEY = "Top_Level" ,"Yes"
Public Size As Single
Public Face As String
Public Colour As Long
Public Function ToGDIFont() As GDIFont
Dim thisFont As GDIFont
Set thisFont = New GDIFont
thisFont.Constructor Face, Size, APIFALSE
Set ToGDIFont = thisFont
End Function