Discuss this help topic in SecureBlackbox Forum

TElOfficeOpenXMLRelationships.GetRelationshipByType

TElOfficeOpenXMLRelationships     See also     


Filter: C#  VB.NET  Pascal  C++  PHP  Java  


Searches the list by the relationship type.

Declaration

[C#]
    TElOfficeOpenXMLRelationship GetRelationshipByType(string RelType);

[VB.NET]
    Function GetRelationshipByType(ByVal RelType As String) As TElOfficeOpenXMLRelationship

[Pascal]
    function GetRelationshipByType(const RelType) : TElOfficeOpenXMLRelationship;

[C++]
    TElOfficeOpenXMLRelationshipHandle GetRelationshipByType(const sb_u16string &RelType);
    TElOfficeOpenXMLRelationshipHandle GetRelationshipByType(const std::wstring &RelType);

[PHP]
    TElOfficeOpenXMLRelationship GetRelationshipByType(string $RelType)

[Java]
    TElOfficeOpenXMLRelationship getRelationshipByType(String RelType);

Parameters

  • RelType - specifies the type of the desired relationship

Return value

    Returns the desired relationship object if it exists in the list. If the relationship does not exist in the list, returns null/nil/Nothing.

Description

    Use this method to get the desired relationship by its type.

See also:     GetRelationshipById     Relationships    

Discuss this help topic in SecureBlackbox Forum