 | ICommenceDatabaseViewConnectedFields Method (Int32, String, String, Int32, ListString, String) |
Returns multiple field values (Field_1 through Field_n) in the ConnIndexth item in the connCategory that is connected to the Indexth item via ConnectionName. Use the ViewConnectedCount REQUEST to determine the maximum ConnIndex value. The string "(deleted)" will be returned if the requested item is deleted after the ViewData snapshot is taken.
Field cannot be of the fieldtype Image.
Namespace:
Vovin.CmcLibNet.Database
Assembly:
Vovin.CmcLibNet (in Vovin.CmcLibNet.dll) Version: 1.0.7729.42686
Syntaxstring[] ViewConnectedFields(
int index,
string connectionName,
string connCategory,
int connIndex,
List<string> fields,
string delim = null
)
Function ViewConnectedFields (
index As Integer,
connectionName As String,
connCategory As String,
connIndex As Integer,
fields As List(Of String),
Optional delim As String = Nothing
) As String()
Parameters
- index
- Type: SystemInt32
Index of Nth item (1-based). - connectionName
- Type: SystemString
Commence connection name (case-sensitive). - connCategory
- Type: SystemString
Commence connCategory name. - connIndex
- Type: SystemInt32
Index of connected row. - fields
- Type: System.Collections.GenericListString
List of fieldnames. - delim (Optional)
- Type: SystemString
Delimiter, up to max 8 chars.
Return Value
Type:
StringString array of fieldvalues for the requested fields.
See Also