ArcFM Responder Mobile Developer Guide
GetRelationship Method (DataSetConfig)






The name of the source table in a relationship.
The name of the destination table in a relationship.
Returns a relationship configuration object corresponding to a pair of source and destination table names, if such a relationship is configured.
Syntax
'Declaration
 
Public Function GetRelationship( _
   ByVal sourceTableName As System.String, _
   ByVal destTableName As System.String _
) As RelationshipConfig
'Usage
 
Dim instance As DataSetConfig
Dim sourceTableName As System.String
Dim destTableName As System.String
Dim value As RelationshipConfig
 
value = instance.GetRelationship(sourceTableName, destTableName)
public RelationshipConfig GetRelationship( 
   System.string sourceTableName,
   System.string destTableName
)
public function GetRelationship( 
    sourceTableName: System.String;
    destTableName: System.String
): RelationshipConfig; 
public function GetRelationship( 
   sourceTableName : System.String,
   destTableName : System.String
) : RelationshipConfig;
public: RelationshipConfig* GetRelationship( 
   System.string* sourceTableName,
   System.string* destTableName
) 
public:
RelationshipConfig^ GetRelationship( 
   System.String^ sourceTableName,
   System.String^ destTableName
) 

Parameters

sourceTableName
The name of the source table in a relationship.
destTableName
The name of the destination table in a relationship.

Return Value

A relationship configuration object.
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

DataSetConfig Class
DataSetConfig Members

Send Feedback