Click or drag to resize

IPFExcelImporterItemExcelImporter_AfterValueBinding Method

[Method used by the Packflow plugin of CodeCatalyst] Method called after a value has been imported into the item. Important: the field may be null if the binding was fully custom.

Namespace:  Packflow.Core.CodeCatalyst
Assembly:  MicaSystems.Packflow.Core (in MicaSystems.Packflow.Core.dll) Version: 1.0.0.0 (3.2.0.306)
Syntax
C#
void ExcelImporter_AfterValueBinding(
	string columnName,
	PFField field,
	Object boundValue,
	bool firstPass
)

Parameters

columnName
Type: SystemString
Name of the column.
field
Type: Packflow.CorePFField
The field receiving the value. May be null.
boundValue
Type: SystemObject
The value imported in the item.
firstPass
Type: SystemBoolean
Indicates if this is the first binding pass. A second pass is sometimes needed, e.g. for FileHolder fields requiring a persisted item.
See Also