The SfxAddProgramGroupItem method adds an item to the SfxProgramGroupItems property's list of items to insert in the program group.
SfxAddProgramGroupItem automatically creates a string of the appropriate format for the SfxProgramGroupItems property and handles separating items with the CR+LF characters. In fact, it performs the same work as the following line of VB code:
XceedZip1.SfxProgramGroupItems = XceedZip1.SfxProgramGroupItems + sApplication + "|" + sDescription + Chr(13) + Chr(10)
Declaration (ActiveX) | |
---|---|
Method SfxAddProgramGroupItem(sApplication As String, sDescription As String) |
Declaration (DLL API) | |
---|---|
void XzSfxAddProgramGroupItem( HXCEEDZIP hZip, const TCHAR* pszApplication, const TCHAR* pszDescription ) |
Parameter | Description |
---|---|
sApplication | The filename related to the item being added. |
sDescription | A short description of the item. |
None