Represents a join between topics in a Data Model.
This example shows how to change the type of join to a left join and print the names of the joined topic items to the Console window:
ActiveDocument.Sections["Query"].DataModel.Joins[1].Type = bqJoinLeft Console.Writeln(ActiveDocument.Sections["Query"].DataModel.Joins[1].TopicItem1.DisplayName="Sales") Console.Writeln(ActiveDocument.Sections["Query"].DataModel.Joins[1].TopicItem2.PhysicalName)
Read Only: Topic1Name, Topic2Name