-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathCustomObjects.vb
More file actions
104 lines (94 loc) · 2.83 KB
/
Copy pathCustomObjects.vb
File metadata and controls
104 lines (94 loc) · 2.83 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
Imports System
Imports System.Collections.Generic
Imports System.Text
Imports System.ComponentModel
Imports System.Collections
Imports System.Drawing
Namespace CustomObjectsBinding
#Region "#customappointment"
Public Class CustomAppointment
Public Property StartTime() As Date
Public Property EndTime() As Date
Public Property Subject() As String
Public Property Status() As Integer
Public Property Description() As String
Public Property Label() As Integer
Public Property Location() As String
Public Property AllDay() As Boolean
Public Property EventType() As Integer
Public Property RecurrenceInfo() As String
Public Property ReminderInfo() As String
Public Property OwnerId() As Object
End Class
#End Region ' #customappointment
#Region "#customresource"
Public Class CustomResource
Public Property Name() As String
Public Property ResID() As Integer
Public Property ResColor() As Color
' Set the SchedulerStorage.Resources.ColorSaving property to ColorSavingType.Color to display resources using the specified color.
End Class
#End Region ' #customresource
Public Class CustomLabel
Private m_name As String
Private _id As Integer
Private _color As Color
Public Property Name() As String
Get
Return m_name
End Get
Set(ByVal value As String)
m_name = value
End Set
End Property
Public Property ID() As Integer
Get
Return _id
End Get
Set(ByVal value As Integer)
_id = value
End Set
End Property
Public Property ColorLabel() As Color
Get
Return _color
End Get
Set(ByVal value As Color)
_color = value
End Set
End Property
Public Sub New()
End Sub
End Class
Public Class CustomStatus
Private m_name As String
Private _id As Integer
Private _color As Color
Public Property Name() As String
Get
Return m_name
End Get
Set(ByVal value As String)
m_name = value
End Set
End Property
Public Property ID() As Integer
Get
Return _id
End Get
Set(ByVal value As Integer)
_id = value
End Set
End Property
Public Property ColorStatus() As Color
Get
Return _color
End Get
Set(ByVal value As Color)
_color = value
End Set
End Property
Public Sub New()
End Sub
End Class
End Namespace