We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 54808a9 commit cbface4Copy full SHA for cbface4
src/stdRefArray.cls
@@ -48,6 +48,14 @@ Private Const VT_BYREF As Long = &H4000
48
'The data within the array
49
Public Data As Variant
50
51
+Property Get GetData() as Variant
52
+Attribute GetData.VB_UserMemId = 0
53
+ #If Win64 Then
54
+ Call CopyMemory(GetData, data, 24)
55
+ #Else
56
+ Call CopyMemory(GetData, data, 16)
57
+ #End If
58
+End Property
59
60
'@constructor
61
'@param Data - Array to wrap
0 commit comments