GetPropertyNames() As String

ScannerSettings object

This method returns the names of all properties the ScannerSettings object has. The names are retrieved as a comma-separated string.

Remarks

Only for advanced users.

Example

Dim myScanObj As Object

Set myScanObj = Application.FormDef.ScannerSettings

Dim PropStr As String

PropStr = myScanObj.GetPropertyNames

PropStr = Replace(PropStr, ",", vbCrLf)

MsgBox PropStr

The ScannerSettings object