Custom Properties

Provide parameters for the custom input format.


C++ Syntax

HRESULT STDMETHODCALLTYPE put_propertyName(IN VARIANT *value);

Script Syntax

put_propertyName(value);

Parameters

value
A VT_BSTR VARIANT containing the string parameter value specified with the -iCOMParams parameter of the COM input format.

Return Value

None.

Remarks


Examples

VBScript example:

Function put_extendedFields(strValue)

		If UCase(strValue) = "ON" Then
				m_bExtendedFields = True
		Else
				m_bExtendedFields = False
		End If

End Function

See also:

ILogParserInputContext Interface
Run Time Interaction
Custom Plugins
COM Input Format

© 2004 Microsoft Corporation. All rights reserved.