Standardize a table of addresses.
[Visual Basic 6.0] Sub SimpleStandardizeTable(
ByVal InputTable As ITable, _
ByVal inputFieldsToConcatinate As String, _
ByVal whereClause As String, _
ByVal OutputTable As ITable, _
ByVal outputFieldNames As String, _
ByVal fieldsToCopy As IPropertySet, _
ByVal cancelTracker As ITrackCancel _
)
[Visual Basic .NET] Public Sub SimpleStandardizeTable ( _ ByVal InputTable As ITable, _ ByVal inputFieldsToConcatinate As String, _ ByVal whereClause As String, _ ByVal OutputTable As ITable, _ ByVal outputFieldNames As String, _ ByVal fieldsToCopy As IPropertySet, _ ByVal cancelTracker As ITrackCancel _ )
[C#] public void SimpleStandardizeTable ( ITable InputTable, string inputFieldsToConcatinate, string whereClause, ITable OutputTable, string outputFieldNames, IPropertySet fieldsToCopy, ITrackCancel cancelTracker );
[Java] public void simpleStandardizeTable ( ITable InputTable, String inputFieldsToConcatinate, String whereClause, ITable OutputTable, String outputFieldNames, IPropertySet fieldsToCopy, ITrackCancel cancelTracker ) throws IOException, AutomationException
[C++] HRESULT SimpleStandardizeTable( ITable* InputTable, BSTR inputFieldsToConcatinate, BSTR whereClause, ITable* OutputTable, BSTR outputFieldNames, IPropertySet* fieldsToCopy, ITrackCancel* cancelTracker );
Parameters
InputTable [in]
InputTable is a parameter of type ITable
inputFieldsToConcatinate [in]
inputFieldsToConcatinate is a parameter of type BSTR
whereClause [in]
whereClause is a parameter of type BSTR
OutputTable [in]
OutputTable is a parameter of type ITable
outputFieldNames [in]
outputFieldNames is a parameter of type BSTR
fieldsToCopy [in]
fieldsToCopy is a parameter of type IPropertySet
cancelTracker [in]
cancelTracker is a parameter of type ITrackCancel