Given a property name, in the form Table_Name.COLUMN_NAME, returns the number of the custom index
which indexes that property (1 thru 4), or 0 if the property is not indexed. For example, if the 2nd
custom index is on Name_Demo.CERTIFICATE_NUMBER, and "Name_Demo.CERTIFICATE_NUMBER" is supplied,
2 will be returned.
Namespace: Asi.iBO.SystemConfigAssembly: Asi.iBO (in Asi.iBO.dll) Version: 15.1.3.0
Syntax
| C# |
|---|
public int GetNameIndex(
string propertyName
) |
| Visual Basic |
|---|
Public Function GetNameIndex ( _
propertyName As String _
) As Integer |
| Visual C++ |
|---|
public:
int GetNameIndex(
String^ propertyName
) |
Parameters
- propertyName
- Type: System..::..String
The tabel and column name ot check, in the form Table_Name.COLUMN_NAME
Return Value
The number of the custom index which indexes the supplied property (1 thru 4), or 0 if the property is not indexed
See Also