DiskSize Property

The DiskSize property is a string used when building the <IMPLEMENTATION></IMPLEMENTATION> element upon invocation of the GetCDFString method. If this property is not empty, the <DISKSIZE 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 OSD specification defines the unit of kilobyte for this element.

Example

' Using Windows Scripting Host and VBScript
Set Implementation = CreateObject("Push.Implementation")
Implementation.DiskSize = 1000
Implementation.GetCDFString

produces

<IMPLEMENTATION>
 <DISKSIZE VALUE=1000/>
</IMPLEMENTATION>

© 1997-1998 Microsoft Corporation. All rights reserved.