Gets fully qualified relationship class name by relationship class id.
[Visual Basic 6.0] Function GetRelationshipClassNameByID(
ByVal relClassId As Long _
) As String
[Visual Basic .NET] Public Function GetRelationshipClassNameByID ( _ ByVal relClassId As Integer _ ) As String
[C#] public string GetRelationshipClassNameByID ( int relClassId );
[Java] public String getRelationshipClassNameByID ( int relClassId ) throws IOException, AutomationException
[C++]
HRESULT GetRelationshipClassNameByID(
long relClassId,
BSTR* qname
);
Parameters
relClassId [in]
relClassId is a parameter of type long
qname [out, retval]
qname is a parameter of type BSTR
The GetRelationshipClassNameByID method can be used to get the fully qualified name of a relationship class based on its RelationshipClass ID. This name can then be used in a method such as IFeatureWorkspace::OpenRelationshipClass to open the relationship class.
IFeatureWorkspaceManage2 Interface