GFPBLabel/GFPBLabelmod.bas
Attribute VB_Name = "GFPBLabelmod"
Option Explicit
'(c)2001 by Louis.
'FontStruct
Public Type FontStruct
FontName As String
FontSize As Single
FontBoldFlag As Boolean
FontItalicFlag As Boolean
FontUnderlineFlag As Boolean
FontStrikeThroughFlag As Boolean
End Type
'GFPBLabelStruct
Public Type GFPBLabelStruct
LabelText As String
LabelXPos As Long 'format: pixels
LabelYPos As Long 'format: pixels
LabelXSize As Long
LabelYSize As Long
LabelForeColor As Long
LabelBackColor As Long
LabelFont As FontStruct
LabelTargetPicture As PictureBox
End Type
Public GFPBLabelStructNumber As Integer
Public GFPBLabelStructArray() As GFPBLabelStruct
[END OF FILE]