Discuss this help topic in SecureBlackbox Forum

TElOfficeOpenXMLRelationships.GetRelationshipById

TElOfficeOpenXMLRelationships     See also     


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


Searches the list by the relationship ID.

Declaration

[C#]
    TElOfficeOpenXMLRelationship GetRelationshipById(string ID);

[VB.NET]
    Function GetRelationshipById(ByVal ID As String) As TElOfficeOpenXMLRelationship

[Pascal]
    function GetRelationshipById(const ID) : TElOfficeOpenXMLRelationship;

[C++]
    TElOfficeOpenXMLRelationshipHandle GetRelationshipById(const sb_u16string &ID);
    TElOfficeOpenXMLRelationshipHandle GetRelationshipById(const std::wstring &ID);

[PHP]
    TElOfficeOpenXMLRelationship GetRelationshipById(string $ID)

[Java]
    TElOfficeOpenXMLRelationship getRelationshipById(String ID);

Parameters

  • ID - specifies the ID 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 ID.

See also:     GetRelationshipByType     SortRelationshipsById     Relationships    

Discuss this help topic in SecureBlackbox Forum