The MemSize property is a string used when building the <IMPLEMENTATION></IMPLEMENTATION> element upon invocation of the GetCDFString method. If this property is not empty, the <MEMSIZE VALUE=""> child element is generated, and the string is inserted as the value of the VALUE attribute.
Type
Integer (VT_I4)
Default
None
Remarks
The MEMSIZE element is defined in units of kilobytes (KB).
Example
' Using Windows Scripting Host and VBScript
Set Implementation = CreateObject("Push.Implementation")
Implementation.MemSize = 12
wscript.echo Implementation.GetCDFString
outputs:
<IMPLEMENTATION>
<MEMSIZE VALUE="12"/>
</IMPLEMENTATION>