GetSummaryInfo

This method retrieves metadata from the input file.

HTM.GetSummaryInfo(nItem, lTotaltems, lValid, lType, lVal, szVal, szValUser)

where:

Sample Code

The following code from the comsamp sample program demonstrates how to use the GetSummaryInfo method:

Dim nTotal As Long
Dim nValid As Long
Dim nType As Long
Dim nVal As Long
Dim szVal As String
Dim szUserVal As String
On Error GoTo Handler
' Get the Author if available (item 3 is the Author. See KVSumType
' in kvtypes.h for a list of items and their values)
Call MyRef.GetSummaryInfo(3, nTotal, nValid, nType, nVal, szVal, szUserVal)
MsgBox szUserVal & " = " & szVal
_FT_HTML5_bannerTitle.htm