tdf#130857 qt weld: Implement QtInstanceWidget::strip_mnemonic
[LibreOffice.git] / wizards / source / access2base / PropertiesGet.xba
blob59fc8db312182c633d89797c78b4f8ed81f085af
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3 <script:module xmlns:script="http://openoffice.org/2000/script" script:name="PropertiesGet" script:language="StarBasic">
4 REM =======================================================================================================================
5 REM === The Access2Base library is a part of the LibreOffice project. ===
6 REM === Full documentation is available on http://www.access2base.com ===
7 REM =======================================================================================================================
9 Option Explicit
11 REM -----------------------------------------------------------------------------------------------------------------------
12 Public Function getAbsolutePosition(Optional pvObject As Variant) As Boolean
13 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getAbsolutePosition&quot;)
14 getAbsolutePosition = PropertiesGet._getProperty(pvObject, &quot;AbsolutePosition&quot;)
15 End Function &apos; getAbsolutePosition
17 REM -----------------------------------------------------------------------------------------------------------------------
18 Public Function getAllowAdditions(Optional pvObject As Variant) As Boolean
19 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getAllowAdditions&quot;)
20 getAllowAdditions = PropertiesGet._getProperty(pvObject, &quot;AllowAdditions&quot;)
21 End Function &apos; getAllowAdditions
23 REM -----------------------------------------------------------------------------------------------------------------------
24 Public Function getAllowDeletions(Optional pvObject As Variant) As Boolean
25 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getAllowDeletions&quot;)
26 getAllowDeletions = PropertiesGet._getProperty(pvObject, &quot;AllowDeletions&quot;)
27 End Function &apos; getAllowDeletions
29 REM -----------------------------------------------------------------------------------------------------------------------
30 Public Function getAllowEdits(Optional pvObject As Variant) As Boolean
31 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getAllowEdits&quot;)
32 getAllowEdits = PropertiesGet._getProperty(pvObject, &quot;AllowEdits&quot;)
33 End Function &apos; getAllowEdits
35 REM -----------------------------------------------------------------------------------------------------------------------
36 Public Function getBackColor(Optional pvObject As Variant) As Variant
37 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBackColor&quot;)
38 getBackColor = PropertiesGet._getProperty(pvObject, &quot;BackColor&quot;)
39 End Function &apos; getBackColor
41 REM -----------------------------------------------------------------------------------------------------------------------
42 Public Function getBeginGroup(Optional pvObject As Variant) As Variant
43 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBeginGroup&quot;)
44 getBeginGroup = PropertiesGet._getProperty(pvObject, &quot;BeginGroup&quot;)
45 End Function &apos; getBeginGroup
47 REM -----------------------------------------------------------------------------------------------------------------------
48 Public Function getBOF(Optional pvObject As Variant) As Variant
49 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBOF&quot;)
50 getBOF = PropertiesGet._getProperty(pvObject, &quot;BOF&quot;)
51 End Function &apos; getBOF
53 REM -----------------------------------------------------------------------------------------------------------------------
54 Public Function getBookmark(Optional pvObject As Variant) As Variant
55 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBookmark&quot;)
56 getBookmark = PropertiesGet._getProperty(pvObject, &quot;Bookmark&quot;)
57 End Function &apos; getBookmark
59 REM -----------------------------------------------------------------------------------------------------------------------
60 Public Function getBookmarkable(Optional pvObject As Variant) As Variant
61 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBookmarkable&quot;)
62 getBookmarkable = PropertiesGet._getProperty(pvObject, &quot;Bookmarkable&quot;)
63 End Function &apos; getBookmarkable
65 REM -----------------------------------------------------------------------------------------------------------------------
66 Public Function getBorderColor(Optional pvObject As Variant) As Variant
67 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBorderColor&quot;)
68 getBorderColor = PropertiesGet._getProperty(pvObject, &quot;BorderColor&quot;)
69 End Function &apos; getBorderColor
71 REM -----------------------------------------------------------------------------------------------------------------------
72 Public Function getBorderStyle(Optional pvObject As Variant) As Variant
73 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBorderStyle&quot;)
74 getBorderStyle = PropertiesGet._getProperty(pvObject, &quot;BorderStyle&quot;)
75 End Function &apos; getBorderStyle
77 REM -----------------------------------------------------------------------------------------------------------------------
78 Public Function getBuiltIn(Optional pvObject As Variant) As Boolean
79 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getBuiltIn&quot;)
80 getBuiltIn = PropertiesGet._getProperty(pvObject, &quot;BuiltIn&quot;)
81 End Function &apos; getBuiltIn
83 REM -----------------------------------------------------------------------------------------------------------------------
84 Public Function getButtonLeft(Optional pvObject As Variant) As Boolean
85 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getButtonLeft&quot;)
86 getButtonLeft = PropertiesGet._getProperty(pvObject, &quot;ButtonLeft&quot;)
87 End Function &apos; getButtonLeft
89 REM -----------------------------------------------------------------------------------------------------------------------
90 Public Function getButtonMiddle(Optional pvObject As Variant) As Boolean
91 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getButtonMiddle&quot;)
92 getButtonMiddle = PropertiesGet._getProperty(pvObject, &quot;ButtonMiddle&quot;)
93 End Function &apos; getButtonMiddle
95 REM -----------------------------------------------------------------------------------------------------------------------
96 Public Function getButtonRight(Optional pvObject As Variant) As Boolean
97 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getButtonRight&quot;)
98 getButtonRight = PropertiesGet._getProperty(pvObject, &quot;ButtonRight&quot;)
99 End Function &apos; getButtonRight
101 REM -----------------------------------------------------------------------------------------------------------------------
102 Public Function getCancel(Optional pvObject As Variant) As Variant
103 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getCancel&quot;)
104 getCancel = PropertiesGet._getProperty(pvObject, &quot;Cancel&quot;)
105 End Function &apos; getCancel
107 REM -----------------------------------------------------------------------------------------------------------------------
108 Public Function getCaption(Optional pvObject As Variant) As Variant
109 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getCaption&quot;)
110 getCaption = PropertiesGet._getProperty(pvObject, &quot;Caption&quot;)
111 End Function &apos; getCaption
113 REM -----------------------------------------------------------------------------------------------------------------------
114 Public Function getClickCount(Optional pvObject As Variant) As Long
115 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getClickCount&quot;)
116 getClickCount = PropertiesGet._getProperty(pvObject, &quot;ClickCount&quot;)
117 End Function &apos; getClickCount
119 REM -----------------------------------------------------------------------------------------------------------------------
120 Public Function getContextShortcut(Optional pvObject As Variant) As String
121 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getContextShortcut&quot;)
122 getContextShortcut = PropertiesGet._getProperty(pvObject, &quot;ContextShortcut&quot;)
123 End Function &apos; getContextShortcut
125 REM -----------------------------------------------------------------------------------------------------------------------
126 Public Function getControlSource(Optional pvObject As Variant) As Variant
127 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getControlSource&quot;)
128 getControlSource = PropertiesGet._getProperty(pvObject, &quot;ControlSource&quot;)
129 End Function &apos; getControlSource
131 REM -----------------------------------------------------------------------------------------------------------------------
132 Public Function getControlTipText(Optional pvObject As Variant) As Variant
133 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getControlTipText&quot;)
134 getControlTipText = PropertiesGet._getProperty(pvObject, &quot;ControlTipText&quot;)
135 End Function &apos; getControlTipText
137 REM -----------------------------------------------------------------------------------------------------------------------
138 Public Function getControlType(Optional pvObject As Variant) As Integer
139 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getControlType&quot;)
140 getControlType = PropertiesGet._getProperty(pvObject, &quot;ControlType&quot;)
141 End Function &apos; getControlType
143 REM -----------------------------------------------------------------------------------------------------------------------
144 Public Function getCount(Optional pvObject As Variant) As Integer
145 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getCount&quot;)
146 getCount = PropertiesGet._getProperty(pvObject, &quot;Count&quot;)
147 End Function &apos; getCount
149 REM -----------------------------------------------------------------------------------------------------------------------
150 Public Function getCurrentRecord(Optional pvObject As Variant) As Variant
151 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getCurrentRecord&quot;)
152 getCurrentRecord = PropertiesGet._getProperty(pvObject, &quot;CurrentRecord&quot;)
153 End Function &apos; getCurrentRecord
155 REM -----------------------------------------------------------------------------------------------------------------------
156 Public Function getDataType(Optional pvObject As Variant) As Variant
157 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getDataType&quot;)
158 getDataType = PropertiesGet._getProperty(pvObject, &quot;DataType&quot;)
159 End Function &apos; getDataType
161 REM -----------------------------------------------------------------------------------------------------------------------
162 Public Function getDbType(Optional pvObject As Variant) As Variant
163 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getDbType&quot;)
164 getDbType = PropertiesGet._getProperty(pvObject, &quot;DbType&quot;)
165 End Function &apos; getDbType
167 REM -----------------------------------------------------------------------------------------------------------------------
168 Public Function getDefault(Optional pvObject As Variant) As Variant
169 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getDefault&quot;)
170 getDefault = PropertiesGet._getProperty(pvObject, &quot;Default&quot;)
171 End Function &apos; getDefault
173 REM -----------------------------------------------------------------------------------------------------------------------
174 Public Function getDefaultValue(Optional pvObject As Variant) As Variant
175 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getDefaultValue&quot;)
176 getDefaultValue = PropertiesGet._getProperty(pvObject, &quot;DefaultValue&quot;)
177 End Function &apos; getDefaultValue
179 REM -----------------------------------------------------------------------------------------------------------------------
180 Public Function getDescription(Optional pvObject As Variant) As Variant
181 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getDescription&quot;)
182 getDescription = PropertiesGet._getProperty(pvObject, &quot;Description&quot;)
183 End Function &apos; getDescription
185 REM -----------------------------------------------------------------------------------------------------------------------
186 Public Function getEditMode(Optional pvObject As Variant) As Variant
187 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getEditMode&quot;)
188 getEditMode = PropertiesGet._getProperty(pvObject, &quot;EditMode&quot;)
189 End Function &apos; getEditMode
191 REM -----------------------------------------------------------------------------------------------------------------------
192 Public Function getEnabled(Optional pvObject As Variant) As Variant
193 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getEnabled&quot;)
194 getEnabled = PropertiesGet._getProperty(pvObject, &quot;Enabled&quot;)
195 End Function &apos; getEnabled
197 REM -----------------------------------------------------------------------------------------------------------------------
198 Public Function getEOF(Optional pvObject As Variant) As Variant
199 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getEOF&quot;)
200 getEOF = PropertiesGet._getProperty(pvObject, &quot;EOF&quot;)
201 End Function &apos; getEOF
203 REM -----------------------------------------------------------------------------------------------------------------------
204 Public Function getEventName(Optional pvObject As Variant) As String
205 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getEventName&quot;)
206 getEventName = PropertiesGet._getProperty(pvObject, &quot;EventName&quot;)
207 End Function &apos; getEventName
209 REM -----------------------------------------------------------------------------------------------------------------------
210 Public Function getEventType(Optional pvObject As Variant) As String
211 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getEventType&quot;)
212 getEventType = PropertiesGet._getProperty(pvObject, &quot;EventType&quot;)
213 End Function &apos; getEventType
215 REM -----------------------------------------------------------------------------------------------------------------------
216 Public Function getFieldSize(Optional pvObject As Variant) As Variant
217 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFieldSize&quot;)
218 getFieldSize = PropertiesGet._getProperty(pvObject, &quot;FieldSize&quot;)
219 End Function &apos; getFieldSize
221 REM -----------------------------------------------------------------------------------------------------------------------
222 Public Function getFilter(Optional pvObject As Variant) As String
223 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFilter&quot;)
224 getFilter = PropertiesGet._getProperty(pvObject, &quot;Filter&quot;)
225 End Function &apos; getFilter
227 REM -----------------------------------------------------------------------------------------------------------------------
228 Public Function getFilterOn(Optional pvObject As Variant) As Boolean
229 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFilterOn&quot;)
230 getFilterOn = PropertiesGet._getProperty(pvObject, &quot;FilterOn&quot;)
231 End Function &apos; getFilterOn
233 REM -----------------------------------------------------------------------------------------------------------------------
234 Public Function getFocusChangeTemporary(Optional pvObject As Variant) As Boolean
235 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFocusChangeTemporary&quot;)
236 getFocusChangeTemporary = PropertiesGet._getProperty(pvObject, &quot;FocusChangeTemporary&quot;)
237 End Function &apos; getFocusChangeTemporary
239 REM -----------------------------------------------------------------------------------------------------------------------
240 Public Function getFontBold(Optional pvObject As Variant) As Variant
241 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontBold&quot;)
242 getFontBold = PropertiesGet._getProperty(pvObject, &quot;FontBold&quot;)
243 End Function &apos; getFontBold
245 REM -----------------------------------------------------------------------------------------------------------------------
246 Public Function getFontItalic(Optional pvObject As Variant) As Variant
247 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontItalic&quot;)
248 getFontItalic = PropertiesGet._getProperty(pvObject, &quot;FontItalic&quot;)
249 End Function &apos; getFontItalic
251 REM -----------------------------------------------------------------------------------------------------------------------
252 Public Function getFontName(Optional pvObject As Variant) As Variant
253 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontName&quot;)
254 getFontName = PropertiesGet._getProperty(pvObject, &quot;FontName&quot;)
255 End Function &apos; getFontName
257 REM -----------------------------------------------------------------------------------------------------------------------
258 Public Function getFontSize(Optional pvObject As Variant) As Variant
259 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontSize&quot;)
260 getFontSize = PropertiesGet._getProperty(pvObject, &quot;FontSize&quot;)
261 End Function &apos; getFontSize
263 REM -----------------------------------------------------------------------------------------------------------------------
264 Public Function getFontUnderline(Optional pvObject As Variant) As Variant
265 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontUnderline&quot;)
266 getFontUnderline = PropertiesGet._getProperty(pvObject, &quot;FontUnderline&quot;)
267 End Function &apos; getFontUnderline
269 REM -----------------------------------------------------------------------------------------------------------------------
270 Public Function getFontWeight(Optional pvObject As Variant) As Variant
271 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFontWeight&quot;)
272 getFontWeight = PropertiesGet._getProperty(pvObject, &quot;FontWeight&quot;)
273 End Function &apos; getFontWeight
275 REM -----------------------------------------------------------------------------------------------------------------------
276 Public Function getForm(Optional pvObject As Variant) As Variant &apos; Return Subform pseudo
277 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getForm&quot;)
278 getForm = PropertiesGet._getProperty(pvObject, &quot;Form&quot;)
279 End Function &apos; getForm
281 REM -----------------------------------------------------------------------------------------------------------------------
282 Public Function getFormat(Optional pvObject As Variant) As Variant
283 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getFormat&quot;)
284 getFormat = PropertiesGet._getProperty(pvObject, &quot;Format&quot;)
285 End Function &apos; getFormat
287 REM -----------------------------------------------------------------------------------------------------------------------
288 Public Function getHeight(Optional pvObject As Variant) As Long
289 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getHeight&quot;)
290 getHeight = PropertiesGet._getProperty(pvObject, &quot;Height&quot;)
291 End Function &apos; getHeight
293 REM -----------------------------------------------------------------------------------------------------------------------
294 Public Function getForeColor(Optional pvObject As Variant) As Variant
295 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getForeColor&quot;)
296 getForeColor = PropertiesGet._getProperty(pvObject, &quot;ForeColor&quot;)
297 End Function &apos; getForeColor
299 REM -----------------------------------------------------------------------------------------------------------------------
300 Public Function getIsLoaded(Optional pvObject As Variant) As Boolean
301 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getIsLoaded&quot;)
302 getIsLoaded = PropertiesGet._getProperty(pvObject, &quot;IsLoaded&quot;)
303 End Function &apos; getIsLoaded
305 REM -----------------------------------------------------------------------------------------------------------------------
306 Public Function getItemData(Optional pvObject As Variant, ByVal Optional pvIndex As Variant) As Variant
307 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getItemData&quot;)
308 If IsMissing(pvIndex) Then
309 getItemData = PropertiesGet._getProperty(pvObject, &quot;ItemData&quot;)
310 Else
311 getItemData = PropertiesGet._getProperty(pvObject, &quot;ItemData&quot;, pvIndex)
312 End If
313 End Function &apos; getItemData
315 REM -----------------------------------------------------------------------------------------------------------------------
316 Public Function getKeyAlt(Optional pvObject As Variant) As Boolean
317 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyAlt&quot;)
318 getKeyAlt = PropertiesGet._getProperty(pvObject, &quot;KeyAlt&quot;)
319 End Function &apos; getKeyAlt
321 REM -----------------------------------------------------------------------------------------------------------------------
322 Public Function getKeyChar(Optional pvObject As Variant) As String
323 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyChar&quot;)
324 getKeyChar = PropertiesGet._getProperty(pvObject, &quot;KeyChar&quot;)
325 End Function &apos; getKeyChar
327 REM -----------------------------------------------------------------------------------------------------------------------
328 Public Function getKeyCode(Optional pvObject As Variant) As Integer
329 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyCode&quot;)
330 getKeyCode = PropertiesGet._getProperty(pvObject, &quot;KeyCode&quot;)
331 End Function &apos; getKeyCode
333 REM -----------------------------------------------------------------------------------------------------------------------
334 Public Function getKeyCtrl(Optional pvObject As Variant) As Boolean
335 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyCtrl&quot;)
336 getKeyCtrl = PropertiesGet._getProperty(pvObject, &quot;KeyCtrl&quot;)
337 End Function &apos; getKeyCtrl
339 REM -----------------------------------------------------------------------------------------------------------------------
340 Public Function getKeyFunction(Optional pvObject As Variant) As Integer
341 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyFunction&quot;)
342 getKeyFunction = PropertiesGet._getProperty(pvObject, &quot;KeyFunction&quot;)
343 End Function &apos; getKeyFunction
345 REM -----------------------------------------------------------------------------------------------------------------------
346 Public Function getKeyShift(pvObject As Variant) As Boolean
347 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getKeyShift&quot;)
348 getKeyShift = PropertiesGet._getProperty(pvObject, &quot;KeyShift&quot;)
349 End Function &apos; getKeyShift
351 REM -----------------------------------------------------------------------------------------------------------------------
352 Public Function getLinkChildFields(Optional pvObject As Variant, ByVal Optional pvIndex As Variant) As Variant
353 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getLinkChildFields&quot;)
354 If IsMissing(pvObject) Then
355 getLinkChildFields = PropertiesGet._getProperty(pvObject, &quot;LinkChildFields&quot;)
356 Else
357 getLinkChildFields = PropertiesGet._getProperty(pvObject, &quot;LinkChildFields&quot;, pvIndex)
358 End If
359 End Function &apos; getLinkChildFields
361 REM -----------------------------------------------------------------------------------------------------------------------
362 Public Function getLinkMasterFields(Optional pvObject As Variant, ByVal Optional pvIndex As Variant) As Variant
363 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getLinkMasterFields&quot;)
364 If IsMissing(pvIndex) Then
365 getLinkMasterFields = PropertiesGet._getProperty(pvObject, &quot;LinkMasterFields&quot;)
366 Else
367 getLinkMasterFields = PropertiesGet._getProperty(pvObject, &quot;LinkMasterFields&quot;, pvIndex)
368 End If
369 End Function &apos; getLinkMasterFields
371 REM -----------------------------------------------------------------------------------------------------------------------
372 Public Function getListCount(Optional pvObject As Variant) As Variant
373 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getListCount&quot;)
374 getListCount = PropertiesGet._getProperty(pvObject, &quot;ListCount&quot;)
375 End Function &apos; getListCount
377 REM -----------------------------------------------------------------------------------------------------------------------
378 Public Function getListIndex(Optional pvObject As Variant) As Variant
379 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getListIndex&quot;)
380 getListIndex = PropertiesGet._getProperty(pvObject, &quot;ListIndex&quot;)
381 End Function &apos; getListIndex
383 REM -----------------------------------------------------------------------------------------------------------------------
384 Public Function getLocked(Optional pvObject As Variant) As Variant
385 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getLocked&quot;)
386 getLocked = PropertiesGet._getProperty(pvObject, &quot;Locked&quot;)
387 End Function &apos; getLocked
389 REM -----------------------------------------------------------------------------------------------------------------------
390 Public Function getMultiSelect(Optional pvObject As Variant) As Variant
391 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getMultiSelect&quot;)
392 getMultiSelect = PropertiesGet._getProperty(pvObject, &quot;MultiSelect&quot;)
393 End Function &apos; getMultiSelect
395 REM -----------------------------------------------------------------------------------------------------------------------
396 Public Function getName(Optional pvObject As Variant) As String
397 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getName&quot;)
398 getName = PropertiesGet._getProperty(pvObject, &quot;Name&quot;)
399 End Function &apos; getName
401 REM -----------------------------------------------------------------------------------------------------------------------
402 Public Function getObjectType(Optional pvObject As Variant) As String
403 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getObjectType&quot;)
404 getObjectType = PropertiesGet._getProperty(pvObject, &quot;ObjectType&quot;)
405 End Function &apos; getObjectType
407 REM -----------------------------------------------------------------------------------------------------------------------
408 Public Function getOpenArgs(Optional pvObject As Variant) As String
409 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getOpenArgs&quot;)
410 getOpenArgs = PropertiesGet._getProperty(pvObject, &quot;OpenArgs&quot;)
411 End Function &apos; getOpenArgs
413 REM -----------------------------------------------------------------------------------------------------------------------
414 Public Function getOptionGroup(Optional pvObject As Variant, pvName As variant) As Variant
415 &apos; Return an OptionGroup object based on its name
417 Utils._SetCalledSub(&quot;getOptionGroup&quot;)
418 If IsMissing(pvObject) Or IsMissing(pvName) Then Call _TraceArguments()
419 If _ErrorHandler() Then On Local Error Goto Error_Function
421 If Not Utils._CheckArgument(pvObject, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
422 If Not Utils._CheckArgument(pvName, 2, vbString) Then Goto Exit_Function
424 getOptionGroup = pvObject.OptionGroup(pvName)
426 Exit_Function:
427 Utils._ResetCalledSub(&quot;getOptionGroup&quot;)
428 Exit Function
429 Error_Function:
430 TraceError(TRACEABORT, Err, &quot;getOptionGroup&quot;, Erl)
431 GoTo Exit_Function
432 End Function &apos; getOptionGroup V0.9.0
434 REM -----------------------------------------------------------------------------------------------------------------------
435 Public Function getOptionValue(Optional pvObject As Variant) As String
436 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getOptionValue&quot;)
437 getOptionValue = PropertiesGet._getProperty(pvObject, &quot;OptionValue&quot;)
438 End Function &apos; getOptionValue
440 REM -----------------------------------------------------------------------------------------------------------------------
441 Public Function getOrderBy(Optional pvObject As Variant) As String
442 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getOrderBy&quot;)
443 getOrderBy = PropertiesGet._getProperty(pvObject, &quot;OrderBy&quot;)
444 End Function &apos; getOrderBy
446 REM -----------------------------------------------------------------------------------------------------------------------
447 Public Function getOrderByOn(Optional pvObject As Variant) As Boolean
448 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getOrderByOn&quot;)
449 getOrderByOn = PropertiesGet._getProperty(pvObject, &quot;OrderByOn&quot;)
450 End Function &apos; getOrderByOn
452 REM -----------------------------------------------------------------------------------------------------------------------
453 Public Function getPage(Optional pvObject As Variant) As String
454 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getPage&quot;)
455 getPage = PropertiesGet._getProperty(pvObject, &quot;Page&quot;)
456 End Function &apos; getPage V0.9.1
458 REM -----------------------------------------------------------------------------------------------------------------------
459 Public Function getParent(Optional pvObject As Variant) As String
460 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getParent&quot;)
461 getParent = PropertiesGet._getProperty(pvObject, &quot;Parent&quot;)
462 End Function &apos; getParent V0.9.0
464 REM -----------------------------------------------------------------------------------------------------------------------
465 Public Function getProperty(Optional pvItem As Variant, Optional ByVal pvProperty As Variant, ByVal Optional pvIndex As Variant) As Variant
466 &apos; Return property value of object pvItem, and psProperty property name
467 Utils._SetCalledSub(&quot;getProperty&quot;)
468 If IsMissing(pvItem) Then Call _TraceArguments()
469 If IsMissing(pvProperty) Then Call _TraceArguments()
470 If IsMissing(pvIndex) Then getProperty = PropertiesGet._getProperty(pvItem, pvProperty) Else getProperty = PropertiesGet._getProperty(pvItem, pvProperty, pvIndex)
471 Utils._ResetCalledSub(&quot;getProperty&quot;)
472 End Function &apos; getProperty
474 REM -----------------------------------------------------------------------------------------------------------------------
475 Public Function getRecommendation(Optional pvObject As Variant) As Variant
476 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRecommendation&quot;)
477 getRecommendation = PropertiesGet._getProperty(pvObject, &quot;Recommendation&quot;)
478 End Function &apos; getRecommendation
480 REM -----------------------------------------------------------------------------------------------------------------------
481 Public Function getRecordCount(Optional pvObject As Variant) As Variant
482 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRecordCount&quot;)
483 getRecordCount = PropertiesGet._getProperty(pvObject, &quot;RecordCount&quot;)
484 End Function &apos; getRecordCount
486 REM -----------------------------------------------------------------------------------------------------------------------
487 Public Function getRecordset(Optional pvObject As Variant) As String
488 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRecordset&quot;)
489 getRecordset = PropertiesGet._getProperty(pvObject, &quot;Recordset&quot;)
490 End Function &apos; getRecordset V0.9.5
492 REM -----------------------------------------------------------------------------------------------------------------------
493 Public Function getRecordSource(Optional pvObject As Variant) As Variant
494 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRecordSource&quot;)
495 getRecordSource = PropertiesGet._getProperty(pvObject, &quot;RecordSource&quot;)
496 End Function &apos; getRecordSource
498 REM -----------------------------------------------------------------------------------------------------------------------
499 Public Function getRequired(Optional pvObject As Variant) As Variant
500 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRequired&quot;)
501 getRequired = PropertiesGet._getProperty(pvObject, &quot;Required&quot;)
502 End Function &apos; getRequired
504 REM -----------------------------------------------------------------------------------------------------------------------
505 Public Function getRowChangeAction(Optional pvObject As Variant) As Variant
506 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRowChangeAction&quot;)
507 getRowChangeAction = PropertiesGet._getProperty(pvObject, &quot;RowChangeAction&quot;)
508 End Function &apos; getRowChangeAction
510 REM -----------------------------------------------------------------------------------------------------------------------
511 Public Function getRowSource(Optional pvObject As Variant) As Variant
512 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRowSource&quot;)
513 getRowSource = PropertiesGet._getProperty(pvObject, &quot;RowSource&quot;)
514 End Function &apos; getRowSource
516 REM -----------------------------------------------------------------------------------------------------------------------
517 Public Function getRowSourceType(Optional pvObject As Variant) As Variant
518 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getRowSourceType&quot;)
519 getRowSourceType = PropertiesGet._getProperty(pvObject, &quot;RowSourceType&quot;)
520 End Function &apos; getRowSourceType
522 REM -----------------------------------------------------------------------------------------------------------------------
523 Public Function getSelected(Optional pvObject As Variant, ByVal Optional pvIndex As Variant) As Variant
524 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSelected&quot;)
525 If IsMissing(pvIndex) Then
526 getSelected = PropertiesGet._getProperty(pvObject, &quot;Selected&quot;)
527 Else
528 getSelected = PropertiesGet._getProperty(pvObject, &quot;Selected&quot;, pvIndex)
529 End If
530 End Function &apos; getSelected
532 REM -----------------------------------------------------------------------------------------------------------------------
533 Public Function getSize(Optional pvObject As Variant) As Variant
534 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSize&quot;)
535 getSize = PropertiesGet._getProperty(pvObject, &quot;Size&quot;)
536 End Function &apos; getSize
538 REM -----------------------------------------------------------------------------------------------------------------------
539 Public Function getSource(Optional pvObject As Variant) As String
540 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSource&quot;)
541 getSource = PropertiesGet._getProperty(pvObject, &quot;Source&quot;)
542 End Function &apos; getSource V0.9.0
544 REM -----------------------------------------------------------------------------------------------------------------------
545 Public Function getSourceField(Optional pvObject As Variant) As Variant
546 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSourceField&quot;)
547 getSourceField = PropertiesGet._getProperty(pvObject, &quot;SourceField&quot;)
548 End Function &apos; getSourceField
550 REM -----------------------------------------------------------------------------------------------------------------------
551 Public Function getSourceTable(Optional pvObject As Variant) As Variant
552 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSourceTable&quot;)
553 getSourceTable = PropertiesGet._getProperty(pvObject, &quot;SourceTable&quot;)
554 End Function &apos; getSourceTable
556 REM -----------------------------------------------------------------------------------------------------------------------
557 Public Function getSpecialEffect(Optional pvObject As Variant) As Variant
558 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSpecialEffect&quot;)
559 getSpecialEffect = PropertiesGet._getProperty(pvObject, &quot;SpecialEffect&quot;)
560 End Function &apos; getSpecialEffect
562 REM -----------------------------------------------------------------------------------------------------------------------
563 Public Function getSubType(Optional pvObject As Variant) As Variant
564 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSubType&quot;)
565 getSubType = PropertiesGet._getProperty(pvObject, &quot;SubType&quot;)
566 End Function &apos; getSubType
568 REM -----------------------------------------------------------------------------------------------------------------------
569 Public Function getSubComponentName(Optional pvObject As Variant) As Variant
570 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSubComponentName&quot;)
571 getSubComponentName = PropertiesGet._getProperty(pvObject, &quot;SubComponentName&quot;)
572 End Function &apos; getSubComponentName
574 REM -----------------------------------------------------------------------------------------------------------------------
575 Public Function getSubComponentType(Optional pvObject As Variant) As Variant
576 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getSubComponentType&quot;)
577 getSubComponentType = PropertiesGet._getProperty(pvObject, &quot;SubComponentType&quot;)
578 End Function &apos; getSubComponentType
580 REM -----------------------------------------------------------------------------------------------------------------------
581 Public Function getTabIndex(Optional pvObject As Variant) As Variant
582 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTabIndex&quot;)
583 getTabIndex = PropertiesGet._getProperty(pvObject, &quot;TabIndex&quot;)
584 End Function &apos; getTabIndex
586 REM -----------------------------------------------------------------------------------------------------------------------
587 Public Function getTabStop(Optional pvObject As Variant) As Variant
588 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTabStop&quot;)
589 getTabStop = PropertiesGet._getProperty(pvObject, &quot;TabStop&quot;)
590 End Function &apos; getTabStop
592 REM -----------------------------------------------------------------------------------------------------------------------
593 Public Function getTag(Optional pvObject As Variant) As Variant
594 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTag&quot;)
595 getTag = PropertiesGet._getProperty(pvObject, &quot;Tag&quot;)
596 End Function &apos; getTag
598 REM -----------------------------------------------------------------------------------------------------------------------
599 Public Function getText(Optional pvObject As Variant) As Variant
600 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getText&quot;)
601 getText = PropertiesGet._getProperty(pvObject, &quot;Text&quot;)
602 End Function &apos; getText
604 REM -----------------------------------------------------------------------------------------------------------------------
605 Public Function getTextAlign(Optional pvObject As Variant) As Variant
606 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTextAlign&quot;)
607 getTextAlign = PropertiesGet._getProperty(pvObject, &quot;TextAlign&quot;)
608 End Function &apos; getTextAlign
610 REM -----------------------------------------------------------------------------------------------------------------------
611 Public Function getTooltipText(Optional pvObject As Variant) As Variant
612 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTooltipText&quot;)
613 getTooltipText = PropertiesGet._getProperty(pvObject, &quot;TooltipText&quot;)
614 End Function &apos; getTooltipText
616 REM -----------------------------------------------------------------------------------------------------------------------
617 Public Function getTripleState(Optional pvObject As Variant) As Variant
618 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTripleState&quot;)
619 getTripleState = PropertiesGet._getProperty(pvObject, &quot;TripleState&quot;)
620 End Function &apos; getTripleState
622 REM -----------------------------------------------------------------------------------------------------------------------
623 Public Function getTypeName(Optional pvObject As Variant) As Variant
624 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getTypeName&quot;)
625 getTypeName = PropertiesGet._getProperty(pvObject, &quot;TypeName&quot;)
626 End Function &apos; getTypeName
628 REM -----------------------------------------------------------------------------------------------------------------------
629 Public Function getVisible(Optional pvObject As Variant) As Variant
630 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getVisible&quot;)
631 getVisible = PropertiesGet._getProperty(pvObject, &quot;Visible&quot;)
632 End Function &apos; getVisible
634 REM -----------------------------------------------------------------------------------------------------------------------
635 Public Function getWidth(Optional pvObject As Variant) As Long
636 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getWdth&quot;)
637 getWidth = PropertiesGet._getProperty(pvObject, &quot;Width&quot;)
638 End Function &apos; getWidth
640 REM -----------------------------------------------------------------------------------------------------------------------
641 Public Function getXPos(Optional pvObject As Variant) As Long
642 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getXPos&quot;)
643 getXPos = PropertiesGet._getProperty(pvObject, &quot;XPos&quot;)
644 End Function &apos; getXPos
646 REM -----------------------------------------------------------------------------------------------------------------------
647 Public Function getYPos(Optional pvObject As Variant) As Long
648 If IsMissing(pvObject) Or IsEmpty(pvObject) Then Call _TraceArguments(&quot;getYPos&quot;)
649 getYPos = PropertiesGet._getProperty(pvObject, &quot;YPos&quot;)
650 End Function &apos; getYPos
652 REM -----------------------------------------------------------------------------------------------------------------------
653 REM --- PRIVATE FUNCTIONS ---
654 REM -----------------------------------------------------------------------------------------------------------------------
656 Public Function _getProperty(pvItem As Variant, ByVal psProperty As String, ByVal Optional pvIndex As Variant) As Variant
657 &apos; Return property value of the psProperty property name within object pvItem
659 If _ErrorHandler() Then On Local Error Goto Error_Function
660 Utils._SetCalledSub(&quot;get&quot; &amp; psProperty)
661 _getProperty = Nothing
663 &apos;pvItem must be an object and have the requested property
664 If Not Utils._CheckArgument(pvItem, 1, vbObject) Then Goto Exit_Function
665 If Not PropertiesGet._hasProperty(pvItem._Type, pvItem._PropertiesList(), psProperty) Then Goto Trace_Error
666 &apos;Check Index argument
667 If Not IsMissing(pvIndex) Then
668 If Not Utils._CheckArgument(pvIndex, 3, Utils._AddNumeric()) Then Goto Exit_Function
669 End If
670 &apos;Execute
671 Select Case UCase(psProperty)
672 Case UCase(&quot;AbsolutePosition&quot;)
673 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
674 _getProperty = pvItem.AbsolutePosition
675 Case UCase(&quot;AllowAdditions&quot;)
676 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
677 _getProperty = pvItem.AllowAdditions
678 Case UCase(&quot;AllowDeletions&quot;)
679 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
680 _getProperty = pvItem.AllowDeletions
681 Case UCase(&quot;AllowEdits&quot;)
682 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
683 _getProperty = pvItem.AllowEdits
684 Case UCase(&quot;BackColor&quot;)
685 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
686 _getProperty = pvItem.BackColor
687 Case UCase(&quot;BeginGroup&quot;)
688 If Not Utils._CheckArgument(pvItem, 1, OBJCOMMANDBARCONTROL) Then Goto Exit_Function
689 _getProperty = pvItem.BeginGroup
690 Case UCase(&quot;BOF&quot;)
691 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
692 _getProperty = pvItem.BOF
693 Case UCase(&quot;Bookmark&quot;)
694 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJRECORDSET)) Then Goto Exit_Function
695 _getProperty = pvItem.Bookmark
696 Case UCase(&quot;Bookmarkable&quot;)
697 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
698 _getProperty = pvItem.Bookmarkable
699 Case UCase(&quot;BorderColor&quot;)
700 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
701 _getProperty = pvItem.BorderColor
702 Case UCase(&quot;BorderStyle&quot;)
703 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
704 _getProperty = pvItem.BorderStyle
705 Case UCase(&quot;BuiltIn&quot;)
706 If Not Utils._CheckArgument(pvItem, 1, Array(OBJCOMMANDBAR, OBJCOMMANDBARCONTROL)) Then Goto Exit_Function
707 _getProperty = pvItem.BuiltIn
708 Case UCase(&quot;ButtonLeft&quot;)
709 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
710 _getProperty = pvItem.ButtonLeft
711 Case UCase(&quot;ButtonMiddle&quot;)
712 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
713 _getProperty = pvItem.ButtonMiddle
714 Case UCase(&quot;ButtonRight&quot;)
715 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
716 _getProperty = pvItem.ButtonRight
717 Case UCase(&quot;Cancel&quot;)
718 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
719 _getProperty = pvItem.Cancel
720 Case UCase(&quot;Caption&quot;)
721 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJDIALOG, OBJCONTROL, OBJCOMMANDBARCONTROL)) Then Goto Exit_Function
722 _getProperty = pvItem.Caption
723 Case UCase(&quot;ClickCount&quot;)
724 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
725 _getProperty = pvItem.ClickCount
726 Case UCase(&quot;ContextShortcut&quot;)
727 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
728 _getProperty = pvItem.ContextShortcut
729 Case UCase(&quot;ControlSource&quot;)
730 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
731 _getProperty = pvItem.ControlSource
732 Case UCase(&quot;ControlTipText&quot;)
733 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
734 _getProperty = pvItem.ControlTipText
735 Case UCase(&quot;ControlType&quot;)
736 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
737 _getProperty = pvItem.ControlType
738 Case UCase(&quot;Count&quot;)
739 If Not Utils._CheckArgument(pvItem, 1, Array(OBJCOLLECTION,OBJOPTIONGROUP)) Then Goto Exit_Function
740 _getProperty = pvItem.Count
741 Case UCase(&quot;CurrentRecord&quot;)
742 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
743 _getProperty = pvItem.CurrentRecord
744 Case UCase(&quot;DataType&quot;)
745 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
746 _getProperty = pvItem.DataType
747 Case UCase(&quot;DbType&quot;)
748 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
749 _getProperty = pvItem.DbType
750 Case UCase(&quot;Default&quot;)
751 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
752 _getProperty = pvItem.Default
753 Case UCase(&quot;DefaultValue&quot;)
754 If Not Utils._CheckArgument(pvItem, 1, Array(OBJCONTROL, OBJFIELD)) Then Goto Exit_Function
755 _getProperty = pvItem.DefaultValue
756 Case UCase(&quot;Description&quot;)
757 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
758 _getProperty = pvItem.Description
759 Case UCase(&quot;EditMode&quot;)
760 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
761 _getProperty = pvItem.EditMode
762 Case UCase(&quot;Enabled&quot;)
763 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
764 _getProperty = pvItem.Enabled
765 Case UCase(&quot;EOF&quot;)
766 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
767 _getProperty = pvItem.EOF
768 Case UCase(&quot;EventName&quot;)
769 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
770 _getProperty = pvItem.EventName
771 Case UCase(&quot;EventType&quot;)
772 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
773 _getProperty = pvItem.EventType
774 Case UCase(&quot;FieldSize&quot;)
775 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
776 _getProperty = pvItem.FieldSize
777 Case UCase(&quot;Filter&quot;)
778 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM, OBJRECORDSET)) Then Goto Exit_Function
779 _getProperty = pvItem.Filter
780 Case UCase(&quot;FilterOn&quot;)
781 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
782 _getProperty = pvItem.FilterOn
783 Case UCase(&quot;FocusChangeTemporary&quot;)
784 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
785 _getProperty = pvItem.FocusChangeTemporary
786 Case UCase(&quot;FontBold&quot;)
787 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
788 _getProperty = pvItem.FontBold
789 Case UCase(&quot;FontItalic&quot;)
790 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
791 _getProperty = pvItem.FontItalic
792 Case UCase(&quot;FontName&quot;)
793 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
794 _getProperty = pvItem.FontName
795 Case UCase(&quot;FontSize&quot;)
796 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
797 _getProperty = pvItem.FontSize
798 Case UCase(&quot;FontUnderline&quot;)
799 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
800 _getProperty = pvItem.FontUnderline
801 Case UCase(&quot;FontWeight&quot;)
802 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
803 _getProperty = pvItem.FontWeight
804 Case UCase(&quot;ForeColor&quot;)
805 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
806 _getProperty = pvItem.ForeColor
807 Case UCase(&quot;Form&quot;)
808 If Not Utils._CheckArgument(pvItem, 1, CTLSUBFORM) Then Goto Exit_Function
809 _getProperty = pvItem.Form
810 Case UCase(&quot;Format&quot;)
811 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
812 _getProperty = pvItem.Format
813 Case UCase(&quot;Height&quot;)
814 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJDIALOG)) Then Goto Exit_Function
815 _getProperty = pvItem.Height
816 Case UCase(&quot;Index&quot;)
817 If Not Utils._CheckArgument(pvItem, 1, OBJCOMMANDBARCONTROL) Then Goto Exit_Function
818 _getProperty = pvItem.Index
819 Case UCase(&quot;IsLoaded&quot;)
820 If Not Utils._CheckArgument(pvItem, 1, OBJFORM) Then Goto Exit_Function
821 _getProperty = pvItem.IsLoaded
822 Case UCase(&quot;ItemData&quot;)
823 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
824 If IsMissing(pvIndex) Then _getProperty = pvItem.ItemData Else _getProperty = pvItem.ItemData(pvIndex)
825 Case UCase(&quot;KeyAlt&quot;)
826 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
827 _getProperty = pvItem.KeyAlt
828 Case UCase(&quot;KeyChar&quot;)
829 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
830 _getProperty = pvItem.KeyChar
831 Case UCase(&quot;KeyCode&quot;)
832 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
833 _getProperty = pvItem.KeyCode
834 Case UCase(&quot;KeyCtrl&quot;)
835 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
836 _getProperty = pvItem.KeyCtrl
837 Case UCase(&quot;KeyFunction&quot;)
838 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
839 _getProperty = pvItem.KeyFunction
840 Case UCase(&quot;KeyShift&quot;)
841 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
842 _getProperty = pvItem.KeyShift
843 Case UCase(&quot;LinkChildFields&quot;)
844 If Not Utils._CheckArgument(pvItem, 1, OBJSUBFORM) Then Goto Exit_Function
845 If IsMissing(pvIndex) Then _getProperty = pvItem.LinkChildFields Else _getProperty = pvItem.LinkChildFields(pvIndex)
846 Case UCase(&quot;LinkMasterFields&quot;)
847 If Not Utils._CheckArgument(pvItem, 1, OBJSUBFORM) Then Goto Exit_Function
848 If IsMissing(pvIndex) Then _getProperty = pvItem.LinkMasterFields Else _getProperty = pvItem.LinkMasterFields(pvIndex)
849 Case UCase(&quot;ListCount&quot;)
850 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
851 _getProperty = pvItem.ListCount
852 Case UCase(&quot;ListIndex&quot;)
853 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
854 _getProperty = pvItem.ListIndex
855 Case UCase(&quot;Locked&quot;)
856 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
857 If IsNull(pvItem.Locked) Then Goto Trace_Error
858 _ge ExitProperty = pvItem.Locked
859 Case UCase(&quot;MultiSelect&quot;)
860 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
861 _getProperty = pvItem.MultiSelect
862 Case UCase(&quot;Name&quot;)
863 If Not Utils._CheckArgument(pvItem, 1, _
864 Array(OBJFORM, OBJSUBFORM, OBJCONTROL, OBJOPTIONGROUP, OBJPROPERTY, OBJDIALOG, OBJTABLEDEF, OBJRECORDSET, OBJFIELD, OBJTEMPVAR, OBJCOMMANDBAR) _
865 ) Then Goto Exit_Function
866 _getProperty = pvItem.Name
867 Case UCase(&quot;ObjectType&quot;)
868 If Not Utils._CheckArgument(pvItem, 1, Array(OBJDATABASE, OBJCOLLECTION, OBJFORM, OBJDIALOG, OBJSUBFORM, OBJCONTROL _
869 , OBJEVENT, OBJOPTIONGROUP, OBJPROPERTY, OBJRECORDSET, OBJTABLEDEF, OBJFIELD, OBJTEMPVAR _
870 , OBJCOMMANDBAR, OBJCOMMANDBARCONTROL) _
871 ) Then Goto Exit_Function
872 _getProperty = pvItem.ObjectType
873 Case UCase(&quot;OnAction&quot;)
874 If Not Utils._CheckArgument(pvItem, 1, OBJCOMMANDBARCONTROL) Then Goto Exit_Function
875 _getProperty = pvItem.OnAction
876 Case UCase(&quot;OpenArgs&quot;)
877 If Not Utils._CheckArgument(pvItem, 1, OBJFORM) Then Goto Exit_Function
878 _getProperty = pvItem.OpenArgs
879 Case UCase(&quot;OptionValue&quot;)
880 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
881 _getProperty = pvItem.OptionValue
882 Case UCase(&quot;OrderBy&quot;)
883 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
884 _getProperty = pvItem.OrderBy
885 Case UCase(&quot;OrderByOn&quot;)
886 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
887 _getProperty = pvItem.OrderByOn
888 Case UCase(&quot;Page&quot;)
889 If Not Utils._CheckArgument(pvItem, 1, Array(OBJDIALOG, OBJCONTROL)) Then Goto Exit_Function
890 _getProperty = pvItem.Page
891 Case UCase(&quot;Parent&quot;)
892 If Not Utils._CheckArgument(pvItem, 1, Array(OBJSUBFORM, OBJCONTROL, OBJCOMMANDBARCONTROL)) Then Goto Exit_Function
893 _getProperty = pvItem.Parent
894 Case UCase(&quot;Recommendation&quot;)
895 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
896 _getProperty = pvItem.Recommendation
897 Case UCase(&quot;RecordCount&quot;)
898 If Not Utils._CheckArgument(pvItem, 1, OBJRECORDSET) Then Goto Exit_Function
899 _getProperty = pvItem.RecordCount
900 Case UCase(&quot;Recordset&quot;)
901 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
902 _getProperty = pvItem.Recordset
903 Case UCase(&quot;RecordSource&quot;)
904 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJSUBFORM)) Then Goto Exit_Function
905 _getProperty = pvItem.RecordSource
906 Case UCase(&quot;Required&quot;)
907 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
908 _getProperty = pvItem.Required
909 Case UCase(&quot;RowChangeAction&quot;)
910 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
911 _getProperty = pvItem.RowChangeAction
912 Case UCase(&quot;RowSource&quot;)
913 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
914 _getProperty = pvItem.RowSource
915 Case UCase(&quot;RowSourceType&quot;)
916 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
917 _getProperty = pvItem.RowSourceType
918 Case UCase(&quot;Selected&quot;)
919 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
920 If IsMissing(pvIndex) Then _getProperty = pvItem.Selected Else _getProperty = pvItem.Selected(pvIndex)
921 Case UCase(&quot;Size&quot;)
922 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
923 _getProperty = pvItem.Size
924 Case UCase(&quot;Source&quot;)
925 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
926 _getProperty = pvItem.Source
927 Case UCase(&quot;SourceTable&quot;)
928 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
929 _getProperty = pvItem.SourceTable
930 Case UCase(&quot;SourceField&quot;)
931 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
932 _getProperty = pvItem.SourceField
933 Case UCase(&quot;SpecialEffect&quot;)
934 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
935 _getProperty = pvItem.SpecialEffect
936 Case UCase(&quot;SubComponentName&quot;)
937 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
938 _getProperty = pvItem.SubComponentName
939 Case UCase(&quot;SubComponentType&quot;)
940 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
941 _getProperty = pvItem.SubComponentType
942 Case UCase(&quot;SubType&quot;)
943 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
944 _getProperty = pvItem.SubType
945 Case UCase(&quot;TabIndex&quot;)
946 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
947 _getProperty = pvItem.TabIndex
948 Case UCase(&quot;TabStop&quot;)
949 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
950 _getProperty = pvItem.TabStop
951 Case UCase(&quot;Tag&quot;)
952 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
953 _getProperty = pvItem.Tag
954 Case UCase(&quot;Text&quot;)
955 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
956 _getProperty = pvItem.Text
957 Case UCase(&quot;TextAlign&quot;)
958 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
959 _getProperty = pvItem.TextAlign
960 Case UCase(&quot;TooltipText&quot;)
961 If Not Utils._CheckArgument(pvItem, 1, OBJCOMMANDBARCONTROL) Then Goto Exit_Function
962 _getProperty = pvItem.TooltipText
963 Case UCase(&quot;TripleState&quot;)
964 If Not Utils._CheckArgument(pvItem, 1, OBJCONTROL) Then Goto Exit_Function
965 _getProperty = pvItem.TripleState
966 Case UCase(&quot;TypeName&quot;)
967 If Not Utils._CheckArgument(pvItem, 1, OBJFIELD) Then Goto Exit_Function
968 _getProperty = pvItem.TypeName
969 Case UCase(&quot;Value&quot;)
970 If Not Utils._CheckArgument(pvItem, 1, Array(OBJCONTROL, OBJOPTIONGROUP, OBJPROPERTY, OBJFIELD, OBJTEMPVAR)) Then Goto Exit_Function
971 _getProperty = pvItem.Value
972 Case UCase(&quot;Visible&quot;)
973 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJDIALOG, OBJCONTROL, OBJCOMMANDBAR, OBJCOMMANDBARCONTROL)) Then Goto Exit_Function
974 _getProperty = pvItem.Visible
975 Case UCase(&quot;Width&quot;)
976 If Not Utils._CheckArgument(pvItem, 1, Array(OBJFORM, OBJDIALOG)) Then Goto Exit_Function
977 _getProperty = pvItem.Width
978 Case UCase(&quot;XPos&quot;)
979 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
980 If IsNull(pvItem.XPos) Then Goto Trace_Error
981 _getProperty = pvItem.XPos
982 Case UCase(&quot;YPos&quot;)
983 If Not Utils._CheckArgument(pvItem, 1, OBJEVENT) Then Goto Exit_Function
984 If IsNull(pvItem.YPos) Then Goto Trace_Error
985 _getProperty = pvItem.YPos
986 Case Else
987 Goto Trace_Error
988 End Select
990 Exit_Function:
991 Utils._ResetCalledSub(&quot;get&quot; &amp; psProperty)
992 Exit Function
993 Trace_Error:
994 TraceError(TRACEFATAL, ERRPROPERTY, Utils._CalledSub(), 0, 1, psProperty)
995 _getProperty = Nothing
996 Goto Exit_Function
997 Trace_Error_Index:
998 TraceError(TRACEFATAL, ERRINDEXVALUE, Utils._CalledSub(), 0, 1, psProperty)
999 _getProperty = Nothing
1000 Goto Exit_Function
1001 Error_Function:
1002 TraceError(TRACEABORT, Err, &quot;_getProperty&quot;, Erl)
1003 _getProperty = Nothing
1004 GoTo Exit_Function
1005 End Function &apos; _getProperty V0.9.1
1007 REM -----------------------------------------------------------------------------------------------------------------------
1008 Public Function _hasProperty(ByVal psObject As String, ByVal pvPropertiesList() As Variant, Optional ByVal pvProperty As Variant) As Boolean
1009 &apos; Return True if object has a valid property called pvProperty (case-insensitive comparison !)
1010 &apos; Generic hasProperty function called from all class modules
1012 Dim sObject As String
1013 sObject = Utils._PCase(psObject)
1014 Utils._SetCalledSub(sObject &amp; &quot;.hasProperty&quot;)
1015 If IsMissing(pvProperty) Then Call _TraceArguments()
1017 _hasProperty = False
1018 If Not Utils._CheckArgument(pvProperty, 1, vbString) Then Goto Exit_Function
1020 _hasProperty = Utils._InList(pvProperty, pvPropertiesList(), False, True)
1022 Exit_Function:
1023 Utils._ResetCalledSub(sObject &amp; &quot;.hasProperty&quot;)
1024 Exit Function
1025 End Function &apos; _hasProperty
1027 REM ------------------------------------------------------------------------------------------------------------------------
1028 Public Function _ParentObject(psShortcut As String) As Object
1029 &apos; Return parent object from shortcut as a string
1031 Dim sParent As String, vParent() As Variant, iBound As Integer
1032 vParent = Split(psShortcut, &quot;!&quot;)
1033 iBound = UBound(vParent) - 1
1034 ReDim Preserve vParent(0 To iBound) &apos; Remove last element
1035 sParent = Join(vParent, &quot;!&quot;)
1037 &apos;Remove &quot;.Form&quot; if present
1038 Const cstForm = &quot;.FORM&quot;
1039 Set _ParentObject = Nothing
1040 If Len(sParent) &gt; Len(cstForm) Then
1041 If UCase(Right(sParent, Len(cstForm))) = cstForm Then
1042 Set _ParentObject = getValue(sParent)
1043 Else
1044 Set _ParentObject = getObject(sParent)
1045 End If
1046 End If
1048 End Function &apos; _ParentObject V0.9.0
1050 REM -----------------------------------------------------------------------------------------------------------------------
1051 Public Function _Properties(ByVal psObject As String _
1052 , ByRef pvParent As Object _
1053 , ByVal pvPropertiesList() As Variant _
1054 , ByVal Optional pvIndex As Variant _
1055 ) As Variant
1056 &apos; Return
1057 &apos; a Collection object if pvIndex absent
1058 &apos; a Property object otherwise
1059 &apos; Generic function called from Properties methods stored in classes
1061 Dim vProperties As Variant, oCounter As Object, opProperty As Object
1062 Dim iArgNr As Integer, iLen As Integer
1064 Utils._SetCalledSub(psObject &amp; &quot;.Properties&quot;)
1066 vProperties = Null
1068 If IsMissing(pvIndex) Then &apos; Call without index argument prepares a Collection object
1069 Set oCounter = New Collect
1070 Set oCounter._This = oCounter
1071 oCounter._CollType = COLLPROPERTIES
1072 Set oCounter._Parent = pvParent
1073 oCounter._Count = UBound(pvPropertiesList) + 1
1074 Set vProperties = oCounter
1075 Else
1076 iLen = Len(psObject) + 1
1077 If Len(_A2B_.CalledSub) &gt; iLen Then
1078 If Left(_A2B_.CalledSub, iLen) = psObject &amp; &quot;.&quot; Then iArgNr = 1 Else iArgNr = 2
1079 End If
1080 If Not Utils._CheckArgument(pvIndex, iArgNr, Utils._AddNumeric()) Then Goto Exit_Function
1081 If pvIndex &lt; LBound(pvPropertiesList) Or pvIndex &gt; UBound(pvPropertiesList) Then
1082 TraceError(TRACEFATAL, ERRCOLLECTION, Utils._CalledSub(), 0, 1)
1083 Else
1084 Set opProperty = New Property
1085 Set opProperty._This = opProperty
1086 opProperty._Name = pvPropertiesList(pvIndex)
1087 opProperty._Value = Null
1088 Set vProperties = opProperty
1089 End If
1090 End If
1092 Exit_Function:
1093 Set _Properties = vProperties
1094 Utils._ResetCalledSub(psObject &amp; &quot;.Properties&quot;)
1095 Exit Function
1096 End Function &apos; _Properties
1098 REM -----------------------------------------------------------------------------------------------------------------------
1099 Public Function _PropertiesList(pvObject As Variant) As Variant
1100 &apos; Return an array of strings containing the list of valid properties of pvObject
1102 Dim vProperties As Variant
1103 Dim vPropertiesList As Variant, bPropertiesList() As Boolean, sPropertiesList() As String
1104 Dim i As Integer, j As Integer, iCount As Integer
1106 Set vProperties = Nothing
1107 Select Case pvObject._Type
1108 Case OBJCOLLECTION, OBJPROPERTY, OBJFORM, OBJEVENT, OBJSUBFORM, OBJCONTROL, OBJOPTIONGROUP _
1109 , OBJDATABASE, OBJTABLEDEF, OBJQUERYDEF, OBJDIALOG, OBJFIELD, OBJRECORDSET, OBJTEMPVAR _
1110 , OBJCOMMANDBAR, OBJCOMMANDBARCONTROL
1111 vPropertiesList = pvObject._PropertiesList()
1112 Case Else
1113 End Select
1115 Exit_Function:
1116 Set _PropertiesList = vPropertiesList
1117 Exit Function
1118 End Function &apos; PropertiesList V0.9.0
1120 </script:module>