Share via


TableLink.SourceTable Property

Gets reference to the table link source Table object.

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

Syntax

'Declaration

Public Overrideable ReadOnly Property SourceTable As CrystalDecisions.CrystalReports.Engine.Table
public virtual CrystalDecisions.CrystalReports.Engine.Table SourceTable {get;}

Example

This example returns the source table of a table link.

'Declaration

      Private Function GetSourceTable(ByVal myTableLink As TableLink) As Table
        GetSourceTable = myTableLink.SourceTable
      End Function
      
      private Table GetSourceTable(TableLink tableLink)
      {
        return tableLink.SourceTable;
      }
      

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