forked from lee-soft/ViPad
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Slice.cls
37 lines (29 loc) · 769 Bytes
/
Slice.cls
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
30
31
32
33
34
35
36
37
VERSION 1.0 CLASS
BEGIN
MultiUse = -1 'True
Persistable = 0 'NotPersistable
DataBindingBehavior = 0 'vbNone
DataSourceBehavior = 0 'vbNone
MTSTransactionMode = 0 'NotAnMTSObject
END
Attribute VB_Name = "Slice"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = True
Attribute VB_PredeclaredId = False
Attribute VB_Exposed = False
Public Anchor As AnchorPointConstants
Public Image As GDIPImage
Public X As Long
Public Y As Long
Public StretchX As Boolean
Public StretchY As Boolean
Public PixelGap As Long
Public PixelGap2 As Long
Public Property Get Height() As Long
Height = Image.Height
End Property
Public Property Get Width() As Long
Width = Image.Width
End Property
Public Function LoadSliceFromXMLElement()
End Function