SendMailJobCollectionGetIndicesAsArray Method
Returns the integer array containing list of data table row indices associated with the jobs belonging to the collection.

Namespace: MailBee.SmtpMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public int[] GetIndicesAsArray(
	DataTable mergeTable,
	string tag
)

Parameters

mergeTable
Type: System.DataDataTable
A reference to the data table for which data row indices should be returned, or a null reference (Nothing in Visual Basic) if data rows should be returned regardless with which mail merge tables they are associated.
tag
Type: SystemString
The string equal to Tag of jobs for which data row indices should be returned, or a null reference (Nothing in Visual Basic) if data rows should be returned regardless of their Tag value. String comparison is case-sensitive, i.e. Merge1 and MERGE1 won't match!

Return Value

Type: Int32
The integer array containing list of data table row indices associated with the jobs belonging to the collection and associated with the given data table, or an empty integer array if the collection is empty.
Remarks
This method is identical to GetIndicesAsString(DataTable, String) except for the type of the returned value.
See Also