Share via


TableLink.JoinType Property

Gets a summary of the linking used by the table.

Namespace CrystalDecisions.CrystalReports.Engine Assembly CrystalDecisions.CrystalReports.Engine (CrystalDecisions.CrystalReports.Engine.dll)

Syntax

'Declaration

Public Overrideable ReadOnly Property JoinType As CrystalDecisions.Shared.LinkJoinType
public virtual CrystalDecisions.Shared.LinkJoinType JoinType {get;}

Example

This example returns the join type of a table link.

'Declaration

      Private Function GetJoinType(ByVal myTableLink As TableLink) As LinkJoinType
        GetJoinType = myTableLink.JoinType
      End Function
      
      private LinkJoinType GetJoinType(TableLink tableLink)
      {
        return tableLink.JoinType;
      }
      

Version Information

Crystal Reports Basic for Visual Studio 2008

Supported since: Crystal Reports for Visual Studio .NET 2002

See Also

Reference

TableLink Class
TableLink Members
CrystalDecisions.CrystalReports.Engine Namespace